Index.php 11 KB

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