截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Auth.php 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\controller;
  20. use app\admin\validate\AuthValidate;
  21. use app\admin\logic\AuthLogic;
  22. use app\common\basics\AdminBase;
  23. use app\common\server\JsonServer;
  24. use think\facade\View;
  25. class Auth extends AdminBase
  26. {
  27. /**
  28. * Notes: 列表
  29. * @author 段誉(2021/4/10 16:44)
  30. * @return string|\think\response\Json
  31. * @throws \think\db\exception\DataNotFoundException
  32. * @throws \think\db\exception\DbException
  33. * @throws \think\db\exception\ModelNotFoundException
  34. */
  35. public function lists()
  36. {
  37. if($this->request->isAjax()) {
  38. $data = AuthLogic::lists();
  39. return json(['code' => 0, 'msg' => '列表', 'data' => json_encode($data)]);
  40. }
  41. return view();
  42. }
  43. /**
  44. * Notes: 添加
  45. * @author 段誉(2021/4/12 16:43)
  46. * @return string|\think\response\Json
  47. * @throws \think\db\exception\DataNotFoundException
  48. * @throws \think\db\exception\DbException
  49. * @throws \think\db\exception\ModelNotFoundException
  50. */
  51. public function add()
  52. {
  53. if ($this->request->isAjax()) {
  54. $post = $this->request->post();
  55. $post['disable'] = isset($post['disable']) && $post['disable'] == 'on' ? 0 : 1;
  56. (new AuthValidate())->goCheck();
  57. $result = AuthLogic::addMenu($post);
  58. if (false === $result) {
  59. return JsonServer::error(AuthLogic::getError() ?: '操作失败');
  60. }
  61. return JsonServer::success('操作成功');
  62. }
  63. return view('', ['menu_lists' => AuthLogic::chooseMenu()]);
  64. }
  65. /**
  66. * Notes: 编辑
  67. * @author 段誉(2021/4/12 16:43)
  68. * @return string|\think\response\Json
  69. * @throws \think\db\exception\DataNotFoundException
  70. * @throws \think\db\exception\DbException
  71. * @throws \think\db\exception\ModelNotFoundException
  72. */
  73. public function edit()
  74. {
  75. $id = $this->request->get('id');
  76. if ($this->request->isAjax()) {
  77. $post = $this->request->post();
  78. $post['disable'] = isset($post['disable']) && $post['disable'] == 'on' ? 0 : 1;
  79. (new AuthValidate())->goCheck();
  80. if (false === AuthLogic::editMenu($post)) {
  81. return JsonServer::error(AuthLogic::getError() ?: '操作失败');
  82. }
  83. return JsonServer::success('操作成功');
  84. }
  85. return view('', [
  86. 'detail' => AuthLogic::detail($id)->toArray(),
  87. 'menu_lists' => AuthLogic::chooseMenu()
  88. ]);
  89. }
  90. /**
  91. * Notes: 删除
  92. * @author 段誉(2021/4/12 16:43)
  93. * @return \think\response\Json
  94. * @throws \think\db\exception\DataNotFoundException
  95. * @throws \think\db\exception\DbException
  96. * @throws \think\db\exception\ModelNotFoundException
  97. */
  98. public function del()
  99. {
  100. if ($this->request->isAjax()) {
  101. $post = $this->request->post();
  102. if (empty($post['ids'])) {
  103. return JsonServer::error(AuthLogic::getError() ?: '操作失败');
  104. }
  105. AuthLogic::delMenu($post['ids']);
  106. return JsonServer::success('操作成功');
  107. }
  108. }
  109. /**
  110. * Notes: 设置
  111. * @author 段誉(2021/4/12 16:43)
  112. */
  113. public function status()
  114. {
  115. if ($this->request->isAjax()) {
  116. $post = $this->request->post();
  117. AuthLogic::setStatus($post);
  118. return JsonServer::success('操作成功');
  119. }
  120. }
  121. }