心理咨询网
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

UserController.php 7.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2017年4月3日
  7. * 用户控制器
  8. */
  9. namespace app\admin\controller\system;
  10. use core\basic\Controller;
  11. use app\admin\model\system\UserModel;
  12. class UserController extends Controller
  13. {
  14. private $model;
  15. public function __construct()
  16. {
  17. $this->model = new UserModel();
  18. }
  19. // 用户列表
  20. public function index()
  21. {
  22. $this->assign('list', true);
  23. if ((! ! $field = get('field', 'var')) && (! ! $keyword = get('keyword', 'vars'))) {
  24. $result = $this->model->findUser($field, $keyword);
  25. } else {
  26. $result = $this->model->getList();
  27. }
  28. $this->assign('users', $result);
  29. // 角色列表
  30. $role_model = model('admin.system.Role');
  31. $this->assign('roles', $role_model->getSelect());
  32. $this->display('system/user.html');
  33. }
  34. // 用户新增
  35. public function add()
  36. {
  37. if ($_POST) {
  38. // 获取数据
  39. $ucode = get_auto_code($this->model->getLastCode());
  40. $username = post('username');
  41. $realname = post('realname');
  42. $password = post('password');
  43. $rpassword = post('rpassword');
  44. $status = post('status', 'int');
  45. $roles = post('roles', 'array', true, '用户角色', array()); // 用户角色
  46. if (! $ucode) {
  47. alert_back('编码不能为空!');
  48. }
  49. if (! $username) {
  50. alert_back('用户名不能为空!');
  51. }
  52. if (! $realname) {
  53. alert_back('真实名字不能为空!');
  54. }
  55. if (! $password) {
  56. alert_back('密码不能为空!');
  57. }
  58. if (! $rpassword) {
  59. alert_back('确认密码不能为空!');
  60. }
  61. if ($password != $rpassword) {
  62. alert_back('确认密码不正确!');
  63. }
  64. if (! preg_match('/^[\x{4e00}-\x{9fa5}\w\-\.@]+$/u', $username)) {
  65. alert_back('用户名含有不允许的特殊字符!');
  66. }
  67. // 检查编码重复
  68. if ($this->model->checkUser("ucode='$ucode'")) {
  69. alert_back('该用户编号已经存在,不能再使用!');
  70. }
  71. // 检查用户名重复
  72. if ($this->model->checkUser("username='$username'")) {
  73. alert_back('该用户名已经存在,不能再使用!');
  74. }
  75. // 构建数据
  76. $data = array(
  77. 'ucode' => $ucode,
  78. 'username' => $username,
  79. 'realname' => $realname,
  80. 'password' => encrypt_string($password),
  81. 'status' => $status,
  82. 'login_count' => 0,
  83. 'last_login_ip' => 0,
  84. 'create_user' => session('username'),
  85. 'update_user' => session('username'),
  86. 'create_time' => get_datetime(),
  87. 'update_time' => '0000-00-00 00:00:00'
  88. );
  89. // 执行添加
  90. if ($this->model->addUser($data, $roles)) {
  91. $this->log('新增用户' . $ucode . '成功!');
  92. if (! ! $backurl = get('backurl')) {
  93. success('新增成功!', base64_decode($backurl));
  94. } else {
  95. success('新增成功!', url('/admin/User/index'));
  96. }
  97. } else {
  98. $this->log('新增用户' . $ucode . '失败!');
  99. error('新增失败', - 1);
  100. }
  101. }
  102. }
  103. // 用户删除
  104. public function del()
  105. {
  106. if (! $ucode = get('ucode', 'var')) {
  107. error('传递的参数值错误!', - 1);
  108. }
  109. if ($ucode == '10001') {
  110. error('内置管理员不允许删除!', - 1);
  111. }
  112. if ($this->model->delUser($ucode)) {
  113. $this->log('删除用户' . $ucode . '成功!');
  114. success('删除成功!', - 1);
  115. } else {
  116. $this->log('删除用户' . $ucode . '失败!');
  117. error('删除失败', - 1);
  118. }
  119. }
  120. // 用户修改
  121. public function mod()
  122. {
  123. if (! $ucode = get('ucode', 'var')) {
  124. error('传递的参数值错误!', - 1);
  125. }
  126. if ($ucode == '10001') {
  127. error('内置管理员不允许此操作!', - 1);
  128. }
  129. // 单独修改状态
  130. if (($field = get('field', 'var')) && ! is_null($value = get('value', 'var'))) {
  131. if ($this->model->modUser($ucode, "$field='$value',update_user='" . session('username') . "'")) {
  132. location(- 1);
  133. } else {
  134. alert_back('修改失败!');
  135. }
  136. }
  137. // 修改操作
  138. if ($_POST) {
  139. // 获取数据
  140. $username = post('username');
  141. $realname = post('realname');
  142. $password = post('password');
  143. $rpassword = post('rpassword');
  144. $status = post('status', 'int');
  145. $roles = post('roles', 'array', true, '用户角色', array()); // 用户角色
  146. if (! $username) {
  147. alert_back('用户名不能为空!');
  148. }
  149. if (! $realname) {
  150. alert_back('真实名字不能为空!');
  151. }
  152. if (! preg_match('/^[\x{4e00}-\x{9fa5}\w\-\.@]+$/u', $username)) {
  153. alert_back('用户名含有不允许的特殊字符!');
  154. }
  155. // 检查用户名重复
  156. if ($this->model->checkUser("username='$username' AND ucode<>'$ucode'")) {
  157. alert_back('该用户名已经存在,不能再使用!');
  158. }
  159. // 构建数据
  160. $data = array(
  161. 'username' => $username,
  162. 'realname' => $realname,
  163. 'status' => $status,
  164. 'update_user' => session('username')
  165. );
  166. if ($password) {
  167. if (! $rpassword) {
  168. alert_back('确认密码不能为空!');
  169. }
  170. if ($password != $rpassword) {
  171. alert_back('确认密码不正确!');
  172. }
  173. $data['password'] = encrypt_string($password);
  174. }
  175. // 执行添加
  176. if ($this->model->modUser($ucode, $data, $roles)) {
  177. $this->log('修改用户' . $ucode . '成功!');
  178. if (! ! $backurl = get('backurl')) {
  179. success('修改成功!', base64_decode($backurl));
  180. } else {
  181. success('修改成功!', url('/admin/User/index'));
  182. }
  183. } else {
  184. location(- 1);
  185. }
  186. } else { // 调取修改内容
  187. $this->assign('mod', true);
  188. $result = $this->model->getUser($ucode);
  189. if (! $result) {
  190. error('编辑的内容已经不存在!', - 1);
  191. }
  192. $this->assign('user', $result);
  193. // 角色列表
  194. $role_model = model('admin.system.Role');
  195. $this->assign('roles', $role_model->getSelect());
  196. $this->display('system/user.html');
  197. }
  198. }
  199. }