截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Account.php 8.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\api\controller;
  20. use app\api\logic\LoginLogic;
  21. use app\api\validate\WechatLoginValidate;
  22. use app\common\basics\Api;
  23. use app\common\enum\NoticeEnum;
  24. use app\common\server\JsonServer;
  25. use app\common\server\ConfigServer;
  26. use app\api\validate\RegisterValidate;
  27. use app\api\validate\LoginValidate;
  28. use think\exception\ValidateException;
  29. use app\api\validate\OaLoginValidate;
  30. class Account extends Api
  31. {
  32. public $like_not_need_login = ['silentLogin', 'authLogin', 'register', 'login','mnplogin', 'codeurl', 'oalogin', 'oplogin','logout','smslogin', 'uinAppLogin', 'silentLogin', 'authLogin', 'scanCode', 'scanLogin'];
  33. /**
  34. * 注册
  35. */
  36. public function register()
  37. {
  38. $post = $this->request->post();
  39. $post['check_code'] = ConfigServer::get('register', 'captcha', 0);
  40. $post['message_key'] = NoticeEnum::REGISTER_NOTICE;
  41. try{
  42. validate(RegisterValidate::class)->check($post);
  43. }catch(ValidateException $e) {
  44. return JsonServer::error($e->getError());
  45. }
  46. $result = LoginLogic::register($post);
  47. if($result !== false) {
  48. return JsonServer::success('注册成功', $result);
  49. }
  50. return JsonServer::error('注册失败:'.LoginLogic::getError());
  51. }
  52. /**
  53. * Notes: 小程序登录(旧系统用户,返回用户信息,否则返回空)
  54. * @author 段誉(2021/4/19 16:50)
  55. */
  56. public function silentLogin()
  57. {
  58. $post = $this->request->post();
  59. if (empty($post['code'])) {
  60. return JsonServer::error('参数缺失');
  61. }
  62. $data = LoginLogic::silentLogin($post);
  63. if(false === $data) {
  64. $error = LoginLogic::getError() ?? '登录失败';
  65. return JsonServer::error($error);
  66. }
  67. return JsonServer::success('', $data);
  68. }
  69. /**
  70. * Notes: 小程序登录(新用户登录->需要提交昵称和头像参数)
  71. * @author 段誉(2021/4/19 16:49)
  72. */
  73. public function authLogin()
  74. {
  75. $post = $this->request->post();
  76. if (empty($post['code']) || empty($post['nickname'])) {
  77. return JsonServer::error('参数缺失');
  78. }
  79. $data = LoginLogic::authLogin($post);
  80. if(false === $data) {
  81. $error = LoginLogic::getError() ?? '登录失败';
  82. return JsonServer::error($error);
  83. }
  84. return JsonServer::success('', $data);
  85. }
  86. /**
  87. * 手机号密码登录
  88. */
  89. public function login()
  90. {
  91. $post = $this->request->post();
  92. (new LoginValidate)->goCheck('mpLogin', $post);
  93. $data = LoginLogic::mpLogin($post);
  94. return JsonServer::success('登录成功',$data);
  95. }
  96. /**
  97. * showdoc
  98. * @catalog 接口/账号
  99. * @title 获取获取向微信请求code的链接
  100. * @description
  101. * @method get
  102. * @url /account/codeurl
  103. * @param url 必填 varchar 前端当前url
  104. * @return_param url string codeurl
  105. * @remark 这里是备注信息
  106. * @number 0
  107. * @return {"code":1,"msg":"获取成功","data":{"url":'http://mp.weixin……'}}
  108. */
  109. public function codeUrl()
  110. {
  111. $url = $this->request->get('url');
  112. return JsonServer::success('获取成功', ['url' => LoginLogic::codeUrl($url)]);
  113. }
  114. /**
  115. * showdoc
  116. * @catalog 接口/账号
  117. * @title 微信H5登录
  118. * @description 微信H5登录
  119. * @method post
  120. * @url /account/oalogin
  121. * @return {"code":1,"msg":"登录成功","data":["token":"3237676fa733d73333341",//登录令牌"nickname":"好象cms-小林",//昵称"avatar":"http://b2c.yixiangonline.com/uploads/user/avatar/3f102df244d5b40f21c4b25dc321c5ab.jpeg",//头像url"level":0,//等级],"show":0,"time":"0.775400"}
  122. * @param code 必填 string code
  123. * @return_param token string 登录令牌
  124. * @return_param nickname string 昵称
  125. * @return_param avatar string 头像
  126. * @remark
  127. * @number 1
  128. */
  129. public function oaLogin()
  130. {
  131. $post = $this->request->post();
  132. (new OaLoginValidate())->check($post);
  133. $data = LoginLogic::oaLogin($post);
  134. return JsonServer::success('登录成功', $data);
  135. }
  136. /**
  137. * Notes: uniapp微信登录
  138. */
  139. public function uinAppLogin()
  140. {
  141. $post = $this->request->post();
  142. $data = LoginLogic::uinAppLogin($post);
  143. if(is_string($data )){
  144. return JsonServer::error($data);
  145. }
  146. $data = [
  147. 'code' => 1,
  148. 'show' => 0,
  149. 'msg' => '登录成功',
  150. 'data' => $data
  151. ];
  152. return json($data);
  153. }
  154. /***
  155. * 短信登录
  156. * @return \think\response\Json
  157. */
  158. public function smsLogin()
  159. {
  160. $post = $this->request->post();
  161. (new LoginValidate())->goCheck('smsLogin');
  162. $data = LoginLogic::login($post);
  163. return JsonServer::success('登录成功', $data);
  164. }
  165. /***
  166. * 退出登录
  167. * @throws \think\Exception
  168. * @throws \think\db\exception\DataNotFoundException
  169. * @throws \think\db\exception\ModelNotFoundException
  170. * @throws \think\exception\DbException
  171. * @throws \think\exception\PDOException
  172. */
  173. public function logout()
  174. {
  175. LoginLogic::logout($this->user_id, $this->client);
  176. //退出登录只有成功
  177. return JsonServer::success();
  178. }
  179. /**
  180. * @notes 扫码登录
  181. * @return \think\response\Json
  182. * @author 段誉
  183. * @date 2021/10/29 11:50
  184. */
  185. public function scanCode()
  186. {
  187. $result = LoginLogic::scanCode();
  188. if (false === $result) {
  189. return JsonServer::error(LoginLogic::getError() ?? '未知错误');
  190. }
  191. return JsonServer::success('', ['url' => $result]);
  192. }
  193. /**
  194. * @notes PC端扫码登录
  195. * @return \think\response\Json
  196. * @author 段誉
  197. * @date 2021/10/29 18:00
  198. */
  199. public function scanLogin()
  200. {
  201. $params = $this->request->post();
  202. $result = LoginLogic::scanLogin($params);
  203. if (false === $result) {
  204. return JsonServer::error(LoginLogic::getError() ?? '未知错误');
  205. }
  206. return JsonServer::success('', $result);
  207. }
  208. /**
  209. * @notes 更新用户头像昵称
  210. * @throws \think\Exception
  211. * @throws \think\exception\PDOException
  212. * @author ljj
  213. * @date 2023/2/1 3:46 下午
  214. */
  215. public function updateUser()
  216. {
  217. $post = $this->request->post();
  218. if (!isset($post['avatar']) || empty($post['avatar'])) {
  219. JsonServer::error('参数缺失');
  220. }
  221. if (!isset($post['nickname']) || empty($post['nickname'])) {
  222. JsonServer::error('参数缺失');
  223. }
  224. LoginLogic::updateUser($post,$this->user_id);
  225. return JsonServer::success('操作成功');
  226. }
  227. /**
  228. * @notes 小程序绑定微信
  229. * @return mixed
  230. * @author lbzy
  231. * @datetime 2023-10-30 11:13:05
  232. */
  233. public function mnpAuthLogin()
  234. {
  235. $params = (new WechatLoginValidate())->goCheck("wechatAuth");
  236. $params['user_id'] = $this->user_id;
  237. $result = (new LoginLogic())->mnpAuthLogin($params);
  238. if ($result === false) {
  239. return JsonServer::error(LoginLogic::getError());
  240. }
  241. return JsonServer::success('绑定成功', [], 1, 1);
  242. }
  243. /**
  244. * @notes 公众号绑定微信
  245. * @return mixed
  246. * @author lbzy
  247. * @datetime 2023-10-30 11:12:59
  248. */
  249. public function oaAuthLogin()
  250. {
  251. $params = (new WechatLoginValidate())->goCheck("wechatAuth");
  252. $params['user_id'] = $this->user_id;
  253. $result = (new LoginLogic())->oaAuthLogin($params);
  254. if ($result === false) {
  255. return JsonServer::error(LoginLogic::getError());
  256. }
  257. return JsonServer::success('绑定成功', [], 1, 1);
  258. }
  259. }