Index.php 7.7 KB

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