Index.php 9.8 KB

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