User.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. <?php
  2. namespace app\admin\controller\user;
  3. use AlibabaCloud\Client\Request\UserAgent;
  4. use AlibabaCloud\Ecs\V20140526\UnassignIpv6Addresses;
  5. use app\admin\model\UserRemarks;
  6. use app\common\controller\Backend;
  7. use app\common\library\Auth;
  8. use fast\Random;
  9. use think\Db;
  10. use think\exception\PDOException;
  11. use think\exception\ValidateException;
  12. use think\Validate;
  13. /**
  14. * 会员管理
  15. *
  16. * @icon fa fa-user
  17. */
  18. class User extends Backend
  19. {
  20. protected $relationSearch = true;
  21. protected $searchFields = 'id,username,nickname';
  22. /**
  23. * @var \app\admin\model\User
  24. */
  25. protected $model = null;
  26. public function _initialize()
  27. {
  28. parent::_initialize();
  29. $this->model = model('User');
  30. $this->view->assign("levelList", $this->model->getLevelList());
  31. $this->view->assign("bindRemarksList", $this->model->bindRemarksList());
  32. }
  33. /**
  34. * 查看
  35. */
  36. public function index()
  37. {
  38. //设置过滤方法
  39. $this->request->filter(['strip_tags', 'trim']);
  40. if ($this->request->isAjax()) {
  41. //如果发送的来源是Selectpage,则转发到Selectpage
  42. if ($this->request->request('keyField')) {
  43. return $this->selectpage();
  44. }
  45. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  46. $list = $this->model
  47. // ->with('group')
  48. ->with(['joinremarks1','joinremarks2','joinremarks3'])
  49. ->where($where)
  50. ->order($sort, $order)
  51. ->paginate($limit);
  52. // // 备注数据-- 不需要查询时
  53. // $remark_ids = [];
  54. // $user_remarks_list = UserRemarks::select();
  55. // foreach ($user_remarks_list as $vurl) {
  56. // $remark_ids[$vurl['id']] = $vurl['value'];
  57. // }
  58. foreach ($list as $k => $v) {
  59. $v->avatar = $v->avatar ? cdnurl($v->avatar, true) : letter_avatar($v->nickname);
  60. $v->hidden(['password', 'salt']);
  61. // for ($i = 1; $i <= 3; $i++) {
  62. // $column_remarks = "remarks" . $i;
  63. // if ($v->$column_remarks != 0 && $v->$column_remarks != "") {
  64. // $list[$k]->$column_remarks = $remark_ids[$v->$column_remarks];
  65. // }
  66. // }
  67. }
  68. $result = array("total" => $list->total(), "rows" => $list->items());
  69. return json($result);
  70. }
  71. return $this->view->fetch();
  72. }
  73. /**
  74. * 添加
  75. */
  76. public function add()
  77. {
  78. if ($this->request->isPost()) {
  79. $this->token();
  80. $params = $this->request->post("row/a");
  81. if ($params) {
  82. Db::startTrans();
  83. try {
  84. if (!Validate::is($params['password'], '\S{6,30}')) {
  85. exception(__("Please input correct password"));
  86. }
  87. $params['salt'] = Random::alnum();
  88. $params['password'] = md5(md5($params['password']) . $params['salt']);
  89. $params['avatar'] = '/assets/img/avatar.png'; //设置新管理员默认头像。
  90. $params['jointime'] = time();
  91. $params['status'] = 'normal';
  92. if ($params['level'] == 1) {
  93. $params['type'] = 1;
  94. } else if ($params['level'] == 2 || $params['level'] == 3) {
  95. $params['type'] = 2;
  96. }
  97. // 复制数据
  98. // if (isset($params['c_user_id'])){
  99. // $c_user_ids = explode(',', $params['c_user_id']);
  100. // unset($params['c_user_id']);
  101. // }
  102. //添加备注信息
  103. if ($params['type'] == 1) {
  104. // 商家备注:1=回收备注,2=餐具备注,3=商城备注
  105. for ($i = 1; $i <= 3; $i++) {
  106. $has_add_relations[$i] = false;
  107. $param_remarks = "remarks" . $i;
  108. if ($params[$param_remarks]) {
  109. $user_remarks = UserRemarks::where('value', $params[$param_remarks])->where('type', $i)->find();
  110. if (!empty($user_remarks)) {
  111. $params[$param_remarks] = $user_remarks->id;
  112. $has_add_relations[$i] = true; //原有备注,要查看B端账号,绑定
  113. } else {
  114. $user_remarks_insert = new UserRemarks;
  115. $user_remarks_insert->type = $i;
  116. $user_remarks_insert->value = $params[$param_remarks];
  117. $user_remarks_insert->save();
  118. // 获取自增ID
  119. $params[$param_remarks] = $user_remarks_insert->id;
  120. }
  121. }
  122. }
  123. }
  124. if ($params['type'] == 2 && $params['type_remarks'] != "" && $params['bind_remarks'] != "") {
  125. //查询绑定过商户 list 当前备注的商户
  126. $column_remarks = 'remarks' . $params['type_remarks'];
  127. $remarks_list_user = $this->model->where($column_remarks, $params['bind_remarks'])->select();
  128. //$remarks_list_user = $this->model->where(['type_remarks' => $params['type_remarks'], 'bind_remarks' => $params['bind_remarks']])->select();
  129. if (count($remarks_list_user) > 0) {
  130. foreach ($remarks_list_user as $v) {
  131. $c_user_ids[] = $v['id'];
  132. }
  133. }
  134. }
  135. $insert_user_id = model('user')->insert($params, false, true);
  136. // 添加关联关系 -- 添加回收员or配送员时
  137. if ($params['type'] == 2 && $params['type_remarks'] != "" && $params['bind_remarks'] != "") {
  138. // todo 服务关系是否之前存在过 ,状态:0=未服务,1=已服务,2=已注销
  139. // 直接绑定商户时
  140. if (count($c_user_ids) > 0) {
  141. foreach ($c_user_ids as $v) {
  142. $user_relations[] = [
  143. 'c_user_id' => $v,
  144. 'b_user_id' => $insert_user_id,
  145. 'b_level' => $params['level'],
  146. ];
  147. }
  148. model('user_relations')->insertAll($user_relations);
  149. }
  150. } elseif ($params['type'] == 1) {
  151. for ($i = 1; $i <= 3; $i++) {
  152. if ($has_add_relations[$i]) {
  153. $param_remarks = "remarks" . $i;
  154. // 添加商家时,查看回收员or配送员是否已绑定过该备注,绑定会员关系
  155. $user_b_list = $this->model->where(['type_remarks' => $i, 'bind_remarks' => $params[$param_remarks]])->order('id', 'desc')->select();
  156. if (count($user_b_list) > 0) {
  157. foreach ($user_b_list as $user_b) {
  158. $user_relations[] = [
  159. 'c_user_id' => $insert_user_id,
  160. 'b_user_id' => $user_b['id'],
  161. 'b_level' => $user_b['level'],
  162. ];
  163. }
  164. model('user_relations')->insertAll($user_relations);
  165. }
  166. }
  167. }
  168. }
  169. Db::commit();
  170. } catch (\Exception $e) {
  171. Db::rollback();
  172. $this->error($e->getMessage());
  173. }
  174. $this->success();
  175. }
  176. $this->error(__('Parameter %s can not be empty', ''));
  177. }
  178. return $this->view->fetch();
  179. }
  180. /**
  181. * 编辑
  182. */
  183. public function edit($ids = null)
  184. {
  185. if ($this->request->isPost()) {
  186. $this->token();
  187. }
  188. $row = $this->model->get($ids);
  189. if (!$row) {
  190. $this->error(__('No Results were found'));
  191. }
  192. $adminIds = $this->getDataLimitAdminIds();
  193. if (is_array($adminIds) && !in_array($row[$this->dataLimitField], $adminIds)) {
  194. $this->error(__('You have no permission'));
  195. }
  196. if (false === $this->request->isPost()) {
  197. $row['c_user_id'] = '';
  198. // 查询和商家的关联数据显示
  199. if ($row['type'] == 1) {
  200. // 商家备注:1=回收备注,2=餐具备注,3=商城备注
  201. for ($i = 1; $i <= 3; $i++) {
  202. $param_remarks = "remarks" . $i;
  203. if ($row[$param_remarks]) {
  204. $user_remarks = UserRemarks::where('id', $row[$param_remarks])->where('type', $i)->find();
  205. if (!empty($user_remarks)) {
  206. $row[$param_remarks] = $user_remarks->value;
  207. } else {
  208. $row[$param_remarks] = "";
  209. }
  210. }
  211. }
  212. }
  213. $row['user_remarks'] = [];
  214. if ($row['type'] == 2) {
  215. // 直接绑定时
  216. // $user_relations_list = model('user_relations')
  217. // ->field('c_user_id')
  218. // ->where(['b_user_id' => $row['id'], 'b_level' => $row['level']])
  219. // ->select();
  220. // $ids = [];
  221. // foreach ($user_relations_list as $v) {
  222. // $ids[] = $v['c_user_id'];
  223. // }
  224. //
  225. // $row['c_user_id'] = implode(',', $ids);
  226. // 绑定过商户的备注
  227. if ($row['type_remarks']) {
  228. $user_remarks_model = new UserRemarks();
  229. $row['user_remarks'] = $user_remarks_model->alias('remarks')->join('user u ', 'u.remarks' . $row['type_remarks'] . '=remarks.id')
  230. ->where(['remarks.type' => $row['type_remarks'], 'u.type' => 1])
  231. ->field('remarks.id,remarks.value,remarks.type')
  232. ->group('remarks.id')
  233. ->select();
  234. }
  235. }
  236. $this->view->assign('row', $row);
  237. return $this->view->fetch();
  238. }
  239. // 摘自 parent::edit($ids);
  240. $params = $this->request->post('row/a');
  241. if (empty($params)) {
  242. $this->error(__('Parameter %s can not be empty', ''));
  243. }
  244. $params = $this->preExcludeFields($params);
  245. $result = false;
  246. Db::startTrans();
  247. try {
  248. //是否采用模型验证
  249. if ($this->modelValidate) {
  250. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  251. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
  252. $row->validateFailException()->validate($validate);
  253. }
  254. $params_c_user_ids = $db_c_user_ids = [];
  255. if ($row['type'] == 2) {
  256. // 处理 c_user_id
  257. // $params_c_user_ids = explode(',', $params['c_user_id']);
  258. // unset($params['c_user_id']);
  259. //查询商户 list // 绑定过 当前备注的商户
  260. $column_remarks = 'remarks' . $params['type_remarks'];
  261. $remarks_list_user = $this->model->where($column_remarks, $params['bind_remarks'])->select();
  262. foreach ($remarks_list_user as $vrlu) {
  263. $params_c_user_ids[] = $vrlu['id'];
  264. }
  265. }
  266. //添加备注信息
  267. if ($row['type'] == 1) {
  268. // 商家备注:1=回收备注,2=餐具备注,3=商城备注
  269. for ($i = 1; $i <= 3; $i++) {
  270. $param_remarks = "remarks" . $i;
  271. $del_relations = false;
  272. if ($params[$param_remarks]) {
  273. $user_remarks = UserRemarks::where('value', $params[$param_remarks])->where('type', $i)->find();
  274. if (!empty($user_remarks)) {
  275. $params[$param_remarks] = $user_remarks->id;
  276. if ($params[$param_remarks] != $row[$param_remarks]) {
  277. // 原有绑定id变化--需要删除旧的C-B关系 && 绑定新关系
  278. $del_relations = true;
  279. // 绑定新关系
  280. $user_b_list = $this->model->where(['type_remarks' => $i, 'bind_remarks' => $params[$param_remarks]])->order('id', 'desc')->select();
  281. if (count($user_b_list) > 0) {
  282. foreach ($user_b_list as $user_b) {
  283. $user_relation[] = [
  284. 'c_user_id' => $row['id'],
  285. 'b_user_id' => $user_b['id'],
  286. 'b_level' => $user_b['level'],
  287. ];
  288. }
  289. model('user_relations')->insertAll($user_relation);
  290. }
  291. }
  292. } else {
  293. $user_remarks_insert = new UserRemarks;
  294. $user_remarks_insert->type = $i;
  295. $user_remarks_insert->value = $params[$param_remarks];
  296. $user_remarks_insert->save();
  297. // 获取自增ID
  298. $params[$param_remarks] = $user_remarks_insert->id;
  299. $del_relations = true;
  300. }
  301. }
  302. //删除旧关系
  303. $user_b_ids=[];
  304. if ($row[$param_remarks] != 0 && $del_relations) {
  305. $user_b = $this->model->where(['type_remarks' => $i, 'bind_remarks' => $row[$param_remarks]])->order('id', 'desc')->select();
  306. foreach ($user_b as $vub) {
  307. $user_b_ids[] = $vub['id'];
  308. }
  309. model('user_relations')->where('c_user_id', $row['id'])->whereIn('b_user_id', $user_b_ids)->delete();
  310. }
  311. }
  312. }
  313. $result = $row->allowField(true)->save($params);
  314. // 处理关系 b 端
  315. if ($row['type'] == 2) {
  316. // todo 服务关系是否之前存在过 ,状态:0=未服务,1=已服务,2=已注销
  317. // 查询当前关系
  318. $user_relations_list = model('user_relations')
  319. ->where(['b_user_id' => $row['id'], 'b_level' => $row['level']])
  320. ->select();
  321. foreach ($user_relations_list as $v) {
  322. $db_c_user_ids[] = $v['c_user_id'];
  323. }
  324. // 需要添加的关系
  325. $insert_c_user_ids = array_diff($params_c_user_ids, $db_c_user_ids);
  326. if (count($insert_c_user_ids) > 0) {
  327. foreach ($insert_c_user_ids as $v) {
  328. $user_relations[] = [
  329. 'c_user_id' => $v,
  330. 'b_user_id' => $row['id'],
  331. 'b_level' => $row['level'],
  332. ];
  333. }
  334. model('user_relations')->insertAll($user_relations);
  335. }
  336. // 需要删除的关系
  337. $delete_c_user_ids = array_diff($db_c_user_ids, $params_c_user_ids);
  338. if (count($delete_c_user_ids) > 0) {
  339. model('user_relations')
  340. ->where('c_user_id', 'in', $delete_c_user_ids)
  341. ->where('b_user_id', '=', $row['id'])
  342. ->where('b_level', '=', $row['level'])
  343. ->delete();
  344. }
  345. }
  346. Db::commit();
  347. } catch (ValidateException | PDOException | Exception $e) {
  348. Db::rollback();
  349. $this->error($e->getMessage());
  350. }
  351. if (false === $result) {
  352. $this->error(__('No rows were updated'));
  353. }
  354. $this->success();
  355. // return parent::edit($ids);
  356. }
  357. /**
  358. * 删除
  359. */
  360. public function del($ids = "")
  361. {
  362. if (!$this->request->isPost()) {
  363. $this->error(__("Invalid parameters"));
  364. }
  365. $ids = $ids ? $ids : $this->request->post("ids");
  366. $row = $this->model->get($ids);
  367. $this->modelValidate = true;
  368. if (!$row) {
  369. $this->error(__('No Results were found'));
  370. }
  371. Auth::instance()->delete($row['id']);
  372. $this->success();
  373. }
  374. public function reset_password()
  375. {
  376. $ids = $this->request->get("ids");
  377. $row = $this->model->get($ids);
  378. if (!$row) {
  379. $this->error(__('No Results were found'));
  380. }
  381. Db::startTrans();
  382. try {
  383. $password = $this->getEncryptPassword('123456', $row['salt']);
  384. Db::name('user')->where('id', $ids)->update(['password' => $password]);
  385. Db::commit();
  386. } catch (\Exception $e) {
  387. Db::rollback();
  388. $this->error($e->getMessage());
  389. }
  390. $this->success("重置成功");
  391. }
  392. public function getEncryptPassword($password, $salt = '')
  393. {
  394. return md5(md5($password) . $salt);
  395. }
  396. }