User.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\library\Ems;
  5. use app\common\library\Sms;
  6. use app\common\library\WxPublic;
  7. use app\common\model\Area;
  8. use app\common\model\Guest;
  9. use app\common\model\User as U;
  10. use app\common\model\UserSign;
  11. use app\common\service\ScoreSend;
  12. use app\service\byte_dance\ByteDanceCode2Session;
  13. use app\service\byte_dance\ByteDanceDecrypt;
  14. use EasyWeChat\Kernel\Exceptions\DecryptException;
  15. use EasyWeChat\Kernel\Exceptions\InvalidConfigException;
  16. use fast\Mini;
  17. use fast\Random;
  18. use think\Config;
  19. use think\Db;
  20. use think\Log;
  21. use think\Validate;
  22. use app\common\model\User as UserModel;
  23. use app\service\byte_dance\ByteDance;
  24. /**
  25. * 会员接口
  26. */
  27. class User extends Api
  28. {
  29. protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'third','userminilogin','minilogin','wxp','dy_login','dy_loginn'];
  30. protected $noNeedRight='*';
  31. public function _initialize()
  32. {
  33. parent::_initialize();
  34. if (!Config::get('fastadmin.usercenter')) {
  35. $this->error(__('User center already closed'));
  36. }
  37. }
  38. /**
  39. * 会员信息
  40. * @ApiReturnParams (name=id,description=用户ID)
  41. * @ApiReturnParams (name=username,description=用户名)
  42. * @ApiReturnParams (name=nickname,description=昵称)
  43. * @ApiReturnParams (name=mobile,description=手机号)
  44. * @ApiReturnParams (name=avatar,description=头像)
  45. * @ApiReturnParams (name=age,description=年龄)
  46. * @ApiReturnParams (name=gender,description="性别1男2女")
  47. * @ApiReturnParams (name=level_text,description=会员级别标题)
  48. * @ApiReturnParams (name=level,description="会员级别,0游客10安检员20正式会员")
  49. * @ApiReturnParams (name=money,description=余额)
  50. * @ApiReturnParams (name=has_follow,description=是否关注)
  51. * @ApiReturnParams (name=verification,description=认证信息)
  52. * @ApiReturnParams (name=province,description=省对象)
  53. * @ApiReturnParams (name=city,description=市对象)
  54. * @ApiReturnParams (name=county,description=县对象)
  55. * @ApiReturnParams (name=wenda_num,description=问答记录数量)
  56. * @ApiReturnParams (name=follow_count,description=关注数量)
  57. * @ApiReturnParams (name=has_answered,description=是否已答过题)
  58. * @ApiReturnParams (name=userinfo[custom][key],description=自定义资料key)
  59. * @ApiReturnParams (name=userinfo[custom][title],description=自定义资料名称)
  60. * @ApiReturnParams (name=userinfo[custom][value],description=自定义资料值)
  61. */
  62. public function index()
  63. {
  64. $user=$this->auth->getUser();
  65. if(!$user['userinfo']){
  66. $user->userinfo()->save([]);
  67. }
  68. $this->success('', $user);
  69. }
  70. /**
  71. * 会员登录
  72. *
  73. * @ApiMethod (POST)
  74. * @param string $account 账号
  75. * @param string $password 密码
  76. */
  77. public function login()
  78. {
  79. $account = $this->request->post('account');
  80. $password = $this->request->post('password');
  81. if (!$account || !$password) {
  82. $this->error(__('Invalid parameters'));
  83. }
  84. $ret = $this->auth->login($account, $password);
  85. if ($ret) {
  86. $data = ['userinfo' => $this->auth->getUserinfo()];
  87. $this->success(__('Logged in successful'), $data);
  88. } else {
  89. $this->error($this->auth->getError());
  90. }
  91. }
  92. /**
  93. * 手机验证码登录
  94. *
  95. * @ApiMethod (POST)
  96. * @param string $mobile 手机号
  97. * @param string $captcha 验证码
  98. */
  99. public function mobilelogin()
  100. {
  101. $mobile = $this->request->post('mobile');
  102. $captcha = $this->request->post('captcha');
  103. if (!$mobile || !$captcha) {
  104. $this->error(__('Invalid parameters'));
  105. }
  106. if (!Validate::regex($mobile, "^1\d{10}$")) {
  107. $this->error(__('Mobile is incorrect'));
  108. }
  109. if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
  110. $this->error(__('Captcha is incorrect'));
  111. }
  112. $user = UserModel::getByMobile($mobile);
  113. if ($user) {
  114. if ($user->status != 'normal') {
  115. $this->error(__('Account is locked'));
  116. }
  117. //如果已经有账号则直接登录
  118. $ret = $this->auth->direct($user->id);
  119. } else {
  120. $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, []);
  121. }
  122. if ($ret) {
  123. Sms::flush($mobile, 'mobilelogin');
  124. $data = ['userinfo' => $this->auth->getUserinfo()];
  125. $this->success(__('Logged in successful'), $data);
  126. } else {
  127. $this->error($this->auth->getError());
  128. }
  129. }
  130. /**
  131. * 注册会员
  132. *
  133. * @ApiMethod (POST)
  134. * @ApiParams (name=username,description="用户名")
  135. * @ApiParams (name=password,description="密码")
  136. * @ApiParams (name=email,description="邮箱")
  137. * @ApiParams (name=mobile,description="手机号")
  138. * @ApiParams (name=code,description="验证码")
  139. */
  140. public function register()
  141. {
  142. $username = $this->request->post('username');
  143. $password = $this->request->post('password');
  144. $email = $this->request->post('email');
  145. $mobile = $this->request->post('mobile');
  146. $code = $this->request->post('code');
  147. if (!$username || !$password) {
  148. $this->error(__('Invalid parameters'));
  149. }
  150. if ($email && !Validate::is($email, "email")) {
  151. $this->error(__('Email is incorrect'));
  152. }
  153. if ($mobile && !Validate::regex($mobile, "^1\d{10}$")) {
  154. $this->error(__('Mobile is incorrect'));
  155. }
  156. $ret = Sms::check($mobile, $code, 'register');
  157. if (!$ret) {
  158. $this->error(__('Captcha is incorrect'));
  159. }
  160. $ret = $this->auth->register($username, $password, $email, $mobile);
  161. if ($ret) {
  162. $data = ['userinfo' => $this->auth->getUserinfo()];
  163. $this->success(__('Sign up successful'), $data);
  164. } else {
  165. $this->error($this->auth->getError());
  166. }
  167. }
  168. /**
  169. * 修改会员个人信息
  170. *
  171. * @ApiMethod (POST)
  172. * @ApiParams (name=avatar,description=头像地址)
  173. * @ApiParams (name=nickname,description=昵称)
  174. * @ApiParams (name=bio,description=个人简介)
  175. * @ApiParams (name=age,description=年龄)
  176. * @ApiParams (name=gender,description="性别1男2女")
  177. * @ApiParams (name=county_id,description=区县ID)
  178. * @ApiParams (name="custom[xxxx]",description="自定义资料放这里")
  179. * @ApiReturnParams (name=score,description="赠送的积分数量")
  180. */
  181. public function profile(ScoreSend $score)
  182. {
  183. $data=$this->_validate([
  184. 'avatar|头像'=>['require','url'],
  185. 'nickname|昵称'=>['require','max:12'],
  186. 'age|年龄'=>['require','integer','gt:0'],
  187. //'county_id|地区'=>['require','integer','gt:0'],
  188. 'county_id|地区'=>['require'],
  189. 'gender|性别'=>['require','integer','in:1,2'],
  190. 'bio|性别'=>['max:100'],
  191. ]);
  192. $user = $this->auth->getUser();
  193. Db::startTrans();
  194. $user= UserModel::lock(true)->find($user->id);
  195. $nickname = $data['nickname']??'';
  196. $bio = $data['bio'];
  197. $avatar = $data['avatar']??'';
  198. if ($nickname) {
  199. /*$exists = UserModel::where('nickname', $nickname)->where('id', '<>', $this->auth->id)->find();
  200. if ($exists) {
  201. $this->error(__('Nickname already exists'));
  202. }*/
  203. $user->nickname = $nickname;
  204. }
  205. if($bio) {
  206. $user->bio = $bio;
  207. }
  208. if($avatar) {
  209. $user->avatar = $avatar;
  210. }
  211. if(!empty($data['age'])){
  212. $user->age=$data['age'];
  213. }
  214. if(isset($data['gender'])){
  215. $user->gender=$data['gender'];
  216. }
  217. if(!empty($data['county_id'])){
  218. $county=Area::area()->where('name|shortname',$data['county_id'])->find();
  219. if(!$county) {
  220. $this->error('地区不存在');
  221. }
  222. $user->county_id=$county['id'];
  223. $user->city_id=$county['pid'];
  224. $user->province_id=Area::where('id',$county['pid'])->value('pid');
  225. }
  226. $user->save();
  227. $custom=array_column($user->userinfo->custom,'value','key');
  228. foreach (config('site.userApprove')?:[] as $key=>$value){
  229. if(!empty($data['custom'][$key])){
  230. $custom[$key]=$data['custom'][$key];
  231. }
  232. }
  233. if($custom) {
  234. $user->userinfo->save(['custom' => $custom]);
  235. }
  236. $scoreNum=$score->setUser($user)->setField('score')->setMemo('完善资料')->setConfig('score_editInfo')->onlyOne();
  237. Db::commit();
  238. $this->success('',[
  239. 'score'=>$scoreNum,
  240. ]);
  241. }
  242. /**
  243. * 抖音小程序登陆
  244. * @ApiParams (name=code,description=code)
  245. * @ApiParams (name=encryptedData,description=encryptedData)
  246. * @ApiParams (name=iv,description=iv)
  247. */
  248. public function dy_login_bak(){
  249. $data=$this->_validate([
  250. 'code'=>['require'],
  251. 'encryptedData'=>['require'],
  252. 'iv'=>['require'],
  253. ]);
  254. $code2Session=new ByteDanceCode2Session();
  255. $byteDanceDecrypt=new ByteDanceDecrypt();
  256. $info=$code2Session->setCode($data['code'])->get();
  257. $byteDanceDecrypt->setEncryptedData($data['encryptedData']);
  258. $byteDanceDecrypt->setIv($data['iv']);
  259. $byteDanceDecrypt->setSessionKey($info['session_key']);
  260. $mobileInfo=$byteDanceDecrypt->get();
  261. Db::startTrans();
  262. $user= UserModel::where('openid',$info['openid'])->find();
  263. if($user){
  264. $this->auth->direct($user['id']);
  265. }else{
  266. $this->auth->register(session_create_id(),'',null, $mobileInfo['phoneNumber']??null,[
  267. 'openid'=>$info['openid'],
  268. 'unionid'=>$info['unionid'],
  269. 'avatar'=>$mobileInfo['avatarUrl'],
  270. 'nickname'=>$mobileInfo['nickName'],
  271. ]);
  272. }
  273. $data = ['userinfo' => $this->auth->getUserinfo()];
  274. Db::commit();
  275. $this->success(__('Logged in successful'), $data);
  276. }
  277. /**
  278. * 抖音小程序登陆
  279. * @ApiParams (name=code,description=code)
  280. * @ApiParams (name=encryptedData,description=encryptedData)
  281. * @ApiParams (name=iv,description=iv)
  282. */
  283. public function dy_login(){
  284. $data=$this->_validate([
  285. 'code'=>['require'],
  286. 'encryptedData'=>['require'],
  287. 'iv'=>['require'],
  288. ]);
  289. $appid = $this->request->get('appid');
  290. $code2Session = new ByteDanceCode2Session();
  291. $byteDanceDecrypt = new ByteDanceDecrypt();
  292. if($appid == ByteDance::appIdTwo()){
  293. $info = $code2Session->setCodeTwo($data['code'])->getTwo();
  294. // echo 123;
  295. // exit();
  296. $byteDanceDecrypt->setEncryptedData($data['encryptedData']);
  297. $byteDanceDecrypt->setIv($data['iv']);
  298. $byteDanceDecrypt->setSessionKey($info['session_key']);
  299. $mobileInfo = $byteDanceDecrypt->get();
  300. Db::startTrans();
  301. $user = UserModel::where('openid', $info['openid'])->find();
  302. if ($user) {
  303. $this->auth->direct($user['id']);
  304. } else {
  305. $this->auth->register(session_create_id(), '', null, $mobileInfo['phoneNumber'] ?? null, [
  306. 'openid' => $info['openid'],
  307. 'unionid' => $info['unionid'],
  308. 'avatar' => $mobileInfo['avatarUrl'],
  309. 'nickname' => $mobileInfo['nickName'],
  310. ]);
  311. }
  312. Db::commit();
  313. $data = ['userinfo' => $this->auth->getUserinfo()];
  314. $this->success(__('Logged in successful'), $data);
  315. } else if ($appid == ByteDance::appIdThree()){
  316. $info = $code2Session->setCodeThree($data['code'])->getThree();
  317. // echo 123;
  318. // exit();
  319. $byteDanceDecrypt->setEncryptedData($data['encryptedData']);
  320. $byteDanceDecrypt->setIv($data['iv']);
  321. $byteDanceDecrypt->setSessionKey($info['session_key']);
  322. $mobileInfo = $byteDanceDecrypt->get();
  323. Db::startTrans();
  324. $user = UserModel::where('openid', $info['openid'])->find();
  325. if ($user) {
  326. $this->auth->direct($user['id']);
  327. } else {
  328. $this->auth->register(session_create_id(), '', null, $mobileInfo['phoneNumber'] ?? null, [
  329. 'openid' => $info['openid'],
  330. 'unionid' => $info['unionid'],
  331. 'avatar' => $mobileInfo['avatarUrl'],
  332. 'nickname' => $mobileInfo['nickName'],
  333. ]);
  334. }
  335. Db::commit();
  336. $data = ['userinfo' => $this->auth->getUserinfo()];
  337. $this->success(__('Logged in successful'), $data);
  338. } else {
  339. $info = $code2Session->setCode($data['code'])->get();
  340. $byteDanceDecrypt->setEncryptedData($data['encryptedData']);
  341. $byteDanceDecrypt->setIv($data['iv']);
  342. $byteDanceDecrypt->setSessionKey($info['session_key']);
  343. $mobileInfo = $byteDanceDecrypt->get();
  344. Db::startTrans();
  345. $user = UserModel::where('openid', $info['openid'])->find();
  346. if ($user) {
  347. $this->auth->direct($user['id']);
  348. } else {
  349. $this->auth->register(session_create_id(), '', null, $mobileInfo['phoneNumber'] ?? null, [
  350. 'openid' => $info['openid'],
  351. 'unionid' => $info['unionid'],
  352. 'avatar' => $mobileInfo['avatarUrl'],
  353. 'nickname' => $mobileInfo['nickName'],
  354. ]);
  355. }
  356. $data = ['userinfo' => $this->auth->getUserinfo()];
  357. Db::commit();
  358. $this->success(__('Logged in successful'), $data);
  359. }
  360. }
  361. /**
  362. * 抖音小程序登陆
  363. * @ApiParams (name=code,description=code)
  364. * @ApiParams (name=encryptedData,description=encryptedData)
  365. * @ApiParams (name=iv,description=iv)
  366. */
  367. public function dy_loginn(){
  368. $data=$this->_validate([
  369. 'code'=>['require'],
  370. 'encryptedData'=>['require'],
  371. 'iv'=>['require'],
  372. ]);
  373. $appid = $this->request->get('appid');
  374. $code2Session = new ByteDanceCode2Session();
  375. $byteDanceDecrypt = new ByteDanceDecrypt();
  376. if($appid){
  377. $info = $code2Session->setCodeTwo($data['code'])->getTwo();
  378. $byteDanceDecrypt->setEncryptedData($data['encryptedData']);
  379. $byteDanceDecrypt->setIv($data['iv']);
  380. $byteDanceDecrypt->setSessionKey($info['session_key']);
  381. $mobileInfo = $byteDanceDecrypt->get();
  382. Db::startTrans();
  383. $user = UserModel::where('openid', $info['openid'])->find();
  384. if ($user) {
  385. $this->auth->direct($user['id']);
  386. } else {
  387. $this->auth->register(session_create_id(), '', null, $mobileInfo['phoneNumber'] ?? null, [
  388. 'openid' => $info['openid'],
  389. 'unionid' => $info['unionid'],
  390. 'avatar' => $mobileInfo['avatarUrl'],
  391. 'nickname' => $mobileInfo['nickName'],
  392. ]);
  393. }
  394. $data = ['userinfo' => $this->auth->getUserinfo()];
  395. Db::commit();
  396. $this->success(__('Logged in successful'), $data);
  397. }else {
  398. $info = $code2Session->setCode($data['code'])->get();
  399. $byteDanceDecrypt->setEncryptedData($data['encryptedData']);
  400. $byteDanceDecrypt->setIv($data['iv']);
  401. $byteDanceDecrypt->setSessionKey($info['session_key']);
  402. $mobileInfo = $byteDanceDecrypt->get();
  403. Db::startTrans();
  404. $user = UserModel::where('openid', $info['openid'])->find();
  405. if ($user) {
  406. $this->auth->direct($user['id']);
  407. } else {
  408. $this->auth->register(session_create_id(), '', null, $mobileInfo['phoneNumber'] ?? null, [
  409. 'openid' => $info['openid'],
  410. 'unionid' => $info['unionid'],
  411. 'avatar' => $mobileInfo['avatarUrl'],
  412. 'nickname' => $mobileInfo['nickName'],
  413. ]);
  414. }
  415. $data = ['userinfo' => $this->auth->getUserinfo()];
  416. Db::commit();
  417. $this->success(__('Logged in successful'), $data);
  418. }
  419. }
  420. }