User.php 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\model\Address;
  4. use app\api\model\Cashwechat;
  5. use app\api\model\Foot;
  6. use app\api\model\Realname;
  7. use app\api\model\Record;
  8. use app\api\model\UsersModel;
  9. use app\common\controller\Api;
  10. use app\common\library\Ems;
  11. use app\common\library\Sms;
  12. use fast\Random;
  13. use think\Cache;
  14. use think\Db;
  15. use think\Validate;
  16. /**
  17. * 会员接口
  18. */
  19. class User extends Api
  20. {
  21. protected $noNeedLogin = ['*'];
  22. protected $noNeedRight = '*';
  23. public function _initialize()
  24. {
  25. parent::_initialize();
  26. }
  27. /**
  28. * 用户显示
  29. * @ApiMethod (POST)
  30. * @param string $user_id 用户id
  31. */
  32. public function userInfo()
  33. {
  34. $user_id = $this->request->post('user_id');
  35. if (!isset($user_id)) {
  36. return $this->result('网络错误', [], 100);
  37. }
  38. $data = UsersModel::where('user_id', $user_id)->find();
  39. $data['daifahuo'] = 1;
  40. $data['daishouhuo'] = 1;
  41. if ($data) {
  42. return $this->result('', $data, 200);
  43. } else {
  44. return $this->result('未获取用户信息', [], 100);
  45. }
  46. }
  47. /**
  48. * 修改昵称
  49. * @ApiMethod (POST)
  50. * @param string $user_id 用户id
  51. * @param string $user_nickname 用户昵称
  52. */
  53. public function updNickName()
  54. {
  55. $params = $this->request->post();
  56. if (!isset($params['user_id']) || !isset($params['user_nickname'])) {
  57. return $this->result('网络错误', [], 100);
  58. }
  59. $data['user_nickname'] = $params['user_nickname'];
  60. $data['user_id'] = $params['user_id'];
  61. $selNickName = UsersModel::where($data)->find();
  62. if ($selNickName) {
  63. return $this->result('请输入新昵称', [], 100);
  64. }
  65. $userModel = new UsersModel();
  66. $updNickName = $userModel->allowField(true)->save($data, ['user_id' => $params['user_id']]);
  67. if ($updNickName) {
  68. return $this->result('修改成功', [], 200);
  69. } else {
  70. return $this->result('修改失败', [], 100);
  71. }
  72. }
  73. /**
  74. * 修改密码
  75. * @ApiMethod (POST)
  76. * @param string $user_id 用户id
  77. * @param string $user_pwd 用户密码
  78. * @param string $user_qrpwd 重复 密码
  79. */
  80. public function updPwd()
  81. {
  82. $params = $this->request->post();
  83. $rules = [
  84. 'user_id' => 'require|number',
  85. 'user_pwd' => 'require|max:18|min:6',
  86. 'user_qrpwd' => 'require',
  87. ];
  88. $msg = [
  89. 'user_id.require' => '用户id不能为空',
  90. 'user_id.number' => '用户i为整形',
  91. 'user_pwd.require' => '密码不能为空',
  92. 'user_pwd.max' => '密码最大18位',
  93. 'user_pwd.min' => '密码最小6位',
  94. 'user_qrpwd.require' => '重复密码不能为空',
  95. ];
  96. $validata = $this->validate($params, $rules, $msg);
  97. if (is_string($validata)) {
  98. return $this->result($validata, [], 100);
  99. }
  100. if ($params['user_pwd'] != $params['user_qrpwd']) {
  101. return $this->result('两次密码输入不一致', [], 100);
  102. }
  103. $data = array(
  104. 'user_id' => $params['user_id'],
  105. 'user_pwd' => sha1(md5($params['user_pwd'])),
  106. );
  107. $model = new UsersModel();
  108. $updPwd = $model->allowField(true)->save($data, ['user_id' => $data['user_id']]);
  109. if ($updPwd) {
  110. return $this->result('修改成功', [], 200);
  111. } else {
  112. return $this->result('修改失败', [], 100);
  113. }
  114. }
  115. /**
  116. * 修改支付密码
  117. * @ApiMethod (POST)
  118. * @param string $user_id 用户id
  119. * @param string $user_tel 手机号
  120. * @param string $code 验证码
  121. * @param string $user_paypwd 支付密码
  122. * @param string $user_qrpaypwd 确认支付密码
  123. */
  124. public function updPayPwd()
  125. {
  126. $params = $this->request->post();
  127. $rules = [
  128. 'user_tel' => "require|number",
  129. 'user_id' => "require|number",
  130. 'code' => "require",
  131. 'user_paypwd' => "require|number",
  132. 'user_qrpaypwd' => "require",
  133. ];
  134. $msg = [
  135. 'user_tel.require' => '手机号不能为空',
  136. 'user_id.require' => '网络错误',
  137. 'user_code.require' => '验证码不能为空',
  138. 'user_paypwd.require' => '支付密码不能为空',
  139. 'user_qrpaypwd.require' => '支付密码不能为空',
  140. 'user_paypwd.number' => '支付密码只支持数字',
  141. 'user_code.number' => '验证码只支持数字',
  142. 'user_id.number' => '网络错误',
  143. 'user_tel.number' => '手机号不合法',
  144. ];
  145. $validata = $this->validate($params, $rules, $msg);
  146. if (is_string($validata)) {
  147. return $this->result($validata, [], 100);
  148. }
  149. if ($params['user_paypwd'] != $params['user_qrpaypwd']) {
  150. return $this->result('两次密码输入不一致', [], 100);
  151. }
  152. $code = Cache::get($params['code']);
  153. if (!$code) {
  154. return $this->result('验证码错误', [], 100); // 验证验证码
  155. }
  156. $data = array(
  157. 'user_id' => $params['user_id'],
  158. 'user_paypwd' => $params['user_paypwd'],
  159. );
  160. $user = new UsersModel();
  161. $validataTel = $user->where('user_id', $data['user_id'])->where('user_tel', $params['user_tel'])->find();
  162. if (!$validataTel) {
  163. return $this->result('请使用此账号手机号修改密码', [], 100);
  164. }
  165. $validataPayPwd = $user->where($data)->find();
  166. if ($validataPayPwd) {
  167. return $this->result('请输入新密码', [], 100);
  168. }
  169. $updPayPwd = $user->allowField(true)->save($data, ['user_id' => $data['user_id']]);
  170. if ($updPayPwd) {
  171. Cache::rm($params['code']); // 删除缓存验证码
  172. return $this->result('修改成功', [], 200);
  173. } else {
  174. return $this->result('修改失败', [], 100);
  175. }
  176. }
  177. /**
  178. * 实名认证
  179. *
  180. * @ApiMethod (POST)
  181. * @param string $user_id 用户id
  182. * @param string $user_nickname 姓名
  183. * @param string $idcard 身份证号
  184. */
  185. public function realName()
  186. {
  187. $params = $this->request->post();
  188. $rules = [
  189. 'user_id' => 'require|number',
  190. 'user_nickname' => 'require',
  191. 'idcard' => 'require'
  192. ];
  193. $msg = [
  194. 'user_id.require' => '网络错误',
  195. 'user_nickname.require' => '姓名不能为空',
  196. 'idcard.require' => '身份证号不能为空',
  197. 'user_id.number' => '网络错误',
  198. ];
  199. $validata = $this->validate($params, $rules, $msg);
  200. if (is_string($validata)) {
  201. return $this->result($validata, [], 100);
  202. }
  203. $is_name = UsersModel::where('user_id', $params['user_id'])->where('is_realname', 1)->find();
  204. if ($is_name) {
  205. return $this->result('您已经实名认证过了', [], 100);
  206. }
  207. $realName = new Realname();
  208. $res = $realName->realName($params);
  209. return $res;
  210. }
  211. /**
  212. * 常见问题
  213. * @ApiMethod (POST)
  214. */
  215. public function question()
  216. {
  217. $data = Db::name('question')->find();
  218. if ($data) {
  219. return $this->result('', $data, 200);
  220. } else {
  221. return $this->result('', $data, 100);
  222. }
  223. }
  224. /**
  225. * 我的团队
  226. * @ApiMethod (POST)
  227. * @param string $user_id 用户id
  228. */
  229. public function team()
  230. {
  231. $user_id = $this->request->post('user_id');
  232. if (!$user_id) {
  233. return $this->result('网络错误', [], 100);
  234. }
  235. $user = UsersModel::where('user_id', $user_id)->find();
  236. if (!$user) {
  237. return $this->result('网络错误', [], 100);
  238. }
  239. $data['syj'] = UsersModel::where('user_tel', $user['user_tjtel'])->find();
  240. if (!$data['syj']) {
  241. $data['syj'] = [];
  242. }
  243. $data['team'] = UsersModel::where('user_tjtel', $user['user_tel'])->select();
  244. if (!$data['team']) {
  245. $data['team'] = [];
  246. }
  247. return $this->result('', $data, 200);
  248. }
  249. /**
  250. * 我的地址
  251. * @ApiMethod (POST)
  252. * @param string $user_id 用户id
  253. */
  254. public function address()
  255. {
  256. $user_id = $this->request->post('user_id');
  257. if (!isset($user_id)) {
  258. return $this->result('网络错误', [], 100);
  259. }
  260. $data = Address::where('user_id', $user_id)->select();
  261. if ($data) {
  262. return $this->result('', $data, 200);
  263. } else {
  264. return $this->result('暂无数据', [], 100);
  265. }
  266. }
  267. /**
  268. * 地址添加
  269. * @ApiMethod (POST)
  270. * @param string $user_id 用户id
  271. * @param string $a_name 姓名
  272. * @param string $a_tel 手机号
  273. * @param string $city 城市
  274. * @param string $area 详细地址
  275. * @param string $is_default 1默认0不默认
  276. */
  277. public function addressAdd()
  278. {
  279. $params = $this->request->post();
  280. $rules = [
  281. 'user_id' => 'require|number',
  282. 'a_name' => 'require',
  283. 'city' => 'require',
  284. 'area' => 'require',
  285. 'is_default' => 'require|number|max:1',
  286. ];
  287. $msg = [
  288. 'user_id.require' => '网络错误',
  289. 'a_name.require' => '姓名不能为空',
  290. 'city.require' => '地区不能为空',
  291. 'area.require' => '详细地址不能为空',
  292. 'is_default.require' => '网络错误',
  293. 'is_default.number' => '网络错误',
  294. 'is_default.max' => '网络错误',
  295. 'user_id.number' => '网络错误',
  296. ];
  297. $validata = $this->validate($params, $rules, $msg);
  298. if (is_string($validata)) {
  299. return $this->result($validata, [], 100);
  300. }
  301. if (isset($params['a_tel'])) {
  302. $check = '/^(1(([35789][0-9])|(47)))\d{8}$/';
  303. if (!preg_match($check, $params['a_tel'])) {
  304. return $this->result('手机号不合法', [], 100);
  305. }
  306. } else {
  307. return $this->result('手机号不能为空', [], 100);
  308. }
  309. $model = new Address();
  310. $addressAdd = $model->allowField(true)->save($params);
  311. if ($addressAdd) {
  312. return $this->result('添加成功', '', 200);
  313. } else {
  314. return $this->result('添加失败', '', 100);
  315. }
  316. }
  317. /**
  318. * 地址修改
  319. * @ApiMethod (POST)
  320. * @param string $a_id 地址id
  321. * @param string $a_name 姓名
  322. * @param string $a_tel 手机号
  323. * @param string $city 城市
  324. * @param string $area 详细地址
  325. * @param string $is_default 1默认0不默认
  326. */
  327. public function addressUpd()
  328. {
  329. $params = $this->request->post();
  330. $count = count($params);
  331. if ($count < 2) {
  332. return $this->result('请至少修改一项', [], 100);
  333. }
  334. if (!isset($params['a_id'])) {
  335. return $this->result('网络错误', [], 100);
  336. }
  337. $model = new Address();
  338. $addressUpd = $model->allowField(true)->save($params, ['a_id' => $params['a_id']]);
  339. if ($addressUpd) {
  340. return $this->result('修改成功', '', 200);
  341. } else {
  342. return $this->result('修改失败', '', 100);
  343. }
  344. }
  345. /**
  346. * 地址删除
  347. * @ApiMethod (POST)
  348. * @param string $a_id 地址id
  349. */
  350. public function addressDel()
  351. {
  352. $a_id = $this->request->post('a_id');
  353. if (!isset($a_id)) {
  354. return $this->result('网络错误', [], 100);
  355. }
  356. $model = new Address();
  357. $addressDel = $model->where('a_id', $a_id)->delete();
  358. if ($addressDel) {
  359. return $this->result('修改成功', '', 200);
  360. } else {
  361. return $this->result('修改失败', '', 100);
  362. }
  363. }
  364. /**
  365. * 我的客服
  366. * @ApiMethod (POST)
  367. */
  368. public function coursetomer()
  369. {
  370. $data = Db::name('coustomer')->select();
  371. if ($data) {
  372. return $this->result('', $data, 200);
  373. } else {
  374. return $this->result('暂无数据', [], 100);
  375. }
  376. }
  377. /**
  378. * 我的红豆
  379. * @ApiMethod (POST)
  380. * @param string $user_id 用户id
  381. */
  382. public function redbean()
  383. {
  384. $user_id = $this->request->post('user_id');
  385. if (!isset($user_id)) {
  386. return $this->result('网络错误', [], 100);
  387. }
  388. $redbean = UsersModel::where('user_id', $user_id)->field('user_id, user_redbean')->find();
  389. if ($redbean) {
  390. return $this->result('', $redbean, 200);
  391. } else {
  392. return $this->result('网络错误', [], 100);
  393. }
  394. }
  395. /**
  396. * 我的红豆
  397. * @ApiMethod (POST)
  398. * @param string $user_id 用户id
  399. * @param string $user_redbean 兑换个数
  400. */
  401. public function useRedBean()
  402. {
  403. $params = $this->request->post();
  404. if (!isset($params['user_id'])) {
  405. return $this->result('网络错误', [], 100);
  406. }
  407. if (!isset($params['user_redbean'])) {
  408. return $this->result('网络错误', [], 100);
  409. }
  410. $redbean = UsersModel::where('user_id', $params['user_id'])->field('user_id, user_redbean')->find();
  411. if ($params['user_redbean'] > $redbean['user_redbean'] || $params['user_redbean'] < 1) {
  412. return $this->result('提现个数错误', [], 100);
  413. }
  414. Db::startTrans();
  415. try {
  416. $upd = UsersModel::where('user_id', $params['user_id'])->setDec('user_redbean', $params['user(redbean']);
  417. Db::commit();
  418. } catch (\Exception $e) {
  419. Db::rollback();
  420. $data = array(
  421. 'user_id' => $params['user_id'],
  422. 't_type' => 1,
  423. 'state' => 2,
  424. 'number' => '-' . $params['user_id'],
  425. 'create_time' => date("Y-m-d H:i:s", time()),
  426. );
  427. $record = new Record();
  428. $recordadd = $record->allowField(true)->save($data);
  429. if ($recordadd) {
  430. return $this->result('兑换失败', '', 100);
  431. } else {
  432. return $this->result('网络错误', '', 100);
  433. }
  434. }
  435. if ($upd) {
  436. $data = array(
  437. 'user_id' => $params['user_id'],
  438. 't_type' => 1,
  439. 'state' => 1,
  440. 'number' => '-' . $params['user_id'],
  441. 'create_time' => date("Y-m-d H:i:s", time()),
  442. );
  443. $record = new Record();
  444. $recordadd = $record->allowField(true)->save($data);
  445. if ($recordadd) {
  446. return $this->result('兑换成功', '', 200);
  447. } else {
  448. return $this->result('网络错误', '', 100);
  449. }
  450. } else {
  451. return $this->result('网络错误', '', 100);
  452. }
  453. }
  454. /**
  455. * 我的红豆兑换记录
  456. * @ApiMethod (POST)
  457. * @param string $user_id 用户id
  458. */
  459. public function redbeanRecord()
  460. {
  461. $params = $this->request->post();
  462. if (!isset($params['user_id'])) {
  463. return $this->result('网络错误', [], 100);
  464. }
  465. $data = Record::where('user_id', $params['user_id'])->order('r_id desc')->select();
  466. if ($data) {
  467. return $this->result('', $data, 200);
  468. } else {
  469. return $this->result('暂无数据', [], 100);
  470. }
  471. }
  472. /**
  473. * 我的足迹显示
  474. * @ApiMethod (POST)
  475. * @param string $user_id 用户id
  476. */
  477. public function footIndex()
  478. {
  479. $params = $this->request->post();
  480. if (!isset($params['user_id'])) {
  481. return $this->result('网络错误', [], 100);
  482. }
  483. $data = Foot::with('commodity')
  484. ->where('user_id', $params['user_id'])
  485. ->select();
  486. if ($data) {
  487. return $this->result('', $data, 200);
  488. } else {
  489. return $this->result('暂无数据', '', 100);
  490. }
  491. }
  492. /**
  493. * 我的足迹删除
  494. * @ApiMethod (POST)
  495. * @param string $f_id 足迹id
  496. */
  497. public function footDel()
  498. {
  499. $params = $this->request->post();
  500. if (!isset($params['f_id'])) {
  501. return $this->result('网络错误', [], 100);
  502. }
  503. $footDel = Foot::where('f_id', $params['f_id'])->delete();
  504. if ($footDel) {
  505. return $this->result('删除成功', [], 200);
  506. } else {
  507. return $this->result('删除失败', [], 100);
  508. }
  509. }
  510. /**
  511. * 会员提现价格显示
  512. * @ApiMethod (POST)
  513. */
  514. public function cashMoney()
  515. {
  516. $data = Db::name('cash_money')->select();
  517. return $this->result('', $data, 200);
  518. }
  519. /**
  520. * 会员提现到第几次
  521. * @ApiMethod (POST)
  522. * @param string $user_id 用户id
  523. */
  524. public function cashIndex()
  525. {
  526. $params = $this->request->post();
  527. if (!isset($params['user_id'])) {
  528. return $this->result('网络错误', [], 100);
  529. }
  530. $data = UsersModel::Where('user_id', $params['user_id'])->field('user_id,cash_level')->find();
  531. if ($data) {
  532. return $this->result('', $data, 200);
  533. } else {
  534. return $this->result('网络错误', '', 100);
  535. }
  536. }
  537. /**
  538. * 会员提现
  539. * @ApiMethod (POST)
  540. * @param string $user_id 用户id
  541. * @param string $money 金额
  542. */
  543. public function cash()
  544. {
  545. $params = $this->request->post();
  546. $rules = [
  547. 'user_id' => 'require|number',
  548. 'money' => 'require|number',
  549. ];
  550. $msg = [
  551. 'user_id.require' => '网络错误',
  552. 'money.require' => '请选择提现金额',
  553. 'user_id.number' => '网络错误',
  554. 'money.number' => '网络错误',
  555. ];
  556. $validata = $this->validate($params,$rules,$msg);
  557. if (is_string($validata)) {
  558. return $this->result($validata,[],100);
  559. }
  560. if(!preg_match("/^[1-9][0-9]*$/" ,$params['money'])){
  561. return $this->result('请输入正整数',[],100);
  562. }
  563. // //检测提现金额表中是否有这个金额
  564. $is_money = Db::name('cash_money')->where('money',$params['money'])->find();
  565. // if (!$is_money) {
  566. // return $this->result('该金额暂不支持提现',[],100);
  567. // }
  568. // //判断是否该提现这个次数了
  569. $user_cash_level = UsersModel::where('user_id',$params['user_id'])->find();
  570. // if ($user_cash_level) {
  571. // if ($user_cash_level['cash_level'] + 1 != 9) { //最后一个不算
  572. // if($is_money['c_id'] != $user_cash_level['cash_level'] + 1) {
  573. // return $this->result('请按照顺序提现',[],100);
  574. // }
  575. // }
  576. // }
  577. if ($user_cash_level['user_money'] < $params['money']) {
  578. return $this->result('余额不足',[],100);
  579. }
  580. if ($user_cash_level['type'] != 1) {
  581. return $this->result('请先微信授权在提现',[],100);
  582. }
  583. Db::startTrans();
  584. try{
  585. $updMoney = UsersModel::where('user_id',$params['user_id'])->setDec('user_money',$params['money']);
  586. Db::commit();
  587. } catch (\Exception $e) {
  588. Db::rollback();
  589. return $this->result('网络错误,提现失败',[],100);
  590. }
  591. if ($updMoney) {
  592. $number = rand(100,999).time();
  593. $data = [
  594. 'user_id' => $params['user_id'],
  595. 'money' => $params['money'],
  596. 'state' => 1,
  597. 'create_time' => date('Y-m-d H:i:s',time()),
  598. 'number' => $number,
  599. ];
  600. $add_log = Db::name('cash_log')->insert($data);
  601. $cashWeChat = new Cashwechat();
  602. $res = $cashWeChat->sendMoney(1,"oRrdQt-L9A0WfDGT-nwHC24Er0tI",'余额提现',$user_cash_level['user_nickname'],$number);
  603. return $res;
  604. }
  605. }
  606. }