User.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\controller\admin\user;
  12. use app\common\AdminBaseController;
  13. use app\Request;
  14. use app\services\user\LoginServices;
  15. use app\services\user\UserGroupServices;
  16. use app\services\user\UserLevelServices;
  17. use app\services\user\UserServices;
  18. use app\services\user\UserSpreadServices;
  19. use app\services\user\UserWechatuserServices;
  20. use app\validate\admin\user\UserValidate;
  21. use qiniu\exceptions\AdminException;
  22. use think\db\exception\DataNotFoundException;
  23. use think\db\exception\DbException;
  24. use think\db\exception\ModelNotFoundException;
  25. class User extends AdminBaseController
  26. {
  27. /**
  28. * user constructor.
  29. * @param Request $request
  30. * @param UserServices $services
  31. */
  32. public function __construct(Request $request, UserServices $services)
  33. {
  34. parent::__construct($request);
  35. $this->service = $services;
  36. $this->searchable = [
  37. ['page', 1],
  38. ['limit', 20],
  39. ['nickname', ''],
  40. ['status', ''],
  41. ['is_promoter', ''],
  42. ['user_type', ''],
  43. ['country', ''],
  44. ['province', ''],
  45. ['city', ''],
  46. ['user_time_type', ''],
  47. ['user_time', ''],
  48. ['sex', ''],
  49. [['level', 0], 0],
  50. [['group_id', 'd'], 0],
  51. ['now_money', 'normal'],
  52. ['field_key', ''],
  53. ];
  54. }
  55. /**
  56. * 显示资源列表头部
  57. *
  58. * @return \think\Response
  59. */
  60. public function typeHeader()
  61. {
  62. $list = $this->service->typeHead();
  63. return $this->success(compact('list'));
  64. }
  65. /**
  66. * 显示资源列表
  67. *
  68. * @return \think\Response
  69. * @throws DataNotFoundException
  70. * @throws DbException
  71. * @throws ModelNotFoundException
  72. */
  73. public function index()
  74. {
  75. $where = $this->request->getMore($this->searchable);
  76. $where['user_time_type'] = $where['user_time_type'] == 'all' ? '' : $where['user_time_type'];
  77. return $this->success($this->service->userIndex($where));
  78. }
  79. /**
  80. * 后台添加用户
  81. *
  82. * @return \think\Response
  83. * @throws DataNotFoundException
  84. * @throws DbException
  85. * @throws ModelNotFoundException
  86. */
  87. public function save()
  88. {
  89. $data = $this->request->postMore([
  90. ['is_promoter', 0],
  91. ['real_name', ''],
  92. ['card_id', ''],
  93. ['birthday', ''],
  94. ['mark', ''],
  95. ['status', 1],
  96. ['level', 0],
  97. ['phone', 0],
  98. ['group_id', 0],
  99. ['pwd', ''],
  100. ['true_pwd', ''],
  101. ['trade_pwd', ''],
  102. ['true_trade_pwd', ''],
  103. ['sex', 0],
  104. ['provincials', ''],
  105. ['spread_uid', 0],
  106. ['province', 0],
  107. ['city', 0],
  108. ['area', 0],
  109. ['street', 0],
  110. ]);
  111. $this->validate(['pwd' => $data['pwd'], 'phone' => $data['phone']], new UserValidate());
  112. if ($this->service->be(['phone' => $data['phone']])) {
  113. return $this->error('手机号已经存在不能添加相同的手机号用户');
  114. }
  115. $data['nickname'] = app()->make(LoginServices::class)->getNickname();
  116. if ($data['card_id']) {
  117. if (!check_card($data['card_id'])) return $this->error('请输入正确的身份证号码');
  118. }
  119. if ($data['birthday']) {
  120. if (strtotime($data['birthday']) > time()) return $this->error('生日请选择今天之前日期');
  121. }
  122. if (!$data['true_pwd']) {
  123. return $this->error('请输入确认密码');
  124. }
  125. if ($data['pwd'] != $data['true_pwd']) {
  126. return $this->error('两次输入的密码不一致');
  127. }
  128. if (!check_password($data['pwd'])) {
  129. return $this->error('您设置的密码太过简单:至少6位,最多18位,包含大小写字母、数字和特殊字符');
  130. }
  131. [$data['pwd'], $data['salt']] = password($data['pwd']);
  132. unset($data['true_pwd']);
  133. if ($data['trade_pwd']) {
  134. if (!$data['true_trade_pwd']) {
  135. return $this->error('请确认交易密码');
  136. }
  137. if (!check_trade_password($data['trade_pwd'])) return $this->error('交易密码为6位数字');
  138. if ($data['trade_pwd'] != $data['true_trade_pwd']) {
  139. return $this->error('两次输入的交易密码不一致');
  140. }
  141. [$data['trade_pwd'], $data['trade_salt']] = password($data['trade_pwd']);
  142. unset($data['true_trade_pwd']);
  143. }
  144. $data['avatar'] = sys_config('h5_avatar');
  145. $data['admin_id'] = $this->adminId;
  146. $data['user_type'] = 'h5';
  147. $data['birthday'] = empty($data['birthday']) ? 0 : strtotime($data['birthday']);
  148. $data['add_time'] = time();
  149. $data['account'] = create_account();
  150. $spread_uid = $data['spread_uid'] ?? 0;
  151. unset($data['spread_uid']);
  152. $this->service->transaction(function () use ($data, $spread_uid) {
  153. $res = true;
  154. $userInfo = $this->service->create($data);
  155. if ($spread_uid > 0) {
  156. /** @var UserSpreadServices $spread */
  157. $spread = app()->make(UserSpreadServices::class);
  158. $spread->adminSetSpread($userInfo->uid, $spread_uid);
  159. }
  160. if ($data['level']) {
  161. $res = $this->service->saveGiveLevel((int)$userInfo->uid, (int)$data['level']);
  162. }
  163. if (!$res) {
  164. throw new AdminException('保存添加用户失败');
  165. }
  166. });
  167. return $this->success('添加成功');
  168. }
  169. /**
  170. * 执行赠送会员等级
  171. * @param $uid
  172. * @return mixed
  173. * @throws DbException
  174. */
  175. public function give_level($uid)
  176. {
  177. if (!$uid) return $this->error('缺少参数');
  178. [$level_id] = $this->request->postMore([
  179. ['level_id', 0],
  180. ], true);
  181. return $this->success($this->service->saveGiveLevel((int)$uid, (int)$level_id) ? '赠送成功' : '赠送失败');
  182. }
  183. /**
  184. * 清除会员等级
  185. * @param $uid
  186. * @return mixed
  187. */
  188. public function del_level($uid)
  189. {
  190. if (!$uid) return $this->error('缺少参数');
  191. return $this->success($this->service->cleanUpLevel((int)$uid) ? '清除成功' : '清除失败');
  192. }
  193. /**
  194. * 保存会员分组
  195. * @return mixed
  196. * @throws DataNotFoundException
  197. * @throws DbException
  198. * @throws ModelNotFoundException
  199. */
  200. public function set_group()
  201. {
  202. [$group_id, $uids, $all, $where] = $this->request->postMore([
  203. ['group_id', 0],
  204. ['uids', ''],
  205. ['all', 0],
  206. ['where', []],
  207. ], true);
  208. if (!$uids && $all == 0) return $this->error('缺少参数');
  209. if (!$group_id) return $this->error('请选择分组');
  210. if ($all == 0) {
  211. $uids = explode(',', $uids);
  212. }
  213. if ($all == 1) {
  214. $where = is_array($where) ? $where : json_decode($where, true);
  215. /** @var UserWechatuserServices $userWechatUser */
  216. $userWechatUser = app()->make(UserWechatuserServices::class);
  217. $fields = 'u.uid';
  218. [$list, $count] = $userWechatUser->getWhereUserList($where, $fields);
  219. $uids = array_unique(array_column($list, 'uid'));
  220. }
  221. /** @var UserGroupServices $userGroup */
  222. $userGroup = app()->make(UserGroupServices::class);
  223. if (!$userGroup->get($group_id)) {
  224. return $this->error('该分组不存在');
  225. }
  226. $this->service->setUserGroup($uids, $group_id);
  227. return $this->success('已设置用户分组!');
  228. }
  229. /**
  230. * 执行编辑其他
  231. * @param $uid
  232. * @return mixed
  233. */
  234. public function updateAccount($uid)
  235. {
  236. if (!$uid) return $this->error('数据不存在');
  237. list($money_type, $pm, $num, $mark) = $this->request->postMore([
  238. ['money_type', ''],
  239. ['pm', 1],
  240. ['num', 0],
  241. ['mark', '']
  242. ], true);
  243. if (!$money_type) return $this->error('请选择要操作的字段');
  244. if ($num <= 0) return $this->error('请输入要操作的金额');
  245. return $this->success($this->service->updateAccount($uid, $money_type, $pm, $num, $mark, $this->adminId) ? '修改成功' : '修改失败');
  246. }
  247. /**
  248. * 修改user表状态
  249. *
  250. * @return array
  251. */
  252. public function set_status($status, $uid)
  253. {
  254. if ($status == '' || $uid == 0) return $this->error('参数错误');
  255. $this->service->update($uid, ['status' => $status], 'uid');
  256. return $this->success($status == 0 ? '禁用成功' : '解禁成功');
  257. }
  258. /**
  259. * @param $id
  260. * @return mixed
  261. * @throws DataNotFoundException
  262. * @throws DbException
  263. * @throws ModelNotFoundException
  264. */
  265. public function update($id)
  266. {
  267. $data = $this->request->postMore([
  268. ['is_promoter', -1],
  269. ['real_name', ''],
  270. ['card_id', ''],
  271. ['birthday', ''],
  272. ['mark', ''],
  273. ['status', 0],
  274. ['level', 0],
  275. ['phone', 0],
  276. ['group_id', 0],
  277. ['pwd', ''],
  278. ['true_pwd'],
  279. ['trade_pwd', ''],
  280. ['true_trade_pwd', ''],
  281. ['sex', 0],
  282. ['provincials', ''],
  283. ['province', 0],
  284. ['city', 0],
  285. ['area', 0],
  286. ['street', 0],
  287. ['spread_uid', -1],
  288. ]);
  289. if ($data['phone']) {
  290. if (!check_phone($data['phone'])) return $this->error('手机号码格式不正确');
  291. }
  292. if ($data['card_id']) {
  293. if (!check_card($data['card_id'])) return $this->error('请输入正确的身份证');
  294. }
  295. if ($data['birthday']) {
  296. if (strtotime($data['birthday']) > time()) return $this->error('生日请选择今天之前日期');
  297. }
  298. if ($data['pwd']) {
  299. if (!$data['true_pwd']) {
  300. return $this->error('请输入确认密码');
  301. }
  302. if ($data['pwd'] != $data['true_pwd']) {
  303. return $this->error('两次输入的密码不一致');
  304. }
  305. if (!check_password($data['pwd'])) {
  306. return $this->error('您设置的密码太过简单:至少6位,最多18位,包含大小写字母、数字和特殊字符');
  307. }
  308. $this->validate(['pwd' => $data['pwd'], 'phone' => $data['phone']], app()->make(UserValidate::class));
  309. [$data['pwd'], $data['salt']] = password($data['pwd']);
  310. } else {
  311. unset($data['pwd']);
  312. }
  313. unset($data['true_pwd']);
  314. if ($data['trade_pwd']) {
  315. if (!$data['true_trade_pwd']) {
  316. return $this->error('请确认交易密码');
  317. }
  318. if (!check_trade_password($data['trade_pwd'])) return $this->error('交易密码为6位数字');
  319. if ($data['trade_pwd'] != $data['true_trade_pwd']) {
  320. return $this->error('两次输入的交易密码不一致');
  321. }
  322. [$data['trade_pwd'], $data['trade_salt']] = password($data['trade_pwd']);
  323. } else {
  324. unset($data['trade_pwd']);
  325. }
  326. unset($data['true_trade_pwd']);
  327. $userInfo = $this->service->get($id);
  328. if (!$userInfo) {
  329. return $this->error('用户不存在');
  330. }
  331. if ($data['spread_uid'] > 0 && $data['spread_uid'] != $userInfo['spread_uid']) {
  332. $spreadUid = $data['spread_uid'];
  333. if ($id == $spreadUid) {
  334. return $this->error('上级推广人不能为自己');
  335. }
  336. if (!$this->service->be(['uid' => $spreadUid])) {
  337. return $this->error('上级用户不存在');
  338. }
  339. $spreadInfo = $this->service->get($spreadUid);
  340. if ($spreadInfo->spread_uid == $id) {
  341. return $this->error('上级推广人不能为自己下级');
  342. }
  343. }
  344. if (!$id) return $this->error('数据不存在');
  345. $data['admin_id'] = $this->adminId;
  346. $res = $this->service->updateInfo((int)$id, $data);
  347. if ($res) {
  348. $userInfo = $this->service->get($id);
  349. /** @var UserLevelServices $levelServices */
  350. $levelServices = app()->make(UserLevelServices::class);
  351. $levelServices->detection((int)$userInfo['uid']);
  352. }
  353. return $this->success($res ? '修改成功' : '修改失败');
  354. }
  355. /**
  356. * 获取单个用户信息
  357. * @param int $id 用户id
  358. * @return mixed
  359. */
  360. public function oneUserInfo($type, int $id)
  361. {
  362. $data = $this->request->get();
  363. if (!$type) return $this->error('缺少参数');
  364. return $this->success($this->service->oneUserInfo($id, $type, $data));
  365. }
  366. /**
  367. * 同步微信粉丝用户
  368. * @return mixed
  369. */
  370. public function syncWechatUsers()
  371. {
  372. $this->service->syncWechatUsers();
  373. return $this->success('加入消息队列成功,正在异步执行中');
  374. }
  375. /**
  376. * 用户注销
  377. * @return mixed
  378. */
  379. public function delete($id)
  380. {
  381. if (!$id) return $this->error('用户不存在');
  382. event('user.cancelUser', [$id]);
  383. return $this->success('注销成功');
  384. }
  385. }