User.php 42 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162
  1. <?php
  2. namespace app\api\controller;
  3. use app\admin\controller\general\Profile;
  4. use app\common\controller\Api;
  5. use app\common\controller\DescribeFaceVerify;
  6. use app\common\controller\InitFaceVerify;
  7. use app\common\library\Ems;
  8. use app\common\library\Sms;
  9. use app\common\model\Activity;
  10. use app\common\model\Apply;
  11. use app\common\model\Area;
  12. use app\common\model\EducationAuthentication;
  13. use app\common\model\Like;
  14. use app\common\model\MoneyLog;
  15. use app\common\model\Order;
  16. use app\common\model\Selection;
  17. use app\common\model\Shield;
  18. use app\common\model\SystemMessages;
  19. use app\common\model\Unlockprogress;
  20. use app\common\model\UserObject;
  21. use app\common\model\WorkAuthentication;
  22. use fast\Random;
  23. use http\Params;
  24. use think\Config;
  25. use think\Db;
  26. use think\Exception;
  27. use think\Request;
  28. use think\Validate;
  29. use app\common\model\User as UserModel;
  30. use addons\epay\controller\Api as payApi;
  31. use app\api\controller\Common;
  32. use function MongoDB\BSON\fromJSON;
  33. /**
  34. * 会员接口
  35. */
  36. class User extends Api
  37. {
  38. protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third'];
  39. protected $noNeedRight = '*';
  40. public function _initialize()
  41. {
  42. parent::_initialize();
  43. if (!Config::get('fastadmin.usercenter')) {
  44. $this->error(__('User center already closed'));
  45. }
  46. }
  47. /**
  48. * 会员中心
  49. * @ApiReturnParams(name="integrity", description='个人资料进度')
  50. * @ApiReturnParams(name="ilike", description='我喜欢的')
  51. * @ApiReturnParams(name="likeme", description='喜欢我的')
  52. * @ApiReturnParams(name="apply", description='申请我的')
  53. * @ApiReturnParams(name="authentication", description='认证数量')
  54. */
  55. public function index()
  56. {
  57. $uid = $this->auth->id;
  58. if($this->auth->is_info){
  59. $userinfo = UserModel::where('id',$uid)
  60. ->with('userObject.education,education')
  61. ->find();
  62. $userinfo = $userinfo?$userinfo->toArray():[];
  63. $userinfo['integrity'] = $this->integrity();
  64. $userinfo['ilike'] = Like::where(['uid'=>$uid,'type'=>1])->count();
  65. $userinfo['likeme'] = Like::where(['nid'=>$uid,'type'=>1])->count();
  66. $userinfo['apply'] = Apply::where('nid',$uid)->count();
  67. $userinfo['lookme'] = Like::where(['nid'=>$uid,'type'=>2])->count();
  68. //未解锁数量
  69. $userinfo['likeme_subscript'] = Like::where(['nid'=>$uid,'type'=>1,'is_read'=>0])->count();
  70. $userinfo['apply_subscript'] = Apply::where(['nid'=>$uid,'n_is_read'=>0])->count();
  71. $userinfo['lookme_subscript'] = Like::where(['nid'=>$uid,'type'=>2,'is_read'=>0])->count();
  72. $userinfo['authentication'] = 0;
  73. $userinfo['id_authentication']?$userinfo['authentication']++:'';
  74. $userinfo['work_authentication']?$userinfo['authentication']++:'';
  75. $userinfo['education_authentication']?$userinfo['authentication']++:'';
  76. $userinfo['photo'] = explode(',',$userinfo['photo']);
  77. $userinfo['age'] = getAge($userinfo['birthday']);;
  78. //城市
  79. $userinfo['province_name'] = Area::where('id',$userinfo['province'])->value('name');
  80. $userinfo['city_name'] = Area::where('id',$userinfo['city'])->value('name');
  81. $userinfo['area_name'] = Area::where('id',$userinfo['area'])->value('name');
  82. }else{
  83. $userinfo['is_info'] = 0;
  84. }
  85. $this->success('', ['welcome' => $userinfo]);
  86. }
  87. //计算信息完整度百分比
  88. public function integrity(){
  89. $userinfo = UserModel::where('id',$this->auth->id)
  90. ->field('avatar,username,id,birthday,marriage,children,height,education,school,work,max_income,region_province,region_city,region_area,futurehometown,marriedtime,wx,signature,photo,tag,constellation,house,car,father_work,mother_work,brother,work_authentication,education_authentication,id_authentication,familyhow,objecthow,mehow')
  91. ->find()
  92. ->toArray();
  93. $userobject = UserObject::where('uid',$this->auth->id)->find()->toArray();
  94. $sum = count($userinfo) + count($userobject);
  95. $cpl = round( ($this->count_($userinfo)+$this->count_($userobject))/$sum * 100) . "%";
  96. return $cpl;
  97. }
  98. //计算用户信息数量
  99. public function count_($arr){
  100. foreach ($arr as $k=>$v){
  101. if($v == ''){
  102. unset($arr[$k]);
  103. }
  104. }
  105. return count($arr);
  106. }
  107. /**
  108. * 我喜欢的/喜欢我的/申请我的/看了我的列表
  109. * @ApiMethod (POST)
  110. * @ApiParams (name="type",description="1我喜欢的 2喜欢我的 3申请我的 4看了我的")
  111. */
  112. public function dynamic(){
  113. $uid = $this->auth->id;
  114. $type = input('type');
  115. if($type==1){
  116. $ilike = Like::where(['uid'=>$uid,'type'=>1])
  117. ->with('Nuser')
  118. ->order('id','desc')
  119. ->select();
  120. $res = $ilike;
  121. }elseif($type==2){
  122. $ilike = Like::where(['nid'=>$uid,'type'=>1])
  123. ->with('Uuser')
  124. ->order('id','desc')
  125. ->select();
  126. foreach ($ilike as $k=>$v){
  127. Like::get(['uid'=>$uid,'nid'=>$v['uid']])??$ilike[$k]['like']=1;
  128. Unlockprogress::get(['uid'=>$v['nid'],'nid'=>$v['uid']])?$ilike[$k]['Unlockprogress']=1:$ilike[$k]['Unlockprogress']=null;
  129. }
  130. $res = $ilike;
  131. }elseif($type==3){
  132. $ilike = Apply::where(['nid'=>$uid])
  133. ->with('uidinfo')
  134. ->order('id','desc')
  135. ->select();
  136. $res = $ilike;
  137. Apply::n_read($ilike);
  138. }elseif($type==4){
  139. $ilike = Like::where(['nid'=>$uid,'type'=>2])
  140. ->with('Uuser')
  141. ->order('id','desc')
  142. ->select();
  143. foreach ($ilike as $k=>$v){
  144. Unlockprogress::get(['uid'=>$v['nid'],'nid'=>$v['uid']])?$ilike[$k]['Unlockprogress']=1:$ilike[$k]['Unlockprogress']=null;
  145. }
  146. $res = $ilike;
  147. Like::read($ilike);
  148. }
  149. $this->success('',$res);
  150. }
  151. /**
  152. * 解锁资料
  153. * @ApiMethod (POST)
  154. * @ApiParams (name="type",description="1解锁喜欢我的2解锁访客")
  155. * @ApiParams (name="nid")
  156. */
  157. public function unlock(){
  158. $uid = $this->auth->id;
  159. $nid = $this->request->post('nid');
  160. $type = $this->request->post('type');
  161. if(!$nid || !$type){
  162. $this->error('参数缺失');
  163. }
  164. $user = Unlockprogress::where(['uid'=>$this->auth->id,'nid'=>$nid])->find();
  165. if($user)$this->error('您已解锁');
  166. if($type == 1){
  167. $cost = config('site.expenditure_grain')['查看收藏我的'];
  168. if($cost>$this->auth->money)$this->error('余额不足');
  169. Db::startTrans();
  170. try {
  171. $data = [
  172. 'uid'=>$uid,
  173. 'nid'=>$nid,
  174. 'status'=>2
  175. ];
  176. Unlockprogress::insert($data);
  177. $look = [
  178. 'uid'=>$uid,
  179. 'nid'=>$nid,
  180. 'type'=>2,
  181. 'status'=>0
  182. ];
  183. Like::insert($look);
  184. UserModel::money(-$cost,$uid,'解锁喜欢我的资料');
  185. //发送微信模板消息
  186. Apply::wxUnlockMessage($uid,$nid,Date('Y-m-d H:i:s'),2);
  187. Db::commit();
  188. $this->success('解锁成功');
  189. }catch (Exception $e){
  190. Db::rollback();
  191. $this->error($e);
  192. return false;
  193. }
  194. }elseif($type == 2){
  195. $cost = config('site.expenditure_grain')['查看访客'];
  196. if($cost>$this->auth->money)$this->error('余额不足');
  197. Db::startTrans();
  198. try {
  199. $data = [
  200. 'uid'=>$uid,
  201. 'nid'=>$nid,
  202. 'status'=>2
  203. ];
  204. Unlockprogress::insert($data);
  205. $look = [
  206. 'uid'=>$uid,
  207. 'nid'=>$nid,
  208. 'type'=>2,
  209. 'status'=>0
  210. ];
  211. Like::insert($look);
  212. UserModel::money(-$cost,$uid,'解锁访客资料');
  213. //发送微信模板消息
  214. Apply::wxUnlockMessage($uid,$nid,Date('Y-m-d H:i:s'),2);
  215. Db::commit();
  216. $this->success('解锁成功');
  217. }catch (Exception $e){
  218. Db::rollback();
  219. $this->error($e);
  220. return false;
  221. }
  222. }
  223. }
  224. /**
  225. * 申请我的操作
  226. * @param string $id id
  227. * @param string $type 1同意2拒绝
  228. */
  229. public function applyop(){
  230. $type = input('type');
  231. $apply = Apply::get(['status'=>0,'id'=>input('id')]);
  232. if(!$apply)$this->error('数据异常');
  233. if($type==1){
  234. $apply->save(['status'=>1]);
  235. //发送微信模板消息
  236. Apply::wxApplyMessage($this->auth->id,$apply['uid'],Date('Y-m-d H:i:s'),1);
  237. $this->success('已同意',$apply);
  238. }elseif($type==2){
  239. $grain = $apply['grain']*0.5;
  240. UserModel::money($grain,$apply['uid'],'拒绝认识申请,退还狗粮');
  241. $apply->save(['status'=>2,'refund_grain'=>$grain]);
  242. //发送微信模板消息
  243. Apply::wxApplyMessage($this->auth->id,$apply['uid'],Date('Y-m-d H:i:s'),2);
  244. $this->success('已拒绝',$apply);
  245. }
  246. }
  247. /**
  248. * 会员登录
  249. *
  250. * @ApiMethod (POST)
  251. * @param string $account 账号
  252. * @param string $password 密码
  253. */
  254. public function login()
  255. {
  256. $account = $this->request->post('account');
  257. $password = $this->request->post('password');
  258. if (!$account || !$password) {
  259. $this->error(__('Invalid parameters'));
  260. }
  261. $ret = $this->auth->login($account, $password);
  262. if ($ret) {
  263. $data = ['userinfo' => $this->auth->getUserinfo()];
  264. $this->success(__('Logged in successful'), $data);
  265. } else {
  266. $this->error($this->auth->getError());
  267. }
  268. }
  269. /**
  270. * 手机验证码登录
  271. *
  272. * @ApiMethod (POST)
  273. * @param string $mobile 手机号
  274. * @param string $captcha 验证码
  275. * @param string $code code
  276. */
  277. public function mobilelogin()
  278. {
  279. $mobile = $this->request->post('mobile');
  280. $captcha = $this->request->post('captcha');
  281. $code = $this->request->post('code');
  282. $inviter_id = $this->request->post('inviter_id');
  283. if (!$mobile || !$captcha || !$code) {
  284. $this->error(__('Invalid parameters'));
  285. }
  286. if (!Validate::regex($mobile, "^1\d{10}$")) {
  287. $this->error(__('Mobile is incorrect'));
  288. }
  289. // if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
  290. // $this->error(__('Captcha is incorrect'));
  291. // }
  292. $user = \app\common\model\User::getByMobile($mobile);
  293. $wx_userinfo = (new \app\api\controller\Common())->getUserinfo($code);
  294. if ($user) {
  295. if ($user->status != 'normal') {
  296. $this->error('用户已注销');
  297. }
  298. //如果已经有账号则直接登录
  299. $ret = $this->auth->direct($user->id,$wx_userinfo['openid']);
  300. } else {
  301. $ret = $this->auth->register($wx_userinfo['nickname'], Random::alnum(), '', $mobile, [],$wx_userinfo['openid'],$inviter_id);
  302. //注册奖励
  303. $u = new \app\common\model\User();
  304. $u->registerAward($this->auth->id);
  305. }
  306. if ($ret) {
  307. Sms::flush($mobile, 'mobilelogin');
  308. $data = ['userinfo' => $this->auth->getUserinfo()];
  309. $data['openid'] = $wx_userinfo['openid'];
  310. $this->success(__('Logged in successful'), $data);
  311. } else {
  312. $this->error($this->auth->getError());
  313. }
  314. }
  315. // /**
  316. // * 注册会员
  317. // *
  318. // * @ApiMethod (POST)
  319. // * @param string $username 用户名
  320. // * @param string $password 密码
  321. // * @param string $email 邮箱
  322. // * @param string $mobile 手机号
  323. // * @param string $code 验证码
  324. // */
  325. // public function register()
  326. // {
  327. // $username = $this->request->post('username');
  328. // $password = $this->request->post('password');
  329. // $email = $this->request->post('email');
  330. // $mobile = $this->request->post('mobile');
  331. // $code = $this->request->post('code');
  332. // if (!$username || !$password) {
  333. // $this->error(__('Invalid parameters'));
  334. // }
  335. // if ($email && !Validate::is($email, "email")) {
  336. // $this->error(__('Email is incorrect'));
  337. // }
  338. // if ($mobile && !Validate::regex($mobile, "^1\d{10}$")) {
  339. // $this->error(__('Mobile is incorrect'));
  340. // }
  341. // $ret = Sms::check($mobile, $code, 'register');
  342. // if (!$ret) {
  343. // $this->error(__('Captcha is incorrect'));
  344. // }
  345. // $ret = $this->auth->register($username, $password, $email, $mobile, []);
  346. // if ($ret) {
  347. // $data = ['userinfo' => $this->auth->getUserinfo()];
  348. // $this->success(__('Sign up successful'), $data);
  349. // } else {
  350. // $this->error($this->auth->getError());
  351. // }
  352. // }
  353. /**
  354. * 退出登录
  355. * @ApiMethod (POST)
  356. */
  357. public function logout()
  358. {
  359. if (!$this->request->isPost()) {
  360. $this->error(__('Invalid parameters'));
  361. }
  362. $this->auth->logout();
  363. $this->success(__('Logout successful'));
  364. }
  365. /**
  366. * 修改会员个人信息
  367. *
  368. * @ApiMethod (POST)
  369. * @param string $avatar 头像地址
  370. * @param string $username 用户名
  371. * @param string $nickname 昵称
  372. * @param string $bio 个人简介
  373. */
  374. public function profile()
  375. {
  376. $user = $this->auth->getUser();
  377. $username = $this->request->post('username');
  378. $nickname = $this->request->post('nickname');
  379. $bio = $this->request->post('bio');
  380. $avatar = $this->request->post('avatar', '', 'trim,strip_tags,htmlspecialchars');
  381. if ($username) {
  382. $exists = \app\common\model\User::where('username', $username)->where('id', '<>', $this->auth->id)->find();
  383. if ($exists) {
  384. $this->error(__('Username already exists'));
  385. }
  386. $user->username = $username;
  387. }
  388. if ($nickname) {
  389. $exists = \app\common\model\User::where('nickname', $nickname)->where('id', '<>', $this->auth->id)->find();
  390. if ($exists) {
  391. $this->error(__('Nickname already exists'));
  392. }
  393. $user->nickname = $nickname;
  394. }
  395. $user->bio = $bio;
  396. $user->avatar = $avatar;
  397. $user->save();
  398. $this->success();
  399. }
  400. /**
  401. * 修改手机号
  402. *
  403. * @ApiMethod (POST)
  404. * @param string $mobile 手机号
  405. * @param string $captcha 验证码
  406. */
  407. public function changemobile()
  408. {
  409. $user = $this->auth->getUser();
  410. $mobile = $this->request->post('mobile');
  411. $captcha = $this->request->post('captcha');
  412. if (!$mobile || !$captcha) {
  413. $this->error(__('Invalid parameters'));
  414. }
  415. if (!Validate::regex($mobile, "^1\d{10}$")) {
  416. $this->error(__('Mobile is incorrect'));
  417. }
  418. if (\app\common\model\User::where('mobile', $mobile)->where('id', '<>', $user->id)->find()) {
  419. $this->error(__('Mobile already exists'));
  420. }
  421. $result = Sms::check($mobile, $captcha, 'changemobile');
  422. if (!$result) {
  423. $this->error(__('Captcha is incorrect'));
  424. }
  425. $verification = $user->verification;
  426. $verification->mobile = 1;
  427. $user->verification = $verification;
  428. $user->mobile = $mobile;
  429. $user->save();
  430. Sms::flush($mobile, 'changemobile');
  431. $this->success();
  432. }
  433. // /**
  434. // * 第三方登录
  435. // *
  436. // * @ApiMethod (POST)
  437. // * @param string $platform 平台名称
  438. // * @param string $code Code码
  439. // */
  440. // public function third()
  441. // {
  442. // $url = url('user/index');
  443. // $platform = $this->request->post("platform");
  444. // $code = $this->request->post("code");
  445. // $config = get_addon_config('third');
  446. // if (!$config || !isset($config[$platform])) {
  447. // $this->error(__('Invalid parameters'));
  448. // }
  449. // $app = new \addons\third\library\Application($config);
  450. // //通过code换access_token和绑定会员
  451. // $result = $app->{$platform}->getUserInfo(['code' => $code]);
  452. // if ($result) {
  453. // $loginret = \addons\third\library\Service::connect($platform, $result);
  454. // if ($loginret) {
  455. // $data = [
  456. // 'userinfo' => $this->auth->getUserinfo(),
  457. // 'thirdinfo' => $result
  458. // ];
  459. // $this->success(__('Logged in successful'), $data);
  460. // }
  461. // }
  462. // $this->error(__('Operation failed'), $url);
  463. // }
  464. // /**
  465. // * 重置密码
  466. // *
  467. // * @ApiMethod (POST)
  468. // * @param string $mobile 手机号
  469. // * @param string $newpassword 新密码
  470. // * @param string $captcha 验证码
  471. // */
  472. // public function resetpwd()
  473. // {
  474. // $type = $this->request->post("type");
  475. // $mobile = $this->request->post("mobile");
  476. // $email = $this->request->post("email");
  477. // $newpassword = $this->request->post("newpassword");
  478. // $captcha = $this->request->post("captcha");
  479. // if (!$newpassword || !$captcha) {
  480. // $this->error(__('Invalid parameters'));
  481. // }
  482. // //验证Token
  483. // if (!Validate::make()->check(['newpassword' => $newpassword], ['newpassword' => 'require|regex:\S{6,30}'])) {
  484. // $this->error(__('Password must be 6 to 30 characters'));
  485. // }
  486. // if ($type == 'mobile') {
  487. // if (!Validate::regex($mobile, "^1\d{10}$")) {
  488. // $this->error(__('Mobile is incorrect'));
  489. // }
  490. // $user = \app\common\model\User::getByMobile($mobile);
  491. // if (!$user) {
  492. // $this->error(__('User not found'));
  493. // }
  494. // $ret = Sms::check($mobile, $captcha, 'resetpwd');
  495. // if (!$ret) {
  496. // $this->error(__('Captcha is incorrect'));
  497. // }
  498. // Sms::flush($mobile, 'resetpwd');
  499. // } else {
  500. // if (!Validate::is($email, "email")) {
  501. // $this->error(__('Email is incorrect'));
  502. // }
  503. // $user = \app\common\model\User::getByEmail($email);
  504. // if (!$user) {
  505. // $this->error(__('User not found'));
  506. // }
  507. // $ret = Ems::check($email, $captcha, 'resetpwd');
  508. // if (!$ret) {
  509. // $this->error(__('Captcha is incorrect'));
  510. // }
  511. // Ems::flush($email, 'resetpwd');
  512. // }
  513. // //模拟一次登录
  514. // $this->auth->direct($user->id);
  515. // $ret = $this->auth->changepwd($newpassword, '', true);
  516. // if ($ret) {
  517. // $this->success(__('Reset password successful'));
  518. // } else {
  519. // $this->error($this->auth->getError());
  520. // }
  521. // }
  522. /**
  523. * 基本信息填写
  524. *
  525. * @ApiMethod (POST)
  526. * @param string $gender 性别
  527. * @param string $marriage 婚姻状态
  528. * @param string $birthday 生日
  529. * @param string $height 身高
  530. * @param string $education 学历id
  531. * @param string $school 毕业学校
  532. * @param string $work 工作
  533. * @param string $max_income 收入
  534. * @param string $region_province 家乡所在省份
  535. * @param string $region_city 家乡所在市区
  536. * @param string $region_area 家乡所在区域
  537. * @param string $futurehometown 未来定居城市
  538. * @param string $marriedtime 计划结婚id
  539. * @param string $objecteducation ta的学历id
  540. * @param string $min_age ta的年龄最小值
  541. * @param string $max_age ta的年龄最大值
  542. * @param string $min_height ta的身高最小值
  543. * @param string $max_height ta的身高最大值
  544. * @param string $wx 微信号码
  545. * @param string $image 图片
  546. */
  547. public function userinfo(){
  548. $rule = [
  549. 'gender|性别'=>'require',
  550. 'marriage|婚姻状态'=>'require',
  551. 'birthday|生日'=>'require',
  552. 'height|身高'=>'require',
  553. 'education|学历'=>'require',
  554. 'school|毕业学校'=>'require',
  555. 'work|工作'=>'require',
  556. 'max_income|收入'=>'require',
  557. 'region_province|家乡所在省份'=>'require',
  558. 'region_city|家乡所在市区'=>'require',
  559. 'region_area|家乡所在区域'=>'require',
  560. 'futurehometown|未来定居城市'=>'require',
  561. 'wx|微信号码'=>'require',
  562. 'image|头像'=>'require',
  563. 'objecteducation|ta的学历'=>'require',
  564. 'min_age|ta的年龄'=>'require',
  565. 'max_age|ta的年龄'=>'require',
  566. 'min_height|ta的身高'=>'require',
  567. 'max_height|ta的身高'=>'require'
  568. ];
  569. $data = $this->_validate($rule);
  570. $userinfo = [
  571. 'gender'=>$data['gender'],
  572. 'marriage'=>$data['marriage'],
  573. 'birthday'=>$data['birthday'],
  574. 'height'=>$data['height'],
  575. 'education'=>$data['education'],
  576. 'school'=>$data['school'],
  577. 'work'=>$data['work'],
  578. 'max_income'=>$data['max_income'],
  579. 'region_province'=>$data['region_province'],
  580. 'region_city'=>$data['region_city'],
  581. 'region_area'=>$data['region_area'],
  582. 'futurehometown'=>$data['futurehometown'],
  583. 'wx'=>$data['wx'],
  584. 'avatar_new'=>$data['image'],
  585. 'divorced_no_kids'=>isset($data['divorced_no_kids'])?$data['divorced_no_kids']:'',
  586. 'divorced_have_kids'=>isset($data['divorced_have_kids'])?$data['divorced_have_kids']:'',
  587. 'province'=>isset($data['province'])?$data['province']:'',
  588. 'city'=>isset($data['city'])?$data['city']:'',
  589. 'area'=>isset($data['area'])?$data['area']:'',
  590. ];;
  591. $userinfo['image_audit'] = 0;
  592. $userinfo['is_info'] = 1;
  593. // $marriedtime = Selection::get(['id'=>input('marriedtime')]);
  594. $userinfo['marriedtime'] = input('marriedtime');
  595. // $userinfo['min_marriedtime'] = $marriedtime['min'];
  596. // $userinfo['max_marriedtime'] = $marriedtime['max'];
  597. $user = UserModel::get(['id'=>$this->auth->id]);
  598. //希望对象资料
  599. $userObject = [
  600. 'education'=>$data['objecteducation'],
  601. 'min_age'=>$data['min_age'],
  602. 'max_age'=>$data['max_age'],
  603. 'min_height'=>$data['min_height'],
  604. 'max_height'=>$data['max_height']
  605. ];
  606. $userObject['uid'] = $this->auth->id;
  607. if($user){
  608. Db::startTrans();
  609. try {
  610. $user->save($userinfo);
  611. UserObject::insert($userObject);
  612. Db::commit();
  613. $this->success('上传成功');
  614. }catch (Exception $exception){
  615. $this->error($exception);
  616. Db::rollback();
  617. return false;
  618. }
  619. }else{
  620. $this->error('状态异常');
  621. }
  622. }
  623. /**
  624. * 个人资料编辑
  625. * @ApiMethod (POST)
  626. * @param string $avatar 头像
  627. * @param string $photo 相册
  628. * @param string $username 昵称
  629. * @param string $province 所在省份
  630. * @param string $city 所在市区
  631. * @param string $area 所在区域
  632. * @param string $work 工作
  633. * @param string $max_income 收入最大值
  634. */
  635. public function userinfoedit(){
  636. $data = input('post.');
  637. $user = UserModel::get(['id'=>$this->auth->id]);
  638. if($data['avatar'] != $user['avatar']){
  639. $data['avatar_new'] = $data['avatar'];
  640. unset($data['avatar']);
  641. $data['image_audit'] = 0;
  642. }
  643. $user->save($data);
  644. $this->success('编辑成功',$user);
  645. }
  646. /**
  647. * 关于自己编辑
  648. * @param string $constellation 星座
  649. * @param string $height 身高
  650. * @param string $marriage 婚姻状态
  651. * @param string $children 有无子女
  652. * @param string $marriedtime 计划结婚
  653. * @param string $education 学历
  654. * @param string $school 毕业学校
  655. * @param string $house 房子
  656. * @param string $car 车子
  657. * @param string $father_work 父亲工作
  658. * @param string $mother_work 母亲工作
  659. * @param string $brother 兄弟姐妹
  660. * @param string $birthday 生日
  661. */
  662. public function aboutuser(){
  663. $input = input('post.');
  664. $user = UserModel::get(['id'=>$this->auth->id]);
  665. $user->save($input);
  666. $this->success('请求成功',$input);
  667. }
  668. /**
  669. * 希望对方编辑
  670. * @param string $constellation 星座
  671. * @param string $min_age 最小年龄
  672. * @param string $max_age 最大年龄
  673. * @param string $min_height 最小身高
  674. * @param string $max_height 最大身高
  675. * @param string $education 学历
  676. * @param string $car 车子
  677. * @param string $house 房子
  678. * @param string $marry 婚史
  679. * @param string $children 子女
  680. * @param string $locality 本地
  681. */
  682. public function aboutobject(){
  683. $input = input('post.');
  684. $data = UserObject::update($input,['uid'=>$this->auth->id]);
  685. if($data){
  686. $this->success('请求成功',$data);
  687. }else{
  688. $this->error('请求失败');
  689. }
  690. }
  691. /**
  692. * 标签编辑
  693. * @param string $tag 标签id(逗号分割)
  694. *
  695. */
  696. public function tagedit(){
  697. if($this->request->post()){
  698. $tag = UserModel::update(['tag'=>input('tag'),'id'=>$this->auth->id]);
  699. if($tag)$this->success('保存成功',$tag);
  700. $this->error('保存失败');
  701. }else{
  702. $this->success('',$this->auth->tag);
  703. }
  704. }
  705. /**
  706. * 个性签名编辑
  707. * @param string $signature 个性签名
  708. */
  709. public function signatureEdit(){
  710. $data = $this->_validate(['signature|内容'=>'require']);
  711. $user = UserModel::where('id',$this->auth->id)->findOrFail();
  712. $user->save($data)?$this->success('',$user):$this->error('失败');
  713. }
  714. /**
  715. * 关于我编辑
  716. * @param string $mehow 我的情况
  717. * @param string $objecthow 希望对方情况
  718. * @param string $familyhow 家庭情况
  719. */
  720. public function meHowEdit(){
  721. $data = $this->_validate(
  722. ['mehow|内容'=>'require',
  723. 'objecthow|内容'=>'require',
  724. 'familyhow|内容'=>'require',]
  725. );
  726. $user = UserModel::where('id',$this->auth->id)->findOrFail();
  727. $user->save($data)?$this->success('',$user):$this->error('失败');
  728. }
  729. /**
  730. * 我的认证状态
  731. */
  732. public function authentication(){
  733. $uid = $this->auth->id;
  734. $id_authentication = UserModel::where(['id'=>$uid])->value('id_authentication');
  735. $education_authentication = EducationAuthentication::where(['uid'=>$uid])->find();
  736. $work_authentication = WorkAuthentication::where(['uid'=>$uid])->find();
  737. $res['id_authentication'] = $id_authentication;
  738. if(!$education_authentication || $education_authentication['status']==2){
  739. $res['education_authentication'] = -1;
  740. }else{
  741. $res['education_authentication'] = $education_authentication['status'];
  742. };
  743. if(!$work_authentication || $work_authentication['status']==2){
  744. $res['work_authentication'] = -1;
  745. }else{
  746. $res['work_authentication'] = $work_authentication['status'];
  747. };
  748. $this->success('',$res);
  749. }
  750. /**
  751. * 身份认证
  752. * @ApiMethod (POST)
  753. * @param string $CertName 真实姓名
  754. * @param string $CertNo 证件号码
  755. * @param string $MetaInfo
  756. * @param string $ReturnUrl
  757. */
  758. public function idAuthentication(){
  759. $uid = $this->auth->id;
  760. $CertName = $this->request->post('CertName');
  761. $CertNo = $this->request->post('CertNo');
  762. $MetaInfo = $this->request->post('MetaInfo');
  763. $ReturnUrl = $this->request->post('ReturnUrl');
  764. if(!$CertName && !$CertNo && !$MetaInfo && !$ReturnUrl){
  765. $this->error('参数缺失');
  766. }
  767. // $user = UserModel::get(['id'=>$uid]);
  768. $MetaInfo = str_replace('&quot;','"',$MetaInfo);
  769. $res = InitFaceVerify::main($CertName,$CertNo,$MetaInfo,$ReturnUrl);
  770. $result = json_decode(json_encode($res),true)['body'];
  771. $this->success('获取成功',$result);
  772. }
  773. /**
  774. * 实名认证核验
  775. * @ApiMethod (POST)
  776. */
  777. public function userCertification()
  778. {
  779. $uid = $this->auth->id;
  780. $user = UserModel::get(['id'=>$uid]);
  781. // if ($user['id_authentication']) $this->error('已实名认证');
  782. $rule = [
  783. 'CertName'=>'require',
  784. 'CertNo'=>'require',
  785. 'CertifyId'=>'require',
  786. ];
  787. $data = $this->_validate($rule);
  788. $is_exist = UserModel::get(['real_num'=>$data['CertNo'],'status'=>'normal']);
  789. if($is_exist) $this->error('该身份证号已实名认证过');
  790. // 核验
  791. $res = DescribeFaceVerify::main($data['CertifyId']);
  792. if(!$res) $this->error('认证失败');
  793. $result = json_decode(json_encode($res),true)['body'];
  794. if($result['resultObject']['subCode'] != 200){
  795. $this->error('认证失败');
  796. }
  797. unset($data['CertifyId']);
  798. $materialInfo = json_decode($result['resultObject']['materialInfo'],true);
  799. $real_image = 'https://'.$materialInfo['facialPictureFront']['ossBucketName'].'.oss-cn-shanghai.aliyuncs.com/'.$materialInfo['facialPictureFront']['ossObjectName'];
  800. if ($user->save(['id_authentication'=>1,'real_name'=>$data['CertName'],'real_num'=>$data['CertNo'],'real_image'=>$real_image]) !== false) {
  801. //奖励邀请者狗粮
  802. if($this->auth->inviter_id && $user['image_audit']){
  803. $gain_grain = config('site.gain_grain')['邀请用户注册'];
  804. UserModel::money($gain_grain,$this->auth->inviter_id,'邀请用户奖励');
  805. }
  806. //验证生日
  807. $bir = (new \app\api\controller\Common)->get_birthday($data['CertNo']);
  808. if($bir != $this->auth->birthday){
  809. $user->save(['birthday'=>$bir]);
  810. }
  811. $this->success('实名认证成功!');
  812. } else {
  813. $this->error('实名认证失败!');
  814. }
  815. }
  816. /**
  817. * 学历认证
  818. * @param string $education 学历
  819. * @param string $school 学校
  820. * @param string $authentication_method 认证方式
  821. * @param string $image 照片
  822. */
  823. public function educationAuthentication(){
  824. $uid = $this->auth->id;
  825. $rule = [
  826. 'education|学历'=>'require',
  827. 'school|学校'=>'require',
  828. 'authentication_method|认证方式'=>'require',
  829. 'image|照片'=>'require'
  830. ];
  831. $data = $this->_validate($rule);
  832. $education = EducationAuthentication::get(['uid'=>$uid]);
  833. if($education){
  834. $res = $education->save(
  835. [
  836. 'education'=>$data['education'],
  837. 'school'=>$data['school'],
  838. 'authentication_method'=>$data['authentication_method'],
  839. 'image'=>$data['image'],
  840. 'status'=>0,
  841. 'refuse_cause'=>'',
  842. 'authentication_num'=>$education['authentication_num']+1
  843. ]
  844. );
  845. }else{
  846. $data['uid'] = $uid;
  847. $data['status'] = 0;
  848. $res = EducationAuthentication::insert($data);
  849. }
  850. if ($res){
  851. $this->success('',$res);
  852. }
  853. $this->error('提交失败',$res);
  854. }
  855. /**
  856. * 工作认证
  857. * @param string $work 职业
  858. * @param string $company_name 公司名称
  859. * @param string $authentication_method 认证方式
  860. * @param string $image 照片
  861. */
  862. public function workAuthentication(){
  863. $uid = $this->auth->id;
  864. $rule = [
  865. 'work|工作'=>'require',
  866. 'company_name|公司名称'=>'require',
  867. 'authentication_method|认证方式'=>'require',
  868. 'image|照片'=>'require'
  869. ];
  870. $data = $this->_validate($rule);
  871. $WorkAuthentication = WorkAuthentication::get(['uid'=>$uid]);
  872. if($WorkAuthentication){
  873. $res = $WorkAuthentication->save(
  874. [
  875. 'work'=>$data['work'],
  876. 'company_name'=>$data['company_name'],
  877. 'authentication_method'=>$data['authentication_method'],
  878. 'image'=>$data['image'],
  879. 'status'=>0,
  880. 'refuse_cause'=>'',
  881. 'authentication_num'=>$WorkAuthentication['authentication_num']+1
  882. ]
  883. );
  884. }else{
  885. $data['uid'] = $uid;
  886. $data['status'] = 0;
  887. $res = WorkAuthentication::insert($data);
  888. }
  889. if ($res){
  890. $this->success('',$res);
  891. }
  892. $this->error('提交失败');
  893. }
  894. /**
  895. * 狗粮明细
  896. */
  897. public function moneyDetail(){
  898. $log = MoneyLog::order('id','desc')->where(['user_id'=>$this->auth->id])->select();
  899. foreach ($log as &$value){
  900. $value['createtime'] = date('Y-m-d H:i:s',$value['createtime']);
  901. }
  902. $this->success('',$log);
  903. }
  904. /**
  905. * 做任务赚狗粮
  906. * @ApiMethod (POST)
  907. * @ApiParams (name='type',description='完善资料,身份认证,学历认证,工作认证,邀请用户注册(领取奖励时传)')
  908. * @returnparam (name='[]',description='0未完成 1待领取 2已领取')
  909. */
  910. public function gainMoney(){
  911. $uid = $this->auth->id;
  912. if($this->request->post('type')){
  913. if($this->request->post('type')){
  914. $gain_grain = \config('site.gain_grain')[$this->request->post('type')];
  915. UserModel::money($gain_grain,$uid,$this->request->post('type'));
  916. }
  917. }else{
  918. $gain_grain = \config('site.gain_grain');
  919. MoneyLog::where(['user_id'=>$uid,'memo'=>'新人注册奖励'])->find()?$gain_grain['新人注册奖励']=2:$gain_grain['新人注册奖励']=1;
  920. if(MoneyLog::where(['user_id'=>$uid,'memo'=>'完善资料'])->find()){
  921. $gain_grain['完善资料']=2;
  922. }else{
  923. if($this->integrity() == '100%'){
  924. $gain_grain['完善资料'] = 1;
  925. }else{
  926. $gain_grain['完善资料'] = 0;
  927. }
  928. }
  929. if(MoneyLog::where(['user_id'=>$uid,'memo'=>'身份认证'])->find()){
  930. $gain_grain['身份认证']=2;
  931. }else{
  932. $this->auth->id_authentication=='1'?$gain_grain['身份认证']=1:$gain_grain['身份认证']=0;
  933. }
  934. if(MoneyLog::where(['user_id'=>$uid,'memo'=>'学历认证'])->find()){
  935. $gain_grain['学历认证']=2;
  936. }else{
  937. $this->auth->education_authentication=='1'?$gain_grain['学历认证']=1:$gain_grain['学历认证']=0;
  938. }
  939. if(MoneyLog::where(['user_id'=>$uid,'memo'=>'工作认证'])->find()){
  940. $gain_grain['工作认证']=2;
  941. }else{
  942. $this->auth->work_authentication=='1'?$gain_grain['工作认证']=1:$gain_grain['工作认证']=0;
  943. }
  944. $gain_grain['邀请用户注册'] = 0;
  945. }
  946. $this->success('',$gain_grain);
  947. }
  948. /**
  949. * 狗粮充值
  950. * @ApiMethod (POST)
  951. * @ApiParams (name='money',description='金额')
  952. * @ApiParams (name='openid',description='openid')
  953. */
  954. public function addMoney(){
  955. $uid = $this->auth->id;
  956. $money = $this->request->post('money');
  957. $openid = $this->request->post('openid');
  958. $num = \config('site.money')[$money];
  959. if(!$money && !$openid){
  960. $this->error('参数缺失');
  961. }
  962. if(!$uid && !$num){
  963. $this->error('系统错误');
  964. }
  965. $type = 'wechat';
  966. $orderId = (new \app\api\controller\Common())->getOrderId();
  967. $order = [
  968. 'uid'=>$uid,
  969. 'title'=>'狗粮充值',
  970. 'recharge_amount'=>$money,
  971. 'money'=>$num,
  972. 'type'=>1,
  973. 'orderid'=>$orderId
  974. ];
  975. Order::create($order);
  976. $notifyurl = $this->request->root(true) . '/addons/epay/api/notifyx/type/' . $type.'/orderid/'.$orderId;
  977. $returnurl = $this->request->root(true) . '/addons/epay/api/notifyx/type/' . $type.'/orderid/'.$orderId;
  978. $params = [
  979. 'amount'=>$money,
  980. 'orderid'=>$orderId,
  981. 'type'=>'wechat',
  982. 'title'=>'狗粮充值',
  983. 'notifyurl'=>$notifyurl,
  984. 'returnurl'=>$returnurl,
  985. 'method'=>"mp",
  986. 'openid'=>$openid
  987. ];
  988. $this->success('',\addons\epay\library\Service::submitOrder($params));
  989. }
  990. /**
  991. * 喜欢额度充值
  992. * @ApiMethod (POST)
  993. * @ApiParams (name='score',desfcription='金额')
  994. * @ApiParams (name='openid',description='openid')
  995. */
  996. public function addScore(){
  997. $uid = $this->auth->id;
  998. $money = $this->request->post('score');
  999. $openid = $this->request->post('openid');
  1000. $num = \config('site.score')[$money];
  1001. if(!$money && !$openid){
  1002. $this->error('参数缺失');
  1003. }
  1004. if(!$uid && !$num){
  1005. $this->error('系统错误');
  1006. }
  1007. $type = 'wechat';
  1008. $orderId = (new \app\api\controller\Common())->getOrderId();
  1009. $order = [
  1010. 'uid'=>$uid,
  1011. 'title'=>'喜欢额度充值',
  1012. 'recharge_amount'=>$money,
  1013. 'money'=>$num,
  1014. 'type'=>2,
  1015. 'orderid'=>$orderId
  1016. ];
  1017. Order::create($order);
  1018. $notifyurl = $this->request->root(true) . '/addons/epay/api/notifyx/type/' . $type.'/orderid/'.$orderId;
  1019. $returnurl = $this->request->root(true) . '/addons/epay/api/notifyx/type/' . $type.'/orderid/'.$orderId;
  1020. $params = [
  1021. 'amount'=>$money,
  1022. 'orderid'=>$orderId,
  1023. 'type'=>'wechat',
  1024. 'title'=>'喜欢额度充值',
  1025. 'notifyurl'=>$notifyurl,
  1026. 'returnurl'=>$returnurl,
  1027. 'method'=>"mp",
  1028. 'openid'=>$openid
  1029. ];
  1030. $this->success('',\addons\epay\library\Service::submitOrder($params));
  1031. }
  1032. /**
  1033. * 活动列表
  1034. * @param string $id id(获取详情时传)
  1035. */
  1036. public function activity(){
  1037. if(!input('id')){
  1038. $this->success('',Activity::field('content',true)->select());
  1039. }else{
  1040. $this->success('',Activity::find(['id'=>input('id')]));
  1041. }
  1042. }
  1043. /**
  1044. * 更换手机号身份验证初始化
  1045. * @ApiMethod (POST)
  1046. * @param (name="ReturnUrl",description="返回地址")
  1047. * @param (name="MetaInfo",description="MetaInfo")
  1048. */
  1049. public function idVerifyInit(){
  1050. $uid = $this->auth->id;
  1051. $user = UserModel::get($uid);
  1052. $ReturnUrl = $this->request->post('ReturnUrl');
  1053. $MetaInfo = $this->request->post('MetaInfo');
  1054. if(!$ReturnUrl&&!$MetaInfo)$this->error('参数缺失');
  1055. if($user->id_authentication==0)$this->error('您还未进行身份认证');
  1056. $MetaInfo = str_replace('&quot;','"',$MetaInfo);
  1057. $res = InitFaceVerify::main($user->real_name,$user->real_num,$MetaInfo,$ReturnUrl);
  1058. $result = json_decode(json_encode($res),true)['body'];
  1059. $this->success('获取成功',$result);
  1060. }
  1061. /**
  1062. * 更换手机号实名认证核验
  1063. * @ApiMethod (POST)
  1064. * @ApiParams (name='CertifyId',description="CertifyId")
  1065. */
  1066. public function idVerifyCheck()
  1067. {
  1068. $rule = [
  1069. 'CertifyId'=>'require',
  1070. ];
  1071. $data = $this->_validate($rule);
  1072. // 核验
  1073. $res = DescribeFaceVerify::main($data['CertifyId']);
  1074. if(!$res) $this->error('核验失败');
  1075. $result = json_decode(json_encode($res),true)['body'];
  1076. if($result['resultObject']['subCode'] != 200){
  1077. $this->error('核验失败');
  1078. }
  1079. $this->success('实名认证成功!');
  1080. }
  1081. /**
  1082. * 注销操作
  1083. * @ApiMethod (POST)
  1084. * @ApiParams (name='code',description='验证码')
  1085. * @ApiParams (name='reason_cancellation',description='注销原因')
  1086. */
  1087. public function reasonCancellation(){
  1088. $code = $this->request->post('code');
  1089. $reason_cancellation = $this->request->post('reason_cancellation');
  1090. if(!$code && $reason_cancellation)$this->error('参数缺失');
  1091. $uid = $this->auth->id;
  1092. $user = UserModel::get(['id'=>$uid]);
  1093. if($user['status'] == 'destruction')$this->error('非法操作');
  1094. if (!Sms::check($user['mobile'], $code, 'destruction')) {
  1095. //$this->error(__('Captcha is incorrect'));
  1096. }
  1097. $user->save(['status'=>'destruction','reason_cancellation'=>$reason_cancellation,'mobile'=>'','username'=>'该账号已注销','nickname'=>'该账号已注销','avatar'=>'/assets/img/avatar.png']);
  1098. $this->success('注销成功');
  1099. }
  1100. /**
  1101. * 屏蔽列表
  1102. * @ApiMethod (POST)
  1103. */
  1104. public function shield(){
  1105. $data = Shield::all(['uid'=>$this->auth->id],['userinfo.areaCity']);
  1106. foreach ($data as $k=>&$v){
  1107. $v['userinfo']['birthday'] = getAge($v['userinfo']['birthday']);
  1108. }
  1109. $this->success('',$data);
  1110. }
  1111. }