Index.php 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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 app\common\model\UserForum;
  16. use library\Controller;
  17. use library\service\AdminService;
  18. use library\service\MenuService;
  19. use library\tools\Data;
  20. use think\Console;
  21. use think\Db;
  22. use think\exception\HttpResponseException;
  23. /**
  24. * 系统公共操作
  25. * Class Index
  26. * @package app\admin\controller
  27. */
  28. class Index extends Controller
  29. {
  30. /**
  31. * 显示后台首页
  32. * @throws \ReflectionException
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\ModelNotFoundException
  35. * @throws \think\exception\DbException
  36. */
  37. public function index()
  38. {
  39. $this->title = '系统管理后台';
  40. $auth = AdminService::instance()->apply(true);
  41. $this->menus = MenuService::instance()->getTree();
  42. $where[] = ['f.is_deleted','=',0];
  43. $where[] = ['f.is_new','=',1];
  44. $forum = UserForum::alias('f')
  45. ->field("f.*,u.name,u.phone,u.headimg,IFNULL((SELECT count(r.id) reply_num FROM dd_forum_reply as r where r.forum_id = f.id AND r.is_deleted = 0),0) reply_num")
  46. ->leftJoin('store_member u','u.id = f.user_id')
  47. ->where($where)
  48. ->order('sort desc,f.id desc')->count();
  49. if($forum > 0){
  50. $this->forum = 1; //有新增
  51. }else{
  52. $this->forum = 0; //无新增
  53. }
  54. if (empty($this->menus) && !$auth->isLogin()) {
  55. $this->redirect('@admin/login');
  56. } else {
  57. $this->fetch();
  58. }
  59. }
  60. /**
  61. * 后台环境信息
  62. */
  63. public function main()
  64. {
  65. $this->think_ver = \think\App::VERSION;
  66. $this->mysql_ver = Db::query('select version() as ver')[0]['ver'];
  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. $user_num = \app\common\model\User::where('status',1)->where('is_deleted',0)->count();
  72. $agency_num = \app\common\model\User::where('is_agency',1)->where('is_deleted',0)->count();
  73. $partner_num = \app\common\model\User::where('is_partner',1)->where('is_deleted',0)->count();
  74. $goods_num = \app\common\model\StoreGoods::where('is_deleted',0)->count();
  75. $order_num = \app\common\model\GoodsOrder::where('status','>=',1)->count();
  76. $order_money = \app\common\model\GoodsOrder::where('status','>=',1)->sum('price_total');
  77. $gift_order_num = \app\common\model\GiftOrder::count();
  78. $gift_order_money = \app\common\model\GiftOrder::where('status',1)->sum('price_total');
  79. $news_num = \app\common\model\InformationArticle::where('is_deleted',0)->count();
  80. $video_num = \app\common\model\VideoIntro::where('is_deleted',0)->count();
  81. $new_user = \app\common\model\User::where('status',1)->whereBetweenTime('create_at',$beginToday,$endToday)->count();
  82. $data = [
  83. 'user_num' => $user_num,
  84. 'agency_num' => $agency_num,
  85. 'partner_num' => $partner_num,
  86. 'goods_num' => $goods_num,
  87. 'order_num' => $order_num,
  88. 'order_money' => $order_money,
  89. 'news_num' => $news_num,
  90. 'video_num' => $video_num,
  91. 'new_user' => $new_user,
  92. 'gift_order_num' => $gift_order_num,
  93. 'gift_order_money' => $gift_order_money,
  94. ];
  95. $this->assign('data',$data);
  96. $this->fetch();
  97. }
  98. /**
  99. * 修改密码
  100. * @login true
  101. * @param integer $id
  102. * @throws \think\Exception
  103. * @throws \think\db\exception\DataNotFoundException
  104. * @throws \think\db\exception\ModelNotFoundException
  105. * @throws \think\exception\DbException
  106. * @throws \think\exception\PDOException
  107. */
  108. public function pass($id)
  109. {
  110. $this->applyCsrfToken();
  111. if (intval($id) !== intval(session('user.id'))) {
  112. $this->error('只能修改当前用户的密码!');
  113. }
  114. if (!AdminService::instance()->isLogin()) {
  115. $this->error('需要登录才能操作哦!');
  116. }
  117. if ($this->request->isGet()) {
  118. $this->verify = true;
  119. $this->_form('SystemUser', 'admin@user/pass', 'id', [], ['id' => $id]);
  120. } else {
  121. $data = $this->_input([
  122. 'password' => $this->request->post('password'),
  123. 'repassword' => $this->request->post('repassword'),
  124. 'oldpassword' => $this->request->post('oldpassword'),
  125. ], [
  126. 'oldpassword' => 'require',
  127. 'password' => 'require|min:4',
  128. 'repassword' => 'require|confirm:password',
  129. ], [
  130. 'oldpassword.require' => '旧密码不能为空!',
  131. 'password.require' => '登录密码不能为空!',
  132. 'password.min' => '登录密码长度不能少于4位有效字符!',
  133. 'repassword.require' => '重复密码不能为空!',
  134. 'repassword.confirm' => '重复密码与登录密码不匹配,请重新输入!',
  135. ]);
  136. $user = Db::name('SystemUser')->where(['id' => $id])->find();
  137. if (md5($data['oldpassword']) !== $user['password']) {
  138. $this->error('旧密码验证失败,请重新输入!');
  139. }
  140. if (Data::save('SystemUser', ['id' => $user['id'], 'password' => md5($data['password'])])) {
  141. $this->success('密码修改成功,下次请使用新密码登录!', '');
  142. } else {
  143. $this->error('密码修改失败,请稍候再试!');
  144. }
  145. }
  146. }
  147. /**
  148. * 修改用户资料
  149. * @login true
  150. * @param integer $id 会员ID
  151. * @throws \think\Exception
  152. * @throws \think\db\exception\DataNotFoundException
  153. * @throws \think\db\exception\ModelNotFoundException
  154. * @throws \think\exception\DbException
  155. * @throws \think\exception\PDOException
  156. */
  157. public function info($id = 0)
  158. {
  159. if (!AdminService::instance()->isLogin()) {
  160. $this->error('需要登录才能操作哦!');
  161. }
  162. $this->applyCsrfToken();
  163. if (intval($id) === intval(session('user.id'))) {
  164. $this->_form('SystemUser', 'admin@user/form', 'id', [], ['id' => $id]);
  165. } else {
  166. $this->error('只能修改登录用户的资料!');
  167. }
  168. }
  169. /**
  170. * 清理运行缓存
  171. * @auth true
  172. */
  173. public function clearRuntime()
  174. {
  175. try {
  176. Console::call('clear');
  177. Console::call('xclean:session');
  178. $this->success('清理运行缓存成功!');
  179. } catch (HttpResponseException $exception) {
  180. throw $exception;
  181. } catch (\Exception $e) {
  182. $this->error("清理运行缓存失败,{$e->getMessage()}");
  183. }
  184. }
  185. /**
  186. * 压缩发布系统
  187. */
  188. public function buildOptimize()
  189. {
  190. try {
  191. Console::call('optimize:route');
  192. Console::call('optimize:schema');
  193. Console::call('optimize:autoload');
  194. Console::call('optimize:config');
  195. $this->success('压缩发布成功!');
  196. } catch (HttpResponseException $exception) {
  197. throw $exception;
  198. } catch (\Exception $e) {
  199. $this->error("压缩发布失败,{$e->getMessage()}");
  200. }
  201. }
  202. }