截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

User.php 5.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\basics\Api;
  4. use app\api\logic\UserLogic;
  5. use app\common\enum\NoticeEnum;
  6. use app\common\server\JsonServer;
  7. use app\api\validate\UpdateUserValidate;
  8. use app\api\validate\SetWechatUserValidate;
  9. use app\api\validate\WechatMobileValidate;
  10. use app\api\validate\ChangeMobileValidate;
  11. use think\exception\ValidateException;
  12. class User extends Api
  13. {
  14. /***
  15. * 个人中心
  16. */
  17. public function center()
  18. {
  19. $config = UserLogic::center($this->user_id);
  20. return JsonServer::success('', $config);
  21. }
  22. /**
  23. * 用户信息
  24. */
  25. public function info()
  26. {
  27. return JsonServer::success('', UserLogic::getUserInfo($this->user_id));
  28. }
  29. /**
  30. * Notes:设置用户信息
  31. */
  32. public function setInfo()
  33. {
  34. try{
  35. $post = $this->request->post();
  36. $post['user_id'] = $this->user_id;
  37. validate(UpdateUserValidate::class)->scene('set')->check($post);
  38. }catch(ValidateException $e) {
  39. return JsonServer::error($e->getError());
  40. }
  41. $result = UserLogic::setUserInfo($post);
  42. if($result === true) {
  43. return JsonServer::success('设置成功');
  44. }
  45. return JsonServer::error(UserLogic::getError());
  46. }
  47. /**
  48. * 财户流水
  49. */
  50. public function accountLog(){
  51. // 来源类型 1-余额 2-积分 3-成长值
  52. $source = $this->request->get('source', '');
  53. if(empty($source)) {
  54. return JsonServer::error('请传入来源类型');
  55. }
  56. // 变动类型
  57. $type = $this->request->get('type');
  58. $data = UserLogic::accountLog($this->user_id, $source,$type, $this->page_no, $this->page_size);
  59. return JsonServer::success('', $data);
  60. }
  61. /***
  62. * 会员中心 - 会员等级
  63. */
  64. public function getUserLevelInfo() {
  65. $data = UserLogic::getUserLevelInfo($this->user_id);
  66. return JsonServer::success('', $data);
  67. }
  68. /**
  69. * 成长值记录
  70. */
  71. public function getGrowthList()
  72. {
  73. $get = $this->request->get();
  74. $get['page_no'] = $this->page_no;
  75. $get['page_size'] = $this->page_size;
  76. $get['user_id'] = $this->user_id;
  77. $data = UserLogic::getGrowthList($get);
  78. return JsonServer::success('', $data);
  79. }
  80. /**
  81. * 我的钱包
  82. */
  83. public function myWallet(){
  84. $result = UserLogic::myWallet($this->user_id);
  85. if($result === false) {
  86. return JsonServer::error(UserLogic::getError());
  87. }
  88. return JsonServer::success('获取成功', $result);
  89. }
  90. /**
  91. * Notes: 更新微信的用户信息
  92. */
  93. public function setWechatInfo()
  94. {
  95. $data = $this->request->post();
  96. try{
  97. validate(SetWechatUserValidate::class)->check($data);
  98. }catch(ValidateException $e) {
  99. return JsonServer::error($e->getError());
  100. }
  101. $result = UserLogic::updateWechatInfo($this->user_id, $data);
  102. if($result === true) {
  103. return JsonServer::success('更新成功');
  104. }
  105. return JsonServer::error(UserLogic::getError());
  106. }
  107. //获取微信手机号
  108. public function getMobile()
  109. {
  110. try{
  111. $post = $this->request->post();
  112. $post['user_id'] = $this->user_id;
  113. validate(WechatMobileValidate::class)->check($post);
  114. }catch(ValidateException $e) {
  115. return JsonServer::error($e->getError());
  116. }
  117. $result = UserLogic::getMobileByMnp($post);
  118. if($result === false) {
  119. return JsonServer::error(UserLogic::getError());
  120. }
  121. return JsonServer::success('操作成功', [],1,1);
  122. }
  123. /**
  124. * Notes: 更换手机号 / 绑定手机号
  125. * @author 段誉(2021/6/23)
  126. * @return \think\response\Json
  127. */
  128. public function changeMobile()
  129. {
  130. $data = $this->request->post();
  131. $data['client'] = $this->client;
  132. $data['user_id'] = $this->user_id;
  133. if(isset($data['action']) && 'change' == $data['action']) {
  134. //变更手机号码
  135. $data['message_key'] = NoticeEnum::CHANGE_MOBILE_NOTICE;
  136. (new ChangeMobileValidate())->goCheck('', $data);
  137. } else {
  138. //绑定手机号码
  139. $data['message_key'] = NoticeEnum::BIND_MOBILE_NOTICE;
  140. (new ChangeMobileValidate())->goCheck('binding', $data);
  141. }
  142. $result = UserLogic::changeMobile($this->user_id, $data);
  143. if(false === $result) {
  144. return JsonServer::error(UserLogic::getError());
  145. }
  146. if(is_object($result)){
  147. $result = $result->toArray();
  148. }
  149. return JsonServer::success('操作成功',$result);
  150. }
  151. //我的粉丝
  152. public function fans()
  153. {
  154. $get = $this->request->get();
  155. $page = $this->request->get('page_no', $this->page_no);
  156. $size = $this->request->get('page_size', $this->page_size);
  157. return JsonServer::success('', UserLogic::fans($this->user_id, $get, $page, $size));
  158. }
  159. /**
  160. * @notes 用户聊天记录
  161. * @return \think\response\Json
  162. * @author 段誉
  163. * @date 2021/12/20 11:29
  164. */
  165. public function chatRecord()
  166. {
  167. $shop_id = $this->request->get('shop_id/d', 0);
  168. $result = UserLogic::getChatRecord($this->user_id, $shop_id, $this->page_no, $this->page_size);
  169. return JsonServer::success('', $result);
  170. }
  171. }