Index.php 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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. $user = $this->app->session->get('user');
  40. $info = Db::name('system_user')->where('id',$user['id'])->find();
  41. if ($user['password']!=$info['password']){
  42. $this->redirect('@admin/login');
  43. }
  44. $auth = AdminService::instance()->apply(true);
  45. $this->menus = MenuService::instance()->getTree();
  46. if (empty($this->menus) && !$auth->isLogin()) {
  47. $this->redirect('@admin/login');
  48. } else {
  49. $this->fetch();
  50. }
  51. }
  52. /**
  53. * 后台环境信息
  54. */
  55. public function main()
  56. {
  57. $this->think_ver = \think\App::VERSION;
  58. $this->mysql_ver = Db::query('select version() as ver')[0]['ver'];
  59. //活动总量
  60. $goods_count = Db::name('store_goods')->count('id');
  61. //用户总量
  62. $member_count = Db::name('store_member')->count('id');
  63. //报名总量
  64. $apply_count = Db::name('store_apply_list')->count('id');
  65. //建议总量
  66. $complain_count = Db::name('store_complain')->count('id');
  67. $beginYesterday=mktime(0,0,0,date('m'),date('d')-1,date('Y'));
  68. $endYesterday=mktime(0,0,0,date('m'),date('d'),date('Y'))-1;
  69. $beginToday=mktime(0,0,0,date('m'),date('d'),date('Y'));
  70. $endToday=mktime(0,0,0,date('m'),date('d')+1,date('Y'))-1;
  71. //昨天报名优惠金额
  72. $yesterday_amount = Db::name('store_apply_list')->where('is_deleted',0)->whereBetweenTime('create_at',date('Y-m-d H:i:s',$beginYesterday),date('Y-m-d H:i:s',$endYesterday))->sum('amount');
  73. //今天报名优惠金额
  74. $today_amount = Db::name('store_apply_list')->where('is_deleted',0)->whereBetweenTime('create_at',date('Y-m-d H:i:s',$beginToday),date('Y-m-d H:i:s',$endToday))->sum('amount');
  75. //昨天新增用户数
  76. $yesterday_member = Db::name('store_member')->whereBetweenTime('create_at',date('Y-m-d H:i:s',$beginYesterday),date('Y-m-d H:i:s',$endYesterday))->count('id');
  77. //今天新增用户数
  78. $today_member = Db::name('store_member')->whereBetweenTime('create_at',date('Y-m-d H:i:s',$beginToday),date('Y-m-d H:i:s',$endToday))->count('id');
  79. $data = array(
  80. 'goods_count' => $goods_count,
  81. 'member_count' => $member_count,
  82. 'apply_count' => $apply_count,
  83. 'complain_count' => $complain_count,
  84. 'yesterday_amount' => $yesterday_amount,
  85. 'today_amount' => $today_amount,
  86. 'yesterday_member' => $yesterday_member,
  87. 'today_member' => $today_member,
  88. );
  89. $this->assign('data',$data);
  90. $this->fetch();
  91. }
  92. /**
  93. * 修改密码
  94. * @login true
  95. * @param integer $id
  96. * @throws \think\Exception
  97. * @throws \think\db\exception\DataNotFoundException
  98. * @throws \think\db\exception\ModelNotFoundException
  99. * @throws \think\exception\DbException
  100. * @throws \think\exception\PDOException
  101. */
  102. public function pass($id)
  103. {
  104. $this->applyCsrfToken();
  105. if (intval($id) !== intval(session('user.id'))) {
  106. $this->error('只能修改当前用户的密码!');
  107. }
  108. if (!AdminService::instance()->isLogin()) {
  109. $this->error('需要登录才能操作哦!');
  110. }
  111. if ($this->request->isGet()) {
  112. $this->verify = true;
  113. $this->_form('SystemUser', 'admin@user/pass', 'id', [], ['id' => $id]);
  114. } else {
  115. $data = $this->_input([
  116. 'password' => $this->request->post('password'),
  117. 'repassword' => $this->request->post('repassword'),
  118. 'oldpassword' => $this->request->post('oldpassword'),
  119. ], [
  120. 'oldpassword' => 'require',
  121. 'password' => 'require|min:4',
  122. 'repassword' => 'require|confirm:password',
  123. ], [
  124. 'oldpassword.require' => '旧密码不能为空!',
  125. 'password.require' => '登录密码不能为空!',
  126. 'password.min' => '登录密码长度不能少于4位有效字符!',
  127. 'repassword.require' => '重复密码不能为空!',
  128. 'repassword.confirm' => '重复密码与登录密码不匹配,请重新输入!',
  129. ]);
  130. $user = Db::name('SystemUser')->where(['id' => $id])->find();
  131. if (md5($data['oldpassword']) !== $user['password']) {
  132. $this->error('旧密码验证失败,请重新输入!');
  133. }
  134. if (Data::save('SystemUser', ['id' => $user['id'], 'password' => md5($data['password'])])) {
  135. $this->success('密码修改成功,下次请使用新密码登录!', '');
  136. } else {
  137. $this->error('密码修改失败,请稍候再试!');
  138. }
  139. }
  140. }
  141. /**
  142. * 修改用户资料
  143. * @login true
  144. * @param integer $id 会员ID
  145. * @throws \think\Exception
  146. * @throws \think\db\exception\DataNotFoundException
  147. * @throws \think\db\exception\ModelNotFoundException
  148. * @throws \think\exception\DbException
  149. * @throws \think\exception\PDOException
  150. */
  151. public function info($id = 0)
  152. {
  153. if (!AdminService::instance()->isLogin()) {
  154. $this->error('需要登录才能操作哦!');
  155. }
  156. $this->applyCsrfToken();
  157. if (intval($id) === intval(session('user.id'))) {
  158. $this->_form('SystemUser', 'admin@user/form', 'id', [], ['id' => $id]);
  159. } else {
  160. $this->error('只能修改登录用户的资料!');
  161. }
  162. }
  163. /**
  164. * 清理运行缓存
  165. * @auth true
  166. */
  167. public function clearRuntime()
  168. {
  169. try {
  170. Console::call('clear');
  171. Console::call('xclean:session');
  172. $this->success('清理运行缓存成功!');
  173. } catch (HttpResponseException $exception) {
  174. throw $exception;
  175. } catch (\Exception $e) {
  176. $this->error("清理运行缓存失败,{$e->getMessage()}");
  177. }
  178. }
  179. /**
  180. * 压缩发布系统
  181. * @auth true
  182. */
  183. public function buildOptimize()
  184. {
  185. try {
  186. Console::call('optimize:route');
  187. Console::call('optimize:schema');
  188. Console::call('optimize:autoload');
  189. Console::call('optimize:config');
  190. $this->success('压缩发布成功!');
  191. } catch (HttpResponseException $exception) {
  192. throw $exception;
  193. } catch (\Exception $e) {
  194. $this->error("压缩发布失败,{$e->getMessage()}");
  195. }
  196. }
  197. }