User.php 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742
  1. <?php
  2. namespace app\api\controller;
  3. use app\admin\controller\general\Profile;
  4. use app\common\controller\Api;
  5. use app\common\library\Ems;
  6. use app\common\library\Sms;
  7. use app\common\model\Activity;
  8. use app\common\model\Apply;
  9. use app\common\model\EducationAuthentication;
  10. use app\common\model\Like;
  11. use app\common\model\MoneyLog;
  12. use app\common\model\UserObject;
  13. use app\common\model\WorkAuthentication;
  14. use fast\Random;
  15. use http\Params;
  16. use think\Config;
  17. use think\Db;
  18. use think\Exception;
  19. use think\Request;
  20. use think\Validate;
  21. use app\common\model\User as UserModel;
  22. use addons\epay\controller\Api as payApi;
  23. use app\api\controller\Common;
  24. /**
  25. * 会员接口
  26. */
  27. class User extends Api
  28. {
  29. protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third'];
  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="integrity", description='个人资料进度')
  41. * @ApiReturnParams(name="ilike", description='我喜欢的')
  42. * @ApiReturnParams(name="likeme", description='喜欢我的')
  43. * @ApiReturnParams(name="apply", description='申请我的')
  44. * @ApiReturnParams(name="authentication", description='认证数量')
  45. */
  46. public function index()
  47. {
  48. $uid = $this->auth->id;
  49. $userinfo = UserModel::where('id',$uid)
  50. ->with('userObject')
  51. ->find()
  52. ->toArray();
  53. $userinfo['integrity'] = $this->integrity();
  54. $userinfo['ilike'] = Like::where(['uid'=>$uid,'type'=>1])->count();
  55. $userinfo['likeme'] = Like::where(['nid'=>$uid,'type'=>1])->count();
  56. $userinfo['apply'] = Apply::where('nid',$uid)->count();
  57. $userinfo['lookme'] = Like::where(['nid'=>$uid,'type'=>2])->count();
  58. $userinfo['authentication'] = 0;
  59. $userinfo['id_authentication']?$userinfo['authentication']++:'';
  60. $userinfo['work_authentication']?$userinfo['authentication']++:'';
  61. $userinfo['education_authentication']?$userinfo['authentication']++:'';
  62. $this->success('', ['welcome' => $userinfo]);
  63. }
  64. //计算信息完整度百分比
  65. public function integrity(){
  66. $userinfo = UserModel::where('id',$this->auth->id)
  67. ->field('avatar,gender,nickname,id,birthday,marriage,children,height,education,school,work,min_income,max_income,region_province,region_city,region_area,futurehometown,min_marriedtime,max_marriedtime,wx,signature,photo,tag,constellation,house,car,father_work,mother_work,brother')
  68. ->find()
  69. ->toArray();
  70. $userobject = UserObject::where('uid',$this->auth->id)->find()->toArray();
  71. $sum = count($userinfo) + count($userobject);
  72. $cpl = round( $this->count_($userinfo)+$this->count_($userobject)/$sum * 100 , 2) . "%";
  73. return $cpl;
  74. }
  75. //计算用户信息数量
  76. public function count_($arr){
  77. foreach ($arr as $k=>$v){
  78. if($v == ''){
  79. unset($arr[$k]);
  80. }
  81. }
  82. return count($arr);
  83. }
  84. /**
  85. * 我喜欢的/喜欢我的/申请我的/看了我的列表
  86. * @param string $type 1我喜欢的 2喜欢我的 3申请我的 4看了我的
  87. */
  88. public function dynamic(){
  89. $uid = $this->auth->id;
  90. $type = input('type');
  91. if($type==1){
  92. $ilike = Like::where(['uid'=>$uid,'type'=>1])
  93. ->with('user')
  94. ->select();
  95. $res = $ilike;
  96. }elseif($type==2){
  97. $ilike = Like::where(['nid'=>$uid,'type'=>1])
  98. ->with('user')
  99. ->select();
  100. $res = $ilike;
  101. }elseif($type==3){
  102. $ilike = Apply::where(['nid'=>$uid])
  103. ->with('applyme')
  104. ->select();
  105. $res = $ilike;
  106. }elseif($type==4){
  107. $ilike = Like::where(['nid'=>$uid,'type'=>2])
  108. ->with('user')
  109. ->select();
  110. $res = $ilike;
  111. }
  112. $this->success('',$res);
  113. }
  114. /**
  115. * 申请我的操作
  116. * @param string $id id
  117. * @param string $type 1同意 2拒绝
  118. */
  119. public function applyop(){
  120. $type = input('type');
  121. $apply = Apply::get(['status'=>0,'id'=>input('id')]);
  122. if(!$apply)$this->error('数据异常');
  123. if($type==1){
  124. $apply->save(['status'=>1]);
  125. $this->success('已同意',$apply);
  126. }elseif($type==2){
  127. $apply->save(['status'=>2]);
  128. $grain = $apply['grain']*0.5;
  129. UserModel::money($grain,$apply['uid'],'拒绝认识申请,退还狗粮');
  130. $this->success('已拒绝',$apply);
  131. }
  132. }
  133. /**
  134. * 会员登录
  135. *
  136. * @ApiMethod (POST)
  137. * @param string $account 账号
  138. * @param string $password 密码
  139. */
  140. public function login()
  141. {
  142. $account = $this->request->post('account');
  143. $password = $this->request->post('password');
  144. if (!$account || !$password) {
  145. $this->error(__('Invalid parameters'));
  146. }
  147. $ret = $this->auth->login($account, $password);
  148. if ($ret) {
  149. $data = ['userinfo' => $this->auth->getUserinfo()];
  150. $this->success(__('Logged in successful'), $data);
  151. } else {
  152. $this->error($this->auth->getError());
  153. }
  154. }
  155. /**
  156. * 手机验证码登录
  157. *
  158. * @ApiMethod (POST)
  159. * @param string $mobile 手机号
  160. * @param string $captcha 验证码
  161. * @param string $code code
  162. */
  163. public function mobilelogin()
  164. {
  165. $mobile = $this->request->post('mobile');
  166. $captcha = $this->request->post('captcha');
  167. $code = $this->request->post('code');
  168. // if (!$mobile || !$captcha || $code) {
  169. // $this->error(__('Invalid parameters'));
  170. // }
  171. if (!Validate::regex($mobile, "^1\d{10}$")) {
  172. $this->error(__('Mobile is incorrect'));
  173. }
  174. // if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
  175. // $this->error(__('Captcha is incorrect'));
  176. // }
  177. $user = \app\common\model\User::getByMobile($mobile);
  178. if ($user) {
  179. if ($user->status != 'normal') {
  180. $this->error(__('Account is locked'));
  181. }
  182. //如果已经有账号则直接登录
  183. $ret = $this->auth->direct($user->id);
  184. } else {
  185. $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, [],$code);
  186. //注册奖励
  187. $u = new \app\common\model\User();
  188. $u->registerAward($this->auth->id);
  189. }
  190. if ($ret) {
  191. Sms::flush($mobile, 'mobilelogin');
  192. $data = ['userinfo' => $this->auth->getUserinfo()];
  193. $data['openid'] = (new \app\api\controller\Common())->getOpenid($code);
  194. $this->success(__('Logged in successful'), $data);
  195. } else {
  196. $this->error($this->auth->getError());
  197. }
  198. }
  199. // /**
  200. // * 注册会员
  201. // *
  202. // * @ApiMethod (POST)
  203. // * @param string $username 用户名
  204. // * @param string $password 密码
  205. // * @param string $email 邮箱
  206. // * @param string $mobile 手机号
  207. // * @param string $code 验证码
  208. // */
  209. // public function register()
  210. // {
  211. // $username = $this->request->post('username');
  212. // $password = $this->request->post('password');
  213. // $email = $this->request->post('email');
  214. // $mobile = $this->request->post('mobile');
  215. // $code = $this->request->post('code');
  216. // if (!$username || !$password) {
  217. // $this->error(__('Invalid parameters'));
  218. // }
  219. // if ($email && !Validate::is($email, "email")) {
  220. // $this->error(__('Email is incorrect'));
  221. // }
  222. // if ($mobile && !Validate::regex($mobile, "^1\d{10}$")) {
  223. // $this->error(__('Mobile is incorrect'));
  224. // }
  225. // $ret = Sms::check($mobile, $code, 'register');
  226. // if (!$ret) {
  227. // $this->error(__('Captcha is incorrect'));
  228. // }
  229. // $ret = $this->auth->register($username, $password, $email, $mobile, []);
  230. // if ($ret) {
  231. // $data = ['userinfo' => $this->auth->getUserinfo()];
  232. // $this->success(__('Sign up successful'), $data);
  233. // } else {
  234. // $this->error($this->auth->getError());
  235. // }
  236. // }
  237. /**
  238. * 退出登录
  239. * @ApiMethod (POST)
  240. */
  241. public function logout()
  242. {
  243. if (!$this->request->isPost()) {
  244. $this->error(__('Invalid parameters'));
  245. }
  246. $this->auth->logout();
  247. $this->success(__('Logout successful'));
  248. }
  249. /**
  250. * 修改会员个人信息
  251. *
  252. * @ApiMethod (POST)
  253. * @param string $avatar 头像地址
  254. * @param string $username 用户名
  255. * @param string $nickname 昵称
  256. * @param string $bio 个人简介
  257. */
  258. public function profile()
  259. {
  260. $user = $this->auth->getUser();
  261. $username = $this->request->post('username');
  262. $nickname = $this->request->post('nickname');
  263. $bio = $this->request->post('bio');
  264. $avatar = $this->request->post('avatar', '', 'trim,strip_tags,htmlspecialchars');
  265. if ($username) {
  266. $exists = \app\common\model\User::where('username', $username)->where('id', '<>', $this->auth->id)->find();
  267. if ($exists) {
  268. $this->error(__('Username already exists'));
  269. }
  270. $user->username = $username;
  271. }
  272. if ($nickname) {
  273. $exists = \app\common\model\User::where('nickname', $nickname)->where('id', '<>', $this->auth->id)->find();
  274. if ($exists) {
  275. $this->error(__('Nickname already exists'));
  276. }
  277. $user->nickname = $nickname;
  278. }
  279. $user->bio = $bio;
  280. $user->avatar = $avatar;
  281. $user->save();
  282. $this->success();
  283. }
  284. /**
  285. * 修改手机号
  286. *
  287. * @ApiMethod (POST)
  288. * @param string $mobile 手机号
  289. * @param string $captcha 验证码
  290. */
  291. public function changemobile()
  292. {
  293. $user = $this->auth->getUser();
  294. $mobile = $this->request->post('mobile');
  295. $captcha = $this->request->post('captcha');
  296. if (!$mobile || !$captcha) {
  297. $this->error(__('Invalid parameters'));
  298. }
  299. if (!Validate::regex($mobile, "^1\d{10}$")) {
  300. $this->error(__('Mobile is incorrect'));
  301. }
  302. if (\app\common\model\User::where('mobile', $mobile)->where('id', '<>', $user->id)->find()) {
  303. $this->error(__('Mobile already exists'));
  304. }
  305. $result = Sms::check($mobile, $captcha, 'changemobile');
  306. if (!$result) {
  307. $this->error(__('Captcha is incorrect'));
  308. }
  309. $verification = $user->verification;
  310. $verification->mobile = 1;
  311. $user->verification = $verification;
  312. $user->mobile = $mobile;
  313. $user->save();
  314. Sms::flush($mobile, 'changemobile');
  315. $this->success();
  316. }
  317. /**
  318. * 第三方登录
  319. *
  320. * @ApiMethod (POST)
  321. * @param string $platform 平台名称
  322. * @param string $code Code码
  323. */
  324. public function third()
  325. {
  326. $url = url('user/index');
  327. $platform = $this->request->post("platform");
  328. $code = $this->request->post("code");
  329. $config = get_addon_config('third');
  330. if (!$config || !isset($config[$platform])) {
  331. $this->error(__('Invalid parameters'));
  332. }
  333. $app = new \addons\third\library\Application($config);
  334. //通过code换access_token和绑定会员
  335. $result = $app->{$platform}->getUserInfo(['code' => $code]);
  336. if ($result) {
  337. $loginret = \addons\third\library\Service::connect($platform, $result);
  338. if ($loginret) {
  339. $data = [
  340. 'userinfo' => $this->auth->getUserinfo(),
  341. 'thirdinfo' => $result
  342. ];
  343. $this->success(__('Logged in successful'), $data);
  344. }
  345. }
  346. $this->error(__('Operation failed'), $url);
  347. }
  348. /**
  349. * 重置密码
  350. *
  351. * @ApiMethod (POST)
  352. * @param string $mobile 手机号
  353. * @param string $newpassword 新密码
  354. * @param string $captcha 验证码
  355. */
  356. public function resetpwd()
  357. {
  358. $type = $this->request->post("type");
  359. $mobile = $this->request->post("mobile");
  360. $email = $this->request->post("email");
  361. $newpassword = $this->request->post("newpassword");
  362. $captcha = $this->request->post("captcha");
  363. if (!$newpassword || !$captcha) {
  364. $this->error(__('Invalid parameters'));
  365. }
  366. //验证Token
  367. if (!Validate::make()->check(['newpassword' => $newpassword], ['newpassword' => 'require|regex:\S{6,30}'])) {
  368. $this->error(__('Password must be 6 to 30 characters'));
  369. }
  370. if ($type == 'mobile') {
  371. if (!Validate::regex($mobile, "^1\d{10}$")) {
  372. $this->error(__('Mobile is incorrect'));
  373. }
  374. $user = \app\common\model\User::getByMobile($mobile);
  375. if (!$user) {
  376. $this->error(__('User not found'));
  377. }
  378. $ret = Sms::check($mobile, $captcha, 'resetpwd');
  379. if (!$ret) {
  380. $this->error(__('Captcha is incorrect'));
  381. }
  382. Sms::flush($mobile, 'resetpwd');
  383. } else {
  384. if (!Validate::is($email, "email")) {
  385. $this->error(__('Email is incorrect'));
  386. }
  387. $user = \app\common\model\User::getByEmail($email);
  388. if (!$user) {
  389. $this->error(__('User not found'));
  390. }
  391. $ret = Ems::check($email, $captcha, 'resetpwd');
  392. if (!$ret) {
  393. $this->error(__('Captcha is incorrect'));
  394. }
  395. Ems::flush($email, 'resetpwd');
  396. }
  397. //模拟一次登录
  398. $this->auth->direct($user->id);
  399. $ret = $this->auth->changepwd($newpassword, '', true);
  400. if ($ret) {
  401. $this->success(__('Reset password successful'));
  402. } else {
  403. $this->error($this->auth->getError());
  404. }
  405. }
  406. /**
  407. * 基本信息填写
  408. *
  409. * @ApiMethod (POST)
  410. * @param string $sex 性别
  411. * @param string $marriage 婚姻状态
  412. * @param string $birthday 生日
  413. * @param string $height 身高
  414. * @param string $education 学历
  415. * @param string $school 毕业学校
  416. * @param string $work 工作
  417. * @param string $work 收入
  418. * @param string $region_province 家乡所在省份
  419. * @param string $region_city 家乡所在市区
  420. * @param string $region_area 家乡所在区域
  421. * @param string $futurehometown 未来定居城市
  422. * @param string $marriedtime 计划结婚
  423. * @param string $objecteducation ta的学历
  424. * @param string $objectage ta的学历
  425. * @param string $objectheight ta的身高
  426. * @param string $wx 微信号码
  427. */
  428. public function userinfo(){
  429. $rule = [
  430. 'sex|性别'=>'require',
  431. 'marriage|婚姻状态'=>'require',
  432. 'birthday|生日'=>'require',
  433. 'height|身高'=>'require',
  434. 'education|学历'=>'require',
  435. 'school|毕业学校'=>'require',
  436. 'work|工作'=>'require',
  437. 'region_province|家乡所在省份'=>'require',
  438. 'region_city|家乡所在市区'=>'require',
  439. 'region_area|家乡所在区域'=>'require',
  440. 'min_marriedtime|计划结婚'=>'require',
  441. 'max_marriedtime|计划结婚'=>'require',
  442. 'wx|微信号码'=>'require',
  443. 'image|头像'=>'require'
  444. ];
  445. $user = $this->_validate($rule);
  446. $user['image_audit'] = 0;
  447. $user_object_rule = [
  448. 'objecteducation|ta的学历'=>'require',
  449. 'min_age|ta的年龄'=>'require',
  450. 'max_age|ta的年龄'=>'require',
  451. 'min_height|ta的身高'=>'require',
  452. 'max_height|ta的身高'=>'require'
  453. ];
  454. $user_object = $this->_validate($user_object_rule);
  455. $user_object['uid'] = $this->auth->id;
  456. Db::startTrans();
  457. try {
  458. UserModel::update($user);
  459. UserObject::insert($user_object);
  460. Db::commit();
  461. $this->success('上传成功');
  462. }catch (Exception $exception){
  463. $this->error($exception);
  464. Db::rollback();
  465. return false;
  466. }
  467. }
  468. /**
  469. * 个人资料编辑
  470. * @param string $avatar 头像
  471. * @param string $photo 相册
  472. * @param string $nickname 昵称
  473. * @param string $region_province 家乡所在省份
  474. * @param string $region_city 家乡所在市区
  475. * @param string $region_area 家乡所在区域
  476. * @param string $work 工作
  477. * @param string $min_income 收入最小值
  478. * @param string $max_income 收入最大值
  479. */
  480. public function userinfoedit(){
  481. $data = input('post.');
  482. if(!$data['avatar']){
  483. $data['image_audit'] = 0;
  484. }
  485. $result = UserModel::update($data,['id',$this->auth->id]);
  486. if($result){
  487. $this->success('编辑成功',$result);
  488. }else{
  489. $this->error('编辑失败');
  490. }
  491. }
  492. /**
  493. * 关于自己编辑
  494. * @param string $max_income 星座
  495. * @param string $height 身高
  496. * @param string $marriage 婚姻状态0未婚 1已婚
  497. * @param string $children 有无子女0无 1有
  498. * @param string $min_marriedtime 计划结婚最小值
  499. * @param string $max_marriedtime 计划结婚最大值
  500. * @param string $education 学历
  501. * @param string $school 毕业学校
  502. * @param string $house 房子1有 0没有
  503. * @param string $car 车子1有 0没有
  504. * @param string $father_work 父亲工作
  505. * @param string $mother_work 母亲工作
  506. * @param string $brother 兄弟姐妹1有 2无
  507. */
  508. public function aboutuser(){
  509. $input = input('post.');
  510. $data = UserModel::update($input,['id'=>$this->auth->id]);//birthday
  511. if($data){
  512. $this->success('请求成功',$data);
  513. }else{
  514. $this->error('请求失败');
  515. }
  516. }
  517. /**
  518. * 希望对方编辑
  519. * @param string $constellation 星座
  520. * @param string $min_age 最小年龄
  521. * @param string $max_age 最大年龄
  522. * @param string $min_height 最小身高
  523. * @param string $max_height 最大身高
  524. * @param string $education 学历
  525. * @param string $car 车子1有 2无 3不限
  526. * @param string $house 房子1有 2无 3不限
  527. * @param string $marry 婚史1有 2无 3不限
  528. * @param string $children 子女1有 2无 3不限
  529. * @param string $locality 本地1是 2不是 3不限
  530. */
  531. public function aboutobject(){
  532. $input = input('post.');
  533. $data = UserObject::update($input,['uid'=>$this->auth->id]);
  534. if($data){
  535. $this->success('请求成功',$data);
  536. }else{
  537. $this->error('请求失败');
  538. }
  539. }
  540. /**
  541. * 标签编辑
  542. * @param string $tag 标签id(逗号分割)
  543. *
  544. */
  545. public function tagedit(){
  546. if($this->request->post()){
  547. $tag = UserModel::update(['tag'=>input('tag'),'id'=>$this->auth->id]);
  548. if($tag)$this->success('保存成功',$tag);
  549. $this->error('保存失败');
  550. }else{
  551. $this->success('',$this->auth->tag);
  552. }
  553. }
  554. /**
  555. * 个性签名编辑
  556. * @param string $signature 个性签名
  557. */
  558. public function signatureEdit(){
  559. $data = $this->_validate(['signature|内容'=>'require']);
  560. $user = UserModel::where('id',$this->auth->id)->findOrFail();
  561. $user->save($data)?$this->success('',$user):$this->error('失败');
  562. }
  563. /**
  564. * 关于我编辑
  565. * @param string $mehow 我的情况
  566. * @param string $objecthow 希望对方情况
  567. * @param string $familyhow 家庭情况
  568. */
  569. public function meHowEdit(){
  570. $data = $this->_validate(
  571. ['mehow|内容'=>'require',
  572. 'objecthow|内容'=>'require',
  573. 'familyhow|内容'=>'require',]
  574. );
  575. $user = UserModel::where('id',$this->auth->id)->findOrFail();
  576. $user->save($data)?$this->success('',$user):$this->error('失败');
  577. }
  578. /**
  579. * 身份认证
  580. * @param string $
  581. */
  582. public function idAuthentication(){
  583. }
  584. /**
  585. * 学历认证
  586. * @param string $education 学历
  587. * @param string $school 学校
  588. * @param string $authentication_method 认证方式
  589. * @param string $image 照片
  590. */
  591. public function educationAuthentication(){
  592. $rule = [
  593. 'education|学历'=>'require',
  594. 'school|学校'=>'require',
  595. 'authentication_method|认证方式'=>'require',
  596. 'image|照片'=>'require'
  597. ];
  598. $data = $this->_validate($rule);
  599. $data['uid'] = $this->auth->id;
  600. $data['status'] = 0;
  601. $res = EducationAuthentication::insert($data);
  602. if ($res){
  603. $this->success('',$res);
  604. }
  605. $this->error('提交失败');
  606. }
  607. /**
  608. * 工作认证
  609. * @param string $work 职业
  610. * @param string $company_name 公司名称
  611. * @param string $authentication_method 认证方式
  612. * @param string $image 照片
  613. */
  614. public function workAuthentication(){
  615. $rule = [
  616. 'work|学历'=>'require',
  617. 'company_name|公司名称'=>'require',
  618. 'authentication_method|认证方式'=>'require',
  619. 'image|照片'=>'require'
  620. ];
  621. $data = $this->_validate($rule);
  622. $data['uid'] = $this->auth->id;
  623. $data['status'] = 0;
  624. $res = WorkAuthentication::insert($data);
  625. if ($res){
  626. $this->success('',$res);
  627. }
  628. $this->error('提交失败');
  629. }
  630. /**
  631. * 狗粮明细
  632. */
  633. public function moneyDetail(){
  634. $log = MoneyLog::all(['user_id'=>$this->auth->id]);
  635. foreach ($log as &$value){
  636. $value['createtime'] = date('Y-m-d H:i:s',$value['createtime']);
  637. }
  638. $this->success('',$log);
  639. }
  640. /**
  641. * 做任务赚狗粮
  642. * @ApiMethod (POST)
  643. * @returnparam (name='',description='0未完成 1待领取 2已领取')
  644. */
  645. public function gainMoney(){
  646. $uid = $this->auth->id;
  647. if($this->request->post()){
  648. }else{
  649. $gain_grain = \config('site.gain_grain');
  650. MoneyLog::where(['user_id'=>$uid,'memo'=>'新人注册奖励'])->find()?$gain_grain['新人注册奖励']=2:$gain_grain['新人注册奖励']=1;
  651. if(MoneyLog::where(['user_id'=>$uid,'memo'=>'完善资料'])->find()){
  652. $gain_grain['完善资料']=2;
  653. }else{
  654. $this->integrity()=='100%'?$gain_grain['完善资料']=1:$gain_grain['完善资料']=0;
  655. }
  656. if(MoneyLog::where(['user_id'=>$uid,'memo'=>'身份认证'])->find()){
  657. $gain_grain['身份认证']=2;
  658. }else{
  659. $this->auth->id_authentication=='1'?$gain_grain['身份认证']=1:$gain_grain['身份认证']=0;
  660. }
  661. if(MoneyLog::where(['user_id'=>$uid,'memo'=>'学历认证'])->find()){
  662. $gain_grain['学历认证']=2;
  663. }else{
  664. $this->auth->education_authentication=='1'?$gain_grain['学历认证']=1:$gain_grain['学历认证']=0;
  665. }
  666. if(MoneyLog::where(['user_id'=>$uid,'memo'=>'工作认证'])->find()){
  667. $gain_grain['工作认证']=2;
  668. }else{
  669. $this->auth->work_authentication=='1'?$gain_grain['工作认证']=1:$gain_grain['工作认证']=0;
  670. }
  671. $gain_grain['邀请用户注册'] = 0;
  672. }
  673. $this->success('',$gain_grain);
  674. }
  675. /**
  676. * 狗粮充值
  677. */
  678. public function addMoney(){
  679. echo \addons\epay\library\Service::submitOrder("99.9", "订单号", "wechat", "订单标题", "回调地址", "返回地址", "支付方法");
  680. $params = [
  681. 'amount'=>"99.9",
  682. 'orderid'=>"订单号",
  683. 'type'=>"wechat",
  684. 'title'=>"订单标题",
  685. 'notifyurl'=>"回调地址",
  686. 'returnurl'=>"返回地址",
  687. 'method'=>"mp",
  688. 'openid'=>"用户的OpenID"
  689. ];
  690. echo \addons\epay\library\Service::submitOrder($params);
  691. }
  692. /**
  693. * 活动列表
  694. * @param string $id id(获取详情时传)
  695. */
  696. public function activity(){
  697. if(!input('id')){
  698. $this->success('',Activity::field('content',true)->select());
  699. }else{
  700. $this->success('',Activity::find());
  701. }
  702. }
  703. }