User.php 13 KB

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