Index.php 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\controller;
  15. use library\Controller;
  16. use library\service\AdminService;
  17. use library\service\MenuService;
  18. use library\tools\Data;
  19. use think\Console;
  20. use think\Db;
  21. use think\exception\HttpResponseException;
  22. /**
  23. * 系统公共操作
  24. * Class Index
  25. * @package app\admin\controller
  26. */
  27. class Index extends Controller
  28. {
  29. /**
  30. * 显示后台首页
  31. * @throws \ReflectionException
  32. * @throws \think\db\exception\DataNotFoundException
  33. * @throws \think\db\exception\ModelNotFoundException
  34. * @throws \think\exception\DbException
  35. */
  36. public function index()
  37. {
  38. $this->title = '系统管理后台';
  39. $auth = AdminService::instance()->apply(true);
  40. $this->menus = MenuService::instance()->getTree();
  41. if (empty($this->menus) && !$auth->isLogin()) {
  42. $this->redirect('@admin/login');
  43. } else {
  44. $this->fetch();
  45. }
  46. }
  47. /**
  48. * 后台环境信息
  49. */
  50. public function main()
  51. {
  52. $this->think_ver = \think\App::VERSION;
  53. $this->mysql_ver = Db::query('select version() as ver')[0]['ver'];
  54. $beginYesterday=mktime(0,0,0,date('m'),date('d')-1,date('Y'));
  55. $endYesterday=mktime(0,0,0,date('m'),date('d'),date('Y'))-1;
  56. $beginToday=mktime(0,0,0,date('m'),date('d'),date('Y'));
  57. $endToday=mktime(0,0,0,date('m'),date('d')+1,date('Y'))-1;
  58. $user_num = \app\common\model\User::where('status',1)->where('is_deleted',0)->count();
  59. $agency_num = \app\common\model\User::where('is_agency',1)->where('is_deleted',0)->count();
  60. $partner_num = \app\common\model\User::where('is_partner',1)->where('is_deleted',0)->count();
  61. $goods_num = \app\common\model\StoreGoods::where('is_deleted',0)->count();
  62. $order_num = \app\common\model\GoodsOrder::where('status','>=',1)->count();
  63. $order_money = \app\common\model\GoodsOrder::where('status','>=',1)->sum('price_total');
  64. $gift_order_num = \app\common\model\GiftOrder::count();
  65. $gift_order_money = \app\common\model\GiftOrder::where('status',1)->sum('price_total');
  66. $news_num = \app\common\model\InformationArticle::where('is_deleted',0)->count();
  67. $video_num = \app\common\model\VideoIntro::where('is_deleted',0)->count();
  68. $new_user = \app\common\model\User::where('status',1)->whereBetweenTime('create_at',$beginToday,$endToday)->count();
  69. $data = [
  70. 'user_num' => $user_num,
  71. 'agency_num' => $agency_num,
  72. 'partner_num' => $partner_num,
  73. 'goods_num' => $goods_num,
  74. 'order_num' => $order_num,
  75. 'order_money' => $order_money,
  76. 'news_num' => $news_num,
  77. 'video_num' => $video_num,
  78. 'new_user' => $new_user,
  79. 'gift_order_num' => $gift_order_num,
  80. 'gift_order_money' => $gift_order_money,
  81. ];
  82. $this->assign('data',$data);
  83. $this->fetch();
  84. }
  85. /**
  86. * 修改密码
  87. * @login true
  88. * @param integer $id
  89. * @throws \think\Exception
  90. * @throws \think\db\exception\DataNotFoundException
  91. * @throws \think\db\exception\ModelNotFoundException
  92. * @throws \think\exception\DbException
  93. * @throws \think\exception\PDOException
  94. */
  95. public function pass($id)
  96. {
  97. $this->applyCsrfToken();
  98. if (intval($id) !== intval(session('user.id'))) {
  99. $this->error('只能修改当前用户的密码!');
  100. }
  101. if (!AdminService::instance()->isLogin()) {
  102. $this->error('需要登录才能操作哦!');
  103. }
  104. if ($this->request->isGet()) {
  105. $this->verify = true;
  106. $this->_form('SystemUser', 'admin@user/pass', 'id', [], ['id' => $id]);
  107. } else {
  108. $data = $this->_input([
  109. 'password' => $this->request->post('password'),
  110. 'repassword' => $this->request->post('repassword'),
  111. 'oldpassword' => $this->request->post('oldpassword'),
  112. ], [
  113. 'oldpassword' => 'require',
  114. 'password' => 'require|min:4',
  115. 'repassword' => 'require|confirm:password',
  116. ], [
  117. 'oldpassword.require' => '旧密码不能为空!',
  118. 'password.require' => '登录密码不能为空!',
  119. 'password.min' => '登录密码长度不能少于4位有效字符!',
  120. 'repassword.require' => '重复密码不能为空!',
  121. 'repassword.confirm' => '重复密码与登录密码不匹配,请重新输入!',
  122. ]);
  123. $user = Db::name('SystemUser')->where(['id' => $id])->find();
  124. if (md5($data['oldpassword']) !== $user['password']) {
  125. $this->error('旧密码验证失败,请重新输入!');
  126. }
  127. if (Data::save('SystemUser', ['id' => $user['id'], 'password' => md5($data['password'])])) {
  128. $this->success('密码修改成功,下次请使用新密码登录!', '');
  129. } else {
  130. $this->error('密码修改失败,请稍候再试!');
  131. }
  132. }
  133. }
  134. /**
  135. * 修改用户资料
  136. * @login true
  137. * @param integer $id 会员ID
  138. * @throws \think\Exception
  139. * @throws \think\db\exception\DataNotFoundException
  140. * @throws \think\db\exception\ModelNotFoundException
  141. * @throws \think\exception\DbException
  142. * @throws \think\exception\PDOException
  143. */
  144. public function info($id = 0)
  145. {
  146. if (!AdminService::instance()->isLogin()) {
  147. $this->error('需要登录才能操作哦!');
  148. }
  149. $this->applyCsrfToken();
  150. if (intval($id) === intval(session('user.id'))) {
  151. $this->_form('SystemUser', 'admin@user/form', 'id', [], ['id' => $id]);
  152. } else {
  153. $this->error('只能修改登录用户的资料!');
  154. }
  155. }
  156. /**
  157. * 清理运行缓存
  158. * @auth true
  159. */
  160. public function clearRuntime()
  161. {
  162. try {
  163. Console::call('clear');
  164. Console::call('xclean:session');
  165. $this->success('清理运行缓存成功!');
  166. } catch (HttpResponseException $exception) {
  167. throw $exception;
  168. } catch (\Exception $e) {
  169. $this->error("清理运行缓存失败,{$e->getMessage()}");
  170. }
  171. }
  172. /**
  173. * 压缩发布系统
  174. */
  175. public function buildOptimize()
  176. {
  177. try {
  178. Console::call('optimize:route');
  179. Console::call('optimize:schema');
  180. Console::call('optimize:autoload');
  181. Console::call('optimize:config');
  182. $this->success('压缩发布成功!');
  183. } catch (HttpResponseException $exception) {
  184. throw $exception;
  185. } catch (\Exception $e) {
  186. $this->error("压缩发布失败,{$e->getMessage()}");
  187. }
  188. }
  189. }