UserController.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-04-30
  10. // +—————————————————————————————————————————————————————————————————————
  11. namespace app\admin\controller;
  12. use cmf\controller\AdminBaseController;
  13. use think\Db;
  14. use think\db\Query;
  15. /**
  16. * Class UserController
  17. * @package app\admin\controller
  18. * @adminMenuRoot(
  19. * 'name' => '管理组',
  20. * 'action' => 'default',
  21. * 'parent' => 'user/AdminIndex/default',
  22. * 'display'=> true,
  23. * 'order' => 10000,
  24. * 'icon' => '',
  25. * 'remark' => '管理组'
  26. * )
  27. */
  28. class UserController extends AdminBaseController{
  29. /**
  30. * 管理员列表
  31. * @adminMenu(
  32. * 'name' => '管理员',
  33. * 'parent' => 'default',
  34. * 'display'=> true,
  35. * 'hasView'=> true,
  36. * 'order' => 10000,
  37. * 'icon' => '',
  38. * 'remark' => '管理员管理',
  39. * 'param' => ''
  40. * )
  41. * @throws \think\exception\DbException
  42. */
  43. public function index(){
  44. $content = hook_one('admin_user_index_view');
  45. if (!empty($content)) {
  46. return $content;
  47. }
  48. /**搜索条件**/
  49. $userLogin = $this->request->param('user_login');
  50. $userEmail = trim($this->request->param('user_email'));
  51. $users = Db::name('user')
  52. ->where('user_type', 1)
  53. ->where(function (Query $query) use ($userLogin, $userEmail) {
  54. if ($userLogin) {
  55. $query->where('user_login', 'like', "%$userLogin%");
  56. }
  57. if ($userEmail) {
  58. $query->where('user_email', 'like', "%$userEmail%");
  59. }
  60. })
  61. ->order("id DESC")
  62. ->paginate(10);
  63. $users->appends(['user_login' => $userLogin, 'user_email' => $userEmail]);
  64. // 获取分页显示
  65. $page = $users->render();
  66. $rolesSrc = Db::name('role')->select();
  67. $roles = [];
  68. foreach ($rolesSrc as $r) {
  69. $roleId = $r['id'];
  70. $roles["$roleId"] = $r;
  71. }
  72. $this->assign("page", $page);
  73. $this->assign("roles", $roles);
  74. $this->assign("users", $users);
  75. return $this->fetch();
  76. }
  77. /**
  78. * 管理员添加
  79. * @adminMenu(
  80. * 'name' => '管理员添加',
  81. * 'parent' => 'index',
  82. * 'display'=> false,
  83. * 'hasView'=> true,
  84. * 'order' => 10000,
  85. * 'icon' => '',
  86. * 'remark' => '管理员添加',
  87. * 'param' => ''
  88. * )
  89. */
  90. public function add(){
  91. $content = hook_one('admin_user_add_view');
  92. if (!empty($content)) {
  93. return $content;
  94. }
  95. $roles = Db::name('role')->where('status', 1)->order("id DESC")->select();
  96. $this->assign("roles", $roles);
  97. return $this->fetch();
  98. }
  99. /**
  100. * 管理员添加提交
  101. * @adminMenu(
  102. * 'name' => '管理员添加提交',
  103. * 'parent' => 'index',
  104. * 'display'=> false,
  105. * 'hasView'=> false,
  106. * 'order' => 10000,
  107. * 'icon' => '',
  108. * 'remark' => '管理员添加提交',
  109. * 'param' => ''
  110. * )
  111. */
  112. public function addPost(){
  113. if ($this->request->isPost()) {
  114. if (!empty($_POST['role_id']) && is_array($_POST['role_id'])) {
  115. $role_ids = $_POST['role_id'];
  116. unset($_POST['role_id']);
  117. $result = $this->validate($this->request->param(), 'User');
  118. if ($result !== true) {
  119. $this->error($result);
  120. } else {
  121. $_POST['user_pass'] = cmf_password($_POST['user_pass']);
  122. $result = DB::name('user')->insertGetId($_POST);
  123. if ($result !== false) {
  124. foreach ($role_ids as $role_id) {
  125. if (cmf_get_current_admin_id() != 1 && $role_id == 1) {
  126. $this->error("为了网站的安全,非网站创建者不可创建超级管理员!");
  127. }
  128. Db::name('RoleUser')->insert(["role_id" => $role_id, "user_id" => $result]);
  129. }
  130. $this->success("添加成功!", url("user/index"));
  131. } else {
  132. $this->error("添加失败!");
  133. }
  134. }
  135. } else {
  136. $this->error("请为此用户指定角色!");
  137. }
  138. }
  139. }
  140. /**
  141. * 管理员编辑
  142. * @adminMenu(
  143. * 'name' => '管理员编辑',
  144. * 'parent' => 'index',
  145. * 'display'=> false,
  146. * 'hasView'=> true,
  147. * 'order' => 10000,
  148. * 'icon' => '',
  149. * 'remark' => '管理员编辑',
  150. * 'param' => ''
  151. * )
  152. */
  153. public function edit(){
  154. $content = hook_one('admin_user_edit_view');
  155. if (!empty($content)) {
  156. return $content;
  157. }
  158. $id = $this->request->param('id', 0, 'intval');
  159. $roles = DB::name('role')->where('status', 1)->order("id DESC")->select();
  160. $this->assign("roles", $roles);
  161. $role_ids = DB::name('RoleUser')->where("user_id", $id)->column("role_id");
  162. $this->assign("role_ids", $role_ids);
  163. $user = DB::name('user')->where("id", $id)->find();
  164. $this->assign($user);
  165. return $this->fetch();
  166. }
  167. /**
  168. * 管理员编辑提交
  169. * @adminMenu(
  170. * 'name' => '管理员编辑提交',
  171. * 'parent' => 'index',
  172. * 'display'=> false,
  173. * 'hasView'=> false,
  174. * 'order' => 10000,
  175. * 'icon' => '',
  176. * 'remark' => '管理员编辑提交',
  177. * 'param' => ''
  178. * )
  179. */
  180. public function editPost(){
  181. if ($this->request->isPost()) {
  182. if (!empty($_POST['role_id']) && is_array($_POST['role_id'])) {
  183. if (empty($_POST['user_pass'])) {
  184. unset($_POST['user_pass']);
  185. } else {
  186. $_POST['user_pass'] = cmf_password($_POST['user_pass']);
  187. }
  188. $role_ids = $this->request->param('role_id/a');
  189. unset($_POST['role_id']);
  190. $result = $this->validate($this->request->param(), 'User.edit');
  191. if ($result !== true) {
  192. // 验证失败 输出错误信息
  193. $this->error($result);
  194. } else {
  195. $result = DB::name('user')->update($_POST);
  196. if ($result !== false) {
  197. $uid = $this->request->param('id', 0, 'intval');
  198. DB::name("RoleUser")->where("user_id", $uid)->delete();
  199. foreach ($role_ids as $role_id) {
  200. if (cmf_get_current_admin_id() != 1 && $role_id == 1) {
  201. $this->error("为了网站的安全,非网站创建者不可创建超级管理员!");
  202. }
  203. DB::name("RoleUser")->insert(["role_id" => $role_id, "user_id" => $uid]);
  204. }
  205. $this->success("保存成功!");
  206. } else {
  207. $this->error("保存失败!");
  208. }
  209. }
  210. } else {
  211. $this->error("请为此用户指定角色!");
  212. }
  213. }
  214. }
  215. /**
  216. * 管理员个人信息修改
  217. * @adminMenu(
  218. * 'name' => '个人信息',
  219. * 'parent' => 'index',
  220. * 'display'=> false,
  221. * 'hasView'=> true,
  222. * 'order' => 10000,
  223. * 'icon' => '',
  224. * 'remark' => '管理员个人信息修改',
  225. * 'param' => ''
  226. * )
  227. */
  228. public function userInfo(){
  229. $id = cmf_get_current_admin_id();
  230. $user = Db::name('user')->where("id", $id)->find();
  231. $this->assign($user);
  232. return $this->fetch();
  233. }
  234. /**
  235. * 管理员个人信息修改提交
  236. * @adminMenu(
  237. * 'name' => '管理员个人信息修改提交',
  238. * 'parent' => 'index',
  239. * 'display'=> false,
  240. * 'hasView'=> false,
  241. * 'order' => 10000,
  242. * 'icon' => '',
  243. * 'remark' => '管理员个人信息修改提交',
  244. * 'param' => ''
  245. * )
  246. */
  247. public function userInfoPost(){
  248. if ($this->request->isPost()) {
  249. $data = $this->request->post();
  250. $data['birthday'] = strtotime($data['birthday']);
  251. $data['id'] = cmf_get_current_admin_id();
  252. $create_result = Db::name('user')->update($data);;
  253. if ($create_result !== false) {
  254. $this->success("保存成功!");
  255. } else {
  256. $this->error("保存失败!");
  257. }
  258. }
  259. }
  260. /**
  261. * 管理员删除
  262. * @adminMenu(
  263. * 'name' => '管理员删除',
  264. * 'parent' => 'index',
  265. * 'display'=> false,
  266. * 'hasView'=> false,
  267. * 'order' => 10000,
  268. * 'icon' => '',
  269. * 'remark' => '管理员删除',
  270. * 'param' => ''
  271. * )
  272. */
  273. public function delete(){
  274. $id = $this->request->param('id', 0, 'intval');
  275. if ($id == 1) {
  276. $this->error("最高管理员不能删除!");
  277. }
  278. if (Db::name('user')->delete($id) !== false) {
  279. Db::name("RoleUser")->where("user_id", $id)->delete();
  280. $this->success("删除成功!");
  281. } else {
  282. $this->error("删除失败!");
  283. }
  284. }
  285. /**
  286. * 停用管理员
  287. * @adminMenu(
  288. * 'name' => '停用管理员',
  289. * 'parent' => 'index',
  290. * 'display'=> false,
  291. * 'hasView'=> false,
  292. * 'order' => 10000,
  293. * 'icon' => '',
  294. * 'remark' => '停用管理员',
  295. * 'param' => ''
  296. * )
  297. */
  298. public function ban(){
  299. $id = $this->request->param('id', 0, 'intval');
  300. if (!empty($id)) {
  301. $result = Db::name('user')->where(["id" => $id, "user_type" => 1])->setField('user_status', '0');
  302. if ($result !== false) {
  303. $this->success("管理员停用成功!", url("user/index"));
  304. } else {
  305. $this->error('管理员停用失败!');
  306. }
  307. } else {
  308. $this->error('数据传入失败!');
  309. }
  310. }
  311. /**
  312. * 启用管理员
  313. * @adminMenu(
  314. * 'name' => '启用管理员',
  315. * 'parent' => 'index',
  316. * 'display'=> false,
  317. * 'hasView'=> false,
  318. * 'order' => 10000,
  319. * 'icon' => '',
  320. * 'remark' => '启用管理员',
  321. * 'param' => ''
  322. * )
  323. */
  324. public function cancelBan(){
  325. $id = $this->request->param('id', 0, 'intval');
  326. if (!empty($id)) {
  327. $result = Db::name('user')->where(["id" => $id, "user_type" => 1])->setField('user_status', '1');
  328. if ($result !== false) {
  329. $this->success("管理员启用成功!", url("user/index"));
  330. } else {
  331. $this->error('管理员启用失败!');
  332. }
  333. } else {
  334. $this->error('数据传入失败!');
  335. }
  336. }
  337. }