Index.php 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <?php
  2. namespace app\admin\controller;
  3. use addons\shopro\model\Order;
  4. use addons\shopro\model\OrderItem;
  5. use app\admin\model\AdminLog;
  6. use app\admin\model\shopro\order\Aftersale;
  7. use app\common\controller\Backend;
  8. use think\Config;
  9. use think\Hook;
  10. use think\Session;
  11. use think\Validate;
  12. /**
  13. * 后台首页
  14. * @internal
  15. */
  16. class Index extends Backend
  17. {
  18. protected $noNeedLogin = ['login'];
  19. protected $noNeedRight = ['index', 'logout'];
  20. protected $layout = '';
  21. public function _initialize()
  22. {
  23. parent::_initialize();
  24. //移除HTML标签
  25. $this->request->filter('trim,strip_tags,htmlspecialchars');
  26. }
  27. /**
  28. * 后台首页
  29. */
  30. public function index()
  31. {
  32. $cookieArr = ['adminskin' => "/^skin\-([a-z\-]+)\$/i", 'multiplenav' => "/^(0|1)\$/", 'multipletab' => "/^(0|1)\$/", 'show_submenu' => "/^(0|1)\$/"];
  33. foreach ($cookieArr as $key => $regex) {
  34. $cookieValue = $this->request->cookie($key);
  35. if (!is_null($cookieValue) && preg_match($regex, $cookieValue)) {
  36. config('fastadmin.' . $key, $cookieValue);
  37. }
  38. }
  39. // 塘主申请 fishery/index?type=1
  40. // 塘主注销申请 fishery_logout?type=1&logout=1
  41. // 渔场主申请 fishery/index?type=2
  42. // 渔场主注销申请 fishery_logout?type=2&logout=1
  43. // `status` tinyint(2) DEFAULT '1' COMMENT '状态:1=审核中,2=审核通过,3=审核失败,4=缴费成功,5=缴费中',
  44. // `logout_status` tinyint(2) NOT NULL DEFAULT '1' COMMENT '账户注销审核状态:1=审核中,2=审核通过,3=审核失败',
  45. $menu_arr = ['new', 'red'];
  46. $fishery_1 = (new \app\admin\model\Fishery())->where(['type' => 1, 'status' => 1,])->count();
  47. $menu_fishery_1 = $fishery_1 ? $menu_arr : [];
  48. $fishery_2 = (new \app\admin\model\Fishery())->where(['type' => 2, 'status' => 1,])->count();
  49. $menu_fishery_2 = $fishery_2 ? $menu_arr : [];
  50. $fishery_logout_1 = (new \app\admin\model\Fishery())->where(['type' => 1, 'logout' => 1, 'logout_status' => 1])->count();
  51. $menu_fishery_logout_1 = $fishery_logout_1 ? $menu_arr : [];
  52. $fishery_logout_2 = (new \app\admin\model\Fishery())->where(['type' => 2, 'logout' => 1, 'logout_status' => 1])->count();
  53. $menu_fishery_logout_2 = $fishery_logout_2 ? $menu_arr : [];
  54. // 鱼塘列表
  55. $yutang_num = (new \app\admin\model\Yutang())->where('status', 1)->count();
  56. $menu_yutang_num = $yutang_num ? $menu_arr : [];
  57. // 加盟管理bar
  58. $menu_join = (($fishery_1 + $fishery_2 + $fishery_logout_1 + $fishery_logout_2 + $yutang_num) > 0) ? ['new', 'red', 'badge'] : [];
  59. // 商城 未发货
  60. $order_num = (new Order())->with('item')->payed()->nosend()->count();
  61. $menu_order_num = $order_num ? $menu_arr : [];
  62. $order_aftersale_num = (new Aftersale())->canOper()->count();
  63. $menu_order_aftersale_num = $order_aftersale_num ? $menu_arr : [];
  64. $menu_shop_order_num = (($order_num + $order_aftersale_num) > 0) ? ['new', 'red', 'badge'] : [];
  65. // 财务管理 - 鱼塘订单明细
  66. $dis_order_num = (new \app\admin\model\discount\Order())->where('pay_fail','>',0)->whereOr('yajin_fail','>',0)->count();
  67. $menu_dis_order_num = $dis_order_num ? ['new', 'red', 'badge'] : [];
  68. //左侧菜单
  69. list($menulist, $navlist, $fixedmenu, $referermenu) = $this->auth->getSidebar([
  70. //'dashboard' => 'hot',
  71. 'addon' => ['new', 'red', 'badge'],
  72. 'auth/rule' => __('Menu'),
  73. //'general' => ['new', 'purple'],
  74. 'join' => $menu_join,
  75. 'fishery/index?type=1' => $menu_fishery_1,
  76. 'fishery_logout?type=1&logout=1' => $menu_fishery_logout_1,
  77. 'fishery/index?type=2' => $menu_fishery_2,
  78. 'fishery_logout?type=2&logout=1' => $menu_fishery_logout_2,
  79. 'yutang' => $menu_yutang_num,
  80. 'orderf' => $menu_shop_order_num,
  81. 'shopro/order/order' => $menu_order_num,
  82. 'shopro/order/aftersale' => $menu_order_aftersale_num,
  83. 'caiwuguanli' => $menu_dis_order_num,
  84. 'discount/order' => $menu_dis_order_num,
  85. ], $this->view->site['fixedpage']);
  86. $action = $this->request->request('action');
  87. if ($this->request->isPost()) {
  88. if ($action == 'refreshmenu') {
  89. $this->success('', null, ['menulist' => $menulist, 'navlist' => $navlist]);
  90. }
  91. }
  92. $this->assignconfig('cookie', ['prefix' => config('cookie.prefix')]);
  93. $this->view->assign('menulist', $menulist);
  94. $this->view->assign('navlist', $navlist);
  95. $this->view->assign('fixedmenu', $fixedmenu);
  96. $this->view->assign('referermenu', $referermenu);
  97. $this->view->assign('title', __('Home'));
  98. return $this->view->fetch();
  99. }
  100. /**
  101. * 管理员登录
  102. */
  103. public function login()
  104. {
  105. $url = $this->request->get('url', 'index/index');
  106. if ($this->auth->isLogin()) {
  107. $this->success(__("You've logged in, do not login again"), $url);
  108. }
  109. if ($this->request->isPost()) {
  110. $username = $this->request->post('username');
  111. $password = $this->request->post('password');
  112. $keeplogin = $this->request->post('keeplogin');
  113. $token = $this->request->post('__token__');
  114. $rule = [
  115. 'username' => 'require|length:3,30',
  116. 'password' => 'require|length:3,30',
  117. '__token__' => 'require|token',
  118. ];
  119. $data = [
  120. 'username' => $username,
  121. 'password' => $password,
  122. '__token__' => $token,
  123. ];
  124. if (Config::get('fastadmin.login_captcha')) {
  125. $rule['captcha'] = 'require|captcha';
  126. $data['captcha'] = $this->request->post('captcha');
  127. }
  128. $validate = new Validate($rule, [], ['username' => __('Username'), 'password' => __('Password'), 'captcha' => __('Captcha')]);
  129. $result = $validate->check($data);
  130. if (!$result) {
  131. $this->error($validate->getError(), $url, ['token' => $this->request->token()]);
  132. }
  133. AdminLog::setTitle(__('Login'));
  134. $result = $this->auth->login($username, $password, $keeplogin ? 86400 : 0);
  135. if ($result === true) {
  136. Hook::listen("admin_login_after", $this->request);
  137. $this->success(__('Login successful'), $url, ['url' => $url, 'id' => $this->auth->id, 'username' => $username, 'avatar' => $this->auth->avatar]);
  138. } else {
  139. $msg = $this->auth->getError();
  140. $msg = $msg ? $msg : __('Username or password is incorrect');
  141. $this->error($msg, $url, ['token' => $this->request->token()]);
  142. }
  143. }
  144. // 根据客户端的cookie,判断是否可以自动登录
  145. if ($this->auth->autologin()) {
  146. Session::delete("referer");
  147. $this->redirect($url);
  148. }
  149. $background = Config::get('fastadmin.login_background');
  150. $background = $background ? (stripos($background, 'http') === 0 ? $background : config('site.cdnurl') . $background) : '';
  151. $this->view->assign('background', $background);
  152. $this->view->assign('title', __('Login'));
  153. Hook::listen("admin_login_init", $this->request);
  154. return $this->view->fetch();
  155. }
  156. /**
  157. * 退出登录
  158. */
  159. public function logout()
  160. {
  161. if ($this->request->isPost()) {
  162. $this->auth->logout();
  163. Hook::listen("admin_logout_after", $this->request);
  164. $this->success(__('Logout successful'), 'index/login');
  165. }
  166. $html = "<form id='logout_submit' name='logout_submit' action='' method='post'>" . token() . "<input type='submit' value='ok' style='display:none;'></form>";
  167. $html .= "<script>document.forms['logout_submit'].submit();</script>";
  168. return $html;
  169. }
  170. }