Index.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  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. $notice = Db::name('store_notice')->where('is_deleted','=',0)->order('create_at','DESC')->limit(3)->select();
  53. $activity = Db::name('store_activity')->where('is_deleted','=',0)->order('id','DESC')->limit(1)->find();
  54. $activity['content'] = strip_tags(htmlspecialchars_decode($activity['content']));
  55. $member_count = Db::name('store_member')->count('id');
  56. $sta_week = date("Y-m-d H:i:s", mktime(0,0,0,date("m"),date("d")-date("w")+1,date("Y"))); //2020-03-09 00:00:00
  57. $end_week = date("Y-m-d H:i:s", mktime(0,0,0,date("m"),date("d")-date("w")+7,date("Y"))); //2020-03-09 00:00:00
  58. $weeek_regiz = Db::name('store_member')->whereBetween('create_at',[$sta_week,$end_week])->count();
  59. $member_rz = Db::name('store_member')->where('vip_level','=',1)->count('id');
  60. $activity_count= Db::name('store_activity')->where('is_deleted','=',0)->count();
  61. $forum_count = Db::name('store_emotional_counseling')->where('is_deleted','=',0)->count();
  62. $examine_count = Db::name('store_examine')->where('status','=',1)->count();
  63. $examine_forum =Db::name('store_forum')->where('status','=',1)->count();
  64. $examine_report =Db::name('store_report')->where('status','=',1)->count();
  65. $no_emotion = Db::name('store_emotional_counseling')->where('is_deleted','=',0)->where('status','=',1)->count();
  66. $nan_count = Db::name('store_member')->where('sex',1)->count('id');
  67. $nv_count = Db::name('store_member')->where('sex',2)->count('id');
  68. //男女学历统计
  69. $a1 = Db::name('store_member')->where('sex',1)->where('education','=','高中')->count();
  70. $b1= Db::name('store_member')->where('sex',2)->where('education','=','高中')->count();
  71. $a2 = Db::name('store_member')->where('sex',1)->where('education','=','大专')->count();
  72. $b2= Db::name('store_member')->where('sex',2)->where('education','=','大专')->count();
  73. $a3 = Db::name('store_member')->where('sex',1)->where('education','=','本科')->count();
  74. $b3= Db::name('store_member')->where('sex',2)->where('education','=','本科')->count();
  75. $a4 = Db::name('store_member')->where('sex',1)->where('education','=','研究生')->count();
  76. $b4= Db::name('store_member')->where('sex',2)->where('education','=','研究生')->count();
  77. $a5 = Db::name('store_member')->where('sex',1)->where('education','=','博士')->count();
  78. $b5= Db::name('store_member')->where('sex',2)->where('education','=','博士')->count();
  79. $working = Db::name('store_work_nature')
  80. ->alias('w')
  81. ->join('store_member m','w.id=m.nature')
  82. ->field('w.id,w.name,count(*) count')
  83. ->where('w.is_deleted','=',0)
  84. ->group('m.nature')
  85. ->order('count desc')
  86. ->limit(10)
  87. ->select();
  88. $nature = [];
  89. $nature_count_nan = [];
  90. $nature_count_nv = [];
  91. foreach ($working as $k=>$v){
  92. $nature[$k] ="'".$working[$k]['name']."'";
  93. $nature_count_nan[$k] = Db::name('store_member')->where('sex',1)->where('nature',$working[$k]['id'])->count();
  94. $nature_count_nv[$k] = Db::name('store_member')->where('sex',2)->where('nature',$working[$k]['id'])->count();
  95. }
  96. $nature = implode(',',$nature);
  97. $nature_count_nan = implode(',',$nature_count_nan);
  98. $nature_count_nv = implode(',',$nature_count_nv);
  99. $sale =[['min'=>20,'max'=>22],['min'=>23,'max'=>25],['min'=>26,'max'=>28],['min'=>29,'max'=>31],['min'=>32,'max'=>34],['min'=>35,'max'=>37],['min'=>38,'max'=>40],['min'=>41,'max'=>43],['min'=>44,'max'=>46],['min'=>47,'max'=>49],['min'=>50,'max'=>52],['min'=>53,'max'=>55],['min'=>56,'max'=>58],['min'=>59,'max'=>61],['min'=>62,'max'=>64]];
  100. $age_count_nan = [];
  101. $age_count_nv = [];
  102. foreach ($sale as $k1=>$v1){
  103. $where = [];
  104. $where[] = ['age', 'between', [$sale[$k1]['min'], $sale[$k1]['max']]];
  105. $age_count_nan[$k1] = Db::name('store_member')->where('sex',1)->where($where)->count();
  106. $age_count_nv[$k1] = Db::name('store_member')->where('sex',2)->where($where)->count();
  107. }
  108. // die;
  109. // print_r($age_count_nv);print_r($age_count_nan);
  110. $age_count_nan = implode(',',$age_count_nan);
  111. $age_count_nv = implode(',',$age_count_nv);
  112. $this->fetch('main',
  113. [
  114. 'member_count'=>$member_count,
  115. 'member_rz'=>$member_rz,
  116. 'activity_count'=>$activity_count,
  117. 'forum_count'=>$forum_count,
  118. 'examine_count'=>$examine_count,
  119. 'examine_forum'=>$examine_forum,
  120. 'examine_report'=>$examine_report,
  121. 'no_emotion'=>$no_emotion,
  122. 'nan_count'=>$nan_count,
  123. 'nv_count'=>$nv_count,
  124. 'activity'=>$activity,
  125. 'notice'=>$notice,
  126. 'nature'=>$nature,
  127. 'nature_count_nan'=>$nature_count_nan,
  128. 'nature_count_nv'=>$nature_count_nv,
  129. 'age_count_nan'=>$age_count_nan,
  130. 'age_count_nv'=>$age_count_nv,
  131. 'gaozhong' => "['高中',$a1,$b1]",
  132. 'dazhuan' => "['大专',$a2,$b2]",
  133. 'benke' => "['本科',$a3,$b3]",
  134. 'shuoshi' => "['硕士',$a4,$b4]",
  135. 'boshi' => "['博士',$a5,$b5]",
  136. 'count'=>$weeek_regiz
  137. ]);
  138. }
  139. public function tongji(){
  140. $this->fetch('tongji');
  141. }
  142. /**
  143. * 修改密码
  144. * @login true
  145. * @param integer $id
  146. * @throws \think\Exception
  147. * @throws \think\db\exception\DataNotFoundException
  148. * @throws \think\db\exception\ModelNotFoundException
  149. * @throws \think\exception\DbException
  150. * @throws \think\exception\PDOException
  151. */
  152. public function pass($id)
  153. {
  154. $this->applyCsrfToken();
  155. if (intval($id) !== intval(session('user.id'))) {
  156. $this->error('只能修改当前用户的密码!');
  157. }
  158. if (!AdminService::instance()->isLogin()) {
  159. $this->error('需要登录才能操作哦!');
  160. }
  161. if ($this->request->isGet()) {
  162. $this->verify = true;
  163. $this->_form('SystemUser', 'admin@user/pass', 'id', [], ['id' => $id]);
  164. } else {
  165. $data = $this->_input([
  166. 'password' => $this->request->post('password'),
  167. 'repassword' => $this->request->post('repassword'),
  168. 'oldpassword' => $this->request->post('oldpassword'),
  169. ], [
  170. 'oldpassword' => 'require',
  171. 'password' => 'require|min:4',
  172. 'repassword' => 'require|confirm:password',
  173. ], [
  174. 'oldpassword.require' => '旧密码不能为空!',
  175. 'password.require' => '登录密码不能为空!',
  176. 'password.min' => '登录密码长度不能少于4位有效字符!',
  177. 'repassword.require' => '重复密码不能为空!',
  178. 'repassword.confirm' => '重复密码与登录密码不匹配,请重新输入!',
  179. ]);
  180. $user = Db::name('SystemUser')->where(['id' => $id])->find();
  181. if (md5($data['oldpassword']) !== $user['password']) {
  182. $this->error('旧密码验证失败,请重新输入!');
  183. }
  184. if (Data::save('SystemUser', ['id' => $user['id'], 'password' => md5($data['password'])])) {
  185. $this->success('密码修改成功,下次请使用新密码登录!', '');
  186. } else {
  187. $this->error('密码修改失败,请稍候再试!');
  188. }
  189. }
  190. }
  191. /**
  192. * 修改用户资料
  193. * @login true
  194. * @param integer $id 会员ID
  195. * @throws \think\Exception
  196. * @throws \think\db\exception\DataNotFoundException
  197. * @throws \think\db\exception\ModelNotFoundException
  198. * @throws \think\exception\DbException
  199. * @throws \think\exception\PDOException
  200. */
  201. public function info($id = 0)
  202. {
  203. if (!AdminService::instance()->isLogin()) {
  204. $this->error('需要登录才能操作哦!');
  205. }
  206. $this->applyCsrfToken();
  207. if (intval($id) === intval(session('user.id'))) {
  208. $this->_form('SystemUser', 'admin@user/form', 'id', [], ['id' => $id]);
  209. } else {
  210. $this->error('只能修改登录用户的资料!');
  211. }
  212. }
  213. /**
  214. * 清理运行缓存
  215. * @auth true
  216. */
  217. public function clearRuntime()
  218. {
  219. try {
  220. Console::call('clear');
  221. Console::call('xclean:session');
  222. $this->success('清理运行缓存成功!');
  223. } catch (HttpResponseException $exception) {
  224. throw $exception;
  225. } catch (\Exception $e) {
  226. $this->error("清理运行缓存失败,{$e->getMessage()}");
  227. }
  228. }
  229. /**
  230. * 压缩发布系统
  231. * @auth true
  232. */
  233. public function buildOptimize()
  234. {
  235. try {
  236. Console::call('optimize:route');
  237. Console::call('optimize:schema');
  238. Console::call('optimize:autoload');
  239. Console::call('optimize:config');
  240. $this->success('压缩发布成功!');
  241. } catch (HttpResponseException $exception) {
  242. throw $exception;
  243. } catch (\Exception $e) {
  244. $this->error("压缩发布失败,{$e->getMessage()}");
  245. }
  246. }
  247. }