User.php 30 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042
  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 fast\Random;
  7. use think\Db;
  8. use think\Validate;
  9. /**
  10. * 会员接口
  11. */
  12. class User extends Api
  13. {
  14. protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third','sendPhone','wechatLogin'];
  15. protected $noNeedRight = '*';
  16. public function _initialize()
  17. {
  18. parent::_initialize();
  19. }
  20. /**
  21. * 会员登录
  22. *
  23. * @param string $account 账号
  24. * @param string $password 密码
  25. */
  26. public function login()
  27. {
  28. $account = $this->request->request('account');
  29. $password = $this->request->request('password');
  30. if (!$account || !$password) {
  31. $this->error(__('Invalid parameters'));
  32. }
  33. $ret = $this->auth->login($account, $password);
  34. if ($ret) {
  35. $data = ['userinfo' => $this->auth->getUserinfo()];
  36. $this->success(__('Logged in successful'), $data);
  37. } else {
  38. $this->error($this->auth->getError());
  39. }
  40. }
  41. /**
  42. * 手机验证码登录
  43. *
  44. * @param string $mobile 手机号
  45. * @param string $captcha 验证码
  46. */
  47. public function mobilelogin()
  48. {
  49. $mobile = $this->request->request('mobile');
  50. $captcha = $this->request->request('captcha');
  51. if (!$mobile || !$captcha) {
  52. $this->error(__('Invalid parameters'));
  53. }
  54. if (!Validate::regex($mobile, "^1\d{10}$")) {
  55. $this->error(__('Mobile is incorrect'));
  56. }
  57. // $ret = session($mobile);
  58. $ret = Db::name('captcha')->where('mobile',$mobile)->order('create_time desc')->find();
  59. if (!$ret) {
  60. $this->error(__('Captcha is incorrect'));
  61. }
  62. if ($ret) {
  63. if ($ret['number'] != $captcha) {
  64. $this->error('验证码不正确');
  65. }
  66. if(time()-$ret['create_time'] > 300) {
  67. $this->error('验证码超时');
  68. }
  69. }
  70. $user = \app\common\model\User::getByMobile($mobile);
  71. if ($user) {
  72. if ($user->status != '1') {
  73. $this->error(__('Account is locked'));
  74. }
  75. //如果已经有账号则直接登录
  76. $ret = $this->auth->direct($user->id);
  77. if ($ret) {
  78. Sms::flush($mobile, 'mobilelogin');
  79. $data = ['userinfo' => $this->auth->getUserinfo()];
  80. $this->success(__('Logged in successful'), $data);
  81. } else {
  82. $this->error($this->auth->getError());
  83. }
  84. } else {
  85. return $this->error('暂无账此号请去注册');
  86. // $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, []);
  87. }
  88. }
  89. /**
  90. * 注册会员
  91. *
  92. * @param string $password 密码
  93. * @param string $group_id 身份012
  94. * @param string $mobile 手机号
  95. * @param string $code 验证码
  96. */
  97. public function register()
  98. {
  99. $password = $this->request->request('password');
  100. $mobile = $this->request->request('mobile');
  101. $group_id = $this->request->request('group_id');
  102. $username = $mobile;
  103. $code = $this->request->request('code');
  104. if (!$username || !$password) {
  105. $this->error(__('Invalid parameters'));
  106. }
  107. if ($mobile && !Validate::regex($mobile, "^1\d{10}$")) {
  108. $this->error(__('Mobile is incorrect'));
  109. }
  110. // $ret = session($mobile);
  111. $ret = Db::name('captcha')->where('mobile',$mobile)->order('create_time desc')->find();
  112. if (!$ret) {
  113. $this->error(__('Captcha is incorrect'));
  114. }
  115. if ($ret) {
  116. if ($ret['number'] != $code) {
  117. $this->error('验证码不正确');
  118. }
  119. if(time()-$ret['create_time'] > 300) {
  120. $this->error('验证码超时');
  121. }
  122. }
  123. if (!$group_id) {
  124. $group_id = 0;
  125. }
  126. $ret = $this->auth->register($username, $password, '', $mobile, [], $group_id);
  127. if ($ret) {
  128. $data = ['userinfo' => $this->auth->getUserinfo()];
  129. $this->success(__('Sign up successful'), $data);
  130. } else {
  131. $this->error($this->auth->getError());
  132. }
  133. }
  134. /**
  135. * 授权登录
  136. * @param string $group_id 身份012
  137. */
  138. public function wechatLogin()
  139. {
  140. $data = input('get.');
  141. $appid = "wxe02aa578255f9184 ";
  142. $secret = "39ec8add0b8d4ed794e9cb330a334538";
  143. $js_code = $data['js_code'];
  144. $url = "https://api.weixin.qq.com/sns/jscode2session?appid=$appid&secret=$secret&js_code=$js_code&grant_type=authorization_code";
  145. $ch = curl_init(); //初始化
  146. curl_setopt($ch, CURLOPT_URL, $url); //设置访问的URL
  147. curl_setopt($ch, CURLOPT_HEADER, false); //设置不需要头信息
  148. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);//只获取页面内容,但不输出
  149. $str = curl_exec($ch); //执行访问,返回结果
  150. curl_close($ch); //关闭curl,释放资源
  151. $openid = json_decode($str, true);
  152. dump($openid);die;
  153. $data["user_openid"] = $openid["openid"];
  154. dump($data);
  155. }
  156. /**
  157. * 重置密码
  158. *
  159. * @param string $mobile 手机号
  160. * @param string $newpassword 新密码
  161. * @param string $captcha 验证码
  162. */
  163. public function resetpwd()
  164. {
  165. $mobile = $this->request->request("mobile");
  166. $newpassword = $this->request->request("newpassword");
  167. $captcha = $this->request->request("captcha");
  168. if (!$newpassword || !$captcha) {
  169. $this->error(__('Invalid parameters'));
  170. }
  171. if (!Validate::regex($mobile, "^1\d{10}$")) {
  172. $this->error(__('Mobile is incorrect'));
  173. }
  174. $user = \app\common\model\User::getByMobile($mobile);
  175. if (!$user) {
  176. $this->error(__('User not found'));
  177. }
  178. // $ret = session($mobile);
  179. $ret = Db::name('captcha')->where('mobile',$mobile)->order('create_time desc')->find();
  180. if (!$ret) {
  181. $this->error(__('Captcha is incorrect'));
  182. }
  183. if ($ret) {
  184. if ($ret['number'] != $captcha) {
  185. $this->error('验证码不正确');
  186. }
  187. if(time()-$ret['create_time'] > 300) {
  188. $this->error('验证码超时');
  189. }
  190. }
  191. //模拟一次登录
  192. $this->auth->direct($user->id);
  193. $rets = $this->auth->changepwd($newpassword, '', true);
  194. if ($rets) {
  195. $this->success(__('Reset password successful'));
  196. } else {
  197. $this->error($this->auth->getError());
  198. }
  199. }
  200. /**
  201. * 发送验证码
  202. *
  203. * @param string $mobile 手机号
  204. * @param string $type 1注册2忘记3修改密码
  205. */
  206. public function sendPhone()
  207. {
  208. $mobile = $this->request->param('mobile');
  209. $type = $this->request->param('type');
  210. if (!isset($type) || empty($type)) return $this->error('参数错误');
  211. if ($type == 1) {
  212. $issetphone = Db::name('user')->where('mobile', $mobile)->find();
  213. if (isset($issetphone)) return $this->error('此账号已存在');
  214. }
  215. if ($type == 3) {
  216. $user = $this->auth->getUser();
  217. $isuseourphone = Db::name('user')->where('id', $user['id'])->where('mobile', $mobile)->find();
  218. if (!$isuseourphone) return $this->error('请使用本账号手机号修改密码');
  219. }
  220. $number = rand(1000, 9999);
  221. $res = send_sms($mobile, 1, ['code' => $number]);
  222. if (isset($res['Message']) && $res['Message'] == "OK") {
  223. $data = [
  224. 'mobile' =>$mobile,
  225. 'number' =>$number,
  226. 'create_time' =>time(),
  227. ];
  228. Db::name('captcha')->insert($data);
  229. return $this->success('发送成功', $number);
  230. } else {
  231. return $this->error('发送失败');
  232. }
  233. }
  234. /**
  235. * 用户信息
  236. */
  237. public function userInfo()
  238. {
  239. $user = $this->auth->getUser();
  240. $data['id'] = $user['id'];
  241. $data['group_id'] = $user['group_id'];
  242. $data['level'] = $user['level'];
  243. $data['company'] = $user['company'];
  244. $data['mobile'] = $user['mobile'];
  245. $data['position'] = $user['position'];
  246. $data['shenhe_status'] = $user['shenhe_status'];
  247. $data['fuwu'] = $user['fuwu'];
  248. $data['luntan'] = $user['luntan'];
  249. $data['huodong'] = $user['huodong'];
  250. $data['avatar'] = $user['avatar']?$user['avatar']:config('site.httpurl')."/assets/img/qrcode.png";
  251. $domain = strstr($data['avatar'], 'http');
  252. if (!$domain) {
  253. $data['avatar'] = config('site.httpurl').$data['avatar'];
  254. }
  255. $data['username'] = $user['username'];
  256. $data['nickname'] = $user['nickname'];
  257. if ($user['group_id'] == 0 ) {
  258. unset($data['shenhe_status']);
  259. $data['zhiye'] = '个人';
  260. $data['wanshan_status'] = 1;
  261. if (empty($user['nickname']) || empty($user['position']) || empty($user['company'])) {
  262. $data['wanshan_status'] = 0;
  263. }
  264. $data['fensi'] = Db::name('follow')->where('be_uid',$user['id'])->count();
  265. $data['guanzhu'] = Db::name('follow')->where('uid',$user['id'])->count();
  266. if (!empty($user['company'])) {
  267. $data['tongshi'] = Db::name('user')->where('id','neq',$user['id'])->where('company',$user['company'])->count();
  268. } else {
  269. $data['tongshi'] = 0;
  270. }
  271. }
  272. if ($user['group_id'] == 1 ) {
  273. $data['zhiye'] = '商家';
  274. // $data['wanshan_status'] = 1;
  275. //
  276. // $iswansahn = Db::name('user_shangjia')->where('uid',$user['id'])->find();
  277. //
  278. // $data['shangjia_wanshang_status'] = 1;
  279. //
  280. // if (!$iswansahn) {
  281. // $data['shangjia_wanshang_status'] = 0;
  282. // }
  283. // if (empty($user['nickname']) || empty($user['position']) || empty($user['company']) ) {
  284. //
  285. // }
  286. $data['fensi'] = Db::name('follow')->where('be_uid',$user['id'])->count();
  287. $data['guanzhu'] = Db::name('follow')->where('uid',$user['id'])->count();
  288. if (!empty($user['company'])) {
  289. $data['tongshi'] = Db::name('user')->where('id','neq',$user['id'])->where('company',$user['company'])->count();
  290. } else {
  291. $data['tongshi'] = 0;
  292. }
  293. }
  294. if ($user['group_id'] == 2 ) {
  295. $data['zhiye'] = '企业';
  296. // $data['wanshan_status'] = 1;
  297. //
  298. // $iswansahn = Db::name('user_qiye')->where('uid',$user['id'])->find();
  299. //
  300. // $data['shangjia_wanshang_status'] = 1;
  301. //
  302. // if (!$iswansahn) {
  303. // $data['shangjia_wanshang_status'] = 0;
  304. // }
  305. //
  306. // if (empty($user['nickname']) || empty($user['position']) || empty($user['company'])) {
  307. // $data['wanshan_status'] = 0;
  308. // }
  309. $data['fensi'] = Db::name('follow')->where('be_uid',$user['id'])->count();
  310. $data['guanzhu'] = Db::name('follow')->where('uid',$user['id'])->count();
  311. if (!empty($user['company'])) {
  312. $data['tongshi'] = Db::name('user')->where('id','neq',$user['id'])->where('company',$user['company'])->count();
  313. } else {
  314. $data['tongshi'] = 0;
  315. }
  316. }
  317. return $this->success('',$data);
  318. }
  319. /**
  320. * 修改会员个人信息
  321. *
  322. * @param string $avatar 头像地址
  323. * @param string $username 用户名
  324. * @param string $position 职位
  325. * @param string $company 职位
  326. */
  327. public function profile()
  328. {
  329. $user = $this->auth->getUser();
  330. $username = $this->request->request('username');
  331. $position = $this->request->request('position');
  332. $company = $this->request->request('company');
  333. $avatar = $this->request->request('avatar');
  334. if ($username) {
  335. $exists = \app\common\model\User::where('username', $username)->where('id', '<>', $this->auth->id)->find();
  336. if ($exists) {
  337. $this->error(__('Username already exists'));
  338. }
  339. $user->username = $username;
  340. }
  341. $user->position = $position;
  342. $user->company = $company;
  343. $user->avatar = $avatar;
  344. $user->save();
  345. $this->success('成功');
  346. }
  347. /**
  348. * 公司标签
  349. *
  350. */
  351. public function leabel()
  352. {
  353. $data = Db::name('label')->order('sort desc')->select();
  354. return $this->success('',$data);
  355. }
  356. /**
  357. * 完善企业信息
  358. *
  359. * @ApiMethod (POST)
  360. * @param string $category 所属范畴
  361. * @param string $company_label 公司标签
  362. * @param string $company_address 公司地址
  363. * @param string $company_mobile 联系方式
  364. * @param string $notice 企业简介
  365. * @param string $fuwu_str 企业服务
  366. * @param string $fuwu_images 服务多图
  367. * @param string $wall_images 照片墙
  368. * @param string $license_image 营业执照
  369. */
  370. public function qiye()
  371. {
  372. $data = $this->request->post();
  373. if (!isset($data['category']) || empty($data['category'])) return $this->error('参数错误101');
  374. if (!isset($data['company_label']) || empty($data['company_label'])) return $this->error('参数错误102');
  375. if (!isset($data['company_address']) || empty($data['company_address'])) return $this->error('参数错误103');
  376. if (!isset($data['company_mobile']) || empty($data['company_mobile'])) return $this->error('参数错误104');
  377. if (!isset($data['notice']) || empty($data['notice'])) return $this->error('参数错误105');
  378. if (!isset($data['license_image']) || empty($data['license_image'])) return $this->error('参数错误106');
  379. $user = $this->auth->getUser();
  380. $isset = Db::name('user_qiye')->where('uid',$user['id'])->find();
  381. if ($isset) {
  382. return $this->error('您的审核已经提交过了');
  383. }
  384. $data['uid'] = $user['id'];
  385. $add = Db::name('user_qiye')->insert($data);
  386. if ($add) {
  387. Db::name('user')->where('id',$user['id'])->update(['shenhe_status' => 1]);
  388. return $this->success('提交成功');
  389. } else {
  390. return $this->error('提价失败');
  391. }
  392. }
  393. /**
  394. * 完善商家信息
  395. *
  396. * @ApiMethod (POST)
  397. * @param string $address 商家地址
  398. * @param string $str 商家简介
  399. * @param string $str_images 多图多图
  400. * @param string $wall_images 照片墙
  401. * @param string $license_image 营业执照
  402. */
  403. public function shangjia()
  404. {
  405. $data = $this->request->post();
  406. if (!isset($data['address']) || empty($data['address'])) return $this->error('参数错误103');
  407. if (!isset($data['str']) || empty($data['str'])) return $this->error('参数错误104');
  408. // if (!isset($data['notice']) || empty($data['notice'])) return $this->error('参数错误105');
  409. if (!isset($data['license_image']) || empty($data['license_image'])) return $this->error('参数错误106');
  410. $user = $this->auth->getUser();
  411. $isset = Db::name('user_shangjia')->where('uid',$user['id'])->find();
  412. if ($isset) {
  413. return $this->error('您的审核已经提交过了');
  414. }
  415. $data['uid'] = $user['id'];
  416. $add = Db::name('user_shangjia')->insert($data);
  417. if ($add) {
  418. Db::name('user')->where('id',$user['id'])->update(['shenhe_status' => 1]);
  419. return $this->success('提交成功');
  420. } else {
  421. return $this->error('提价失败');
  422. }
  423. }
  424. /**
  425. * 我的粉丝
  426. */
  427. public function fensi()
  428. {
  429. $user = $this->auth->getUser();
  430. $page = $this->request->get('page');
  431. $limit = $this->request->get('limit');
  432. if (!$page) {
  433. $pages = '0,10';
  434. } else {
  435. $page = $page - 1;
  436. if ($page < 0) $page = 0;
  437. $pages = $page . ',' . $limit;
  438. }
  439. $fensi = Db::name('follow')->where('be_uid',$user['id'])->limit($pages)->select();
  440. if (!$fensi) return $this->success('',[]);
  441. $res = [];
  442. foreach ($fensi as $k=>$v) {
  443. $userInfo = Db::name('user')->where('id',$v['uid'])->find();
  444. $res[$k]['username'] = $userInfo['username'];
  445. $res[$k]['avatar'] = $userInfo['avatar'];
  446. $res[$k]['uid'] = $userInfo['id'];
  447. $res[$k]['position'] = $userInfo['position'];
  448. $userCompany = Db::name('user')->where('company',$userInfo['company'])->where('group_id','>',0)->find();
  449. $res[$k]['company'] = $userInfo['company'];
  450. if ($userCompany && $userCompany['group_id'] == 1) {
  451. $shangjia = Db::name('user_shangjia')->where('uid',$userCompany['id'])->find();
  452. if ($shangjia) {
  453. $res[$k]['notice_str'] = mb_substr($shangjia['str'],0,10);
  454. } else {
  455. $res[$k]['notice_str'] = '';
  456. }
  457. } else if ($userCompany && $userCompany['group_id'] == 2) {
  458. $qiye = Db::name('user_qiye')->where('uid',$userCompany['id'])->find();
  459. if ($qiye) {
  460. $res[$k]['notice_str'] = mb_substr($qiye['notice'],0,10);
  461. } else {
  462. $res[$k]['notice_str'] = '';
  463. }
  464. } else {
  465. $res[$k]['notice_str'] = '';
  466. }
  467. }
  468. return $this->success('',$res);
  469. }
  470. /**
  471. * 我的关注
  472. */
  473. public function follow()
  474. {
  475. $user = $this->auth->getUser();
  476. $page = $this->request->get('page');
  477. $limit = $this->request->get('limit');
  478. if (!$page) {
  479. $pages = '0,10';
  480. } else {
  481. $page = $page - 1;
  482. if ($page < 0) $page = 0;
  483. $pages = $page . ',' . $limit;
  484. }
  485. $fensi = Db::name('follow')->where('uid',$user['id'])->limit($pages)->select();
  486. if (!$fensi) return $this->success('',[]);
  487. $res = [];
  488. foreach ($fensi as $k=>$v) {
  489. $userInfo = Db::name('user')->where('id',$v['be_uid'])->find();
  490. $res[$k]['username'] = $userInfo['username'];
  491. $res[$k]['avatar'] = $userInfo['avatar'];
  492. $res[$k]['uid'] = $userInfo['id'];
  493. $res[$k]['position'] = $userInfo['position'];
  494. $userCompany = Db::name('user')->where('company',$userInfo['company'])->where('group_id','>',0)->find();
  495. $res[$k]['company'] = $userInfo['company'];
  496. if ($userCompany && $userCompany['group_id'] == 1) {
  497. $shangjia = Db::name('user_shangjia')->where('uid',$userCompany['id'])->find();
  498. if ($shangjia) {
  499. $res[$k]['notice_str'] = mb_substr($shangjia['str'],0,10);
  500. } else {
  501. $res[$k]['notice_str'] = '';
  502. }
  503. } else if ($userCompany && $userCompany['group_id'] == 2) {
  504. $qiye = Db::name('user_qiye')->where('uid',$userCompany['id'])->find();
  505. if ($qiye) {
  506. $res[$k]['notice_str'] = mb_substr($qiye['notice'],0,10);
  507. } else {
  508. $res[$k]['notice_str'] = '';
  509. }
  510. } else {
  511. $res[$k]['notice_str'] = '';
  512. }
  513. }
  514. return $this->success('',$res);
  515. }
  516. /**
  517. * 我的同事
  518. */
  519. public function tongshi()
  520. {
  521. $user = $this->auth->getUser();
  522. if (empty($user['company'])) return $this->error('',[]);
  523. $page = $this->request->get('page');
  524. $limit = $this->request->get('limit');
  525. if (!$page) {
  526. $pages = '0,10';
  527. } else {
  528. $page = $page - 1;
  529. if ($page < 0) $page = 0;
  530. $pages = $page . ',' . $limit;
  531. }
  532. $fensi = Db::name('user')->where('company',$user['company'])->where('id','neq',$user['id'])->limit($pages)->select();
  533. if (!$fensi) return $this->success('',[]);
  534. $res = [];
  535. foreach ($fensi as $k=>$v) {
  536. $userInfo = Db::name('user')->where('id',$v['id'])->find();
  537. $res[$k]['username'] = $userInfo['username'];
  538. $res[$k]['avatar'] = $userInfo['avatar'];
  539. $res[$k]['uid'] = $userInfo['id'];
  540. $res[$k]['position'] = $userInfo['position'];
  541. $userCompany = Db::name('user')->where('company',$userInfo['company'])->where('group_id','>',0)->find();
  542. $res[$k]['company'] = $userInfo['company'];
  543. if ($userCompany && $userCompany['group_id'] == 1) {
  544. $shangjia = Db::name('user_shangjia')->where('uid',$userCompany['id'])->find();
  545. if ($shangjia) {
  546. $res[$k]['notice_str'] = mb_substr($shangjia['str'],0,10);
  547. } else {
  548. $res[$k]['notice_str'] = '';
  549. }
  550. } else if ($userCompany && $userCompany['group_id'] == 2) {
  551. $qiye = Db::name('user_qiye')->where('uid',$userCompany['id'])->find();
  552. if ($qiye) {
  553. $res[$k]['notice_str'] = mb_substr($qiye['notice'],0,10);
  554. } else {
  555. $res[$k]['notice_str'] = '';
  556. }
  557. } else {
  558. $res[$k]['notice_str'] = '';
  559. }
  560. }
  561. return $this->success('',$res);
  562. }
  563. /**
  564. * 安全中心
  565. */
  566. public function anquan()
  567. {
  568. $data =Db::name('xieyi')->select();
  569. $res['content'] = str_replace('src="','src="'.config('site.httpurl'),$data[2]['value']);
  570. return $this->success('',$res);
  571. }
  572. /**
  573. * 在线反馈
  574. *
  575. * @param string $notice 在线反馈
  576. */
  577. public function fankui()
  578. {
  579. $notice = $this->request->get('notice');
  580. if(empty($notice)) return $this->error('参数错误');
  581. $user = $this->auth->getUser();
  582. $data['uid'] = $user['id'];
  583. $data['notice'] = $notice;
  584. $data['create_time'] = date('Y-m-d H:i:s',time());
  585. $add = Db::name('fankui')->insert($data);
  586. if ($add) {
  587. return $this->success('提交成功');
  588. } else {
  589. return $this->error('提交失败');
  590. }
  591. }
  592. /**
  593. * 服务协议
  594. */
  595. public function fuwu()
  596. {
  597. $data =Db::name('xieyi')->select();
  598. $res['content'] = str_replace('src="','src="'.config('site.httpurl'),$data[0]['value']);
  599. return $this->success('',$res);
  600. }
  601. /**
  602. * 隐私政策
  603. *
  604. */
  605. public function yinsi()
  606. {
  607. $data =Db::name('xieyi')->select();
  608. $res['content'] = str_replace('src="','src="'.config('site.httpurl'),$data[1]['value']);
  609. return $this->success('',$res);
  610. }
  611. /**
  612. * 退出登录
  613. */
  614. public function logout()
  615. {
  616. $this->auth->logout();
  617. $this->success(__('Logout successful'));
  618. }
  619. /**
  620. * 注销账号
  621. *
  622. */
  623. public function zhuxiao()
  624. {
  625. $user = $this->auth->getUser();
  626. $this->auth->logout();
  627. Db::name('user')->where('id',$user['id'])->delete();
  628. $this->success('注销成功');
  629. }
  630. /**
  631. * 修改密码
  632. *
  633. * @param string $oldpwd 旧密码
  634. * @param string $nowpwd 新密码
  635. * @param string $querenpwd 确认密码
  636. */
  637. public function newPwd()
  638. {
  639. $user = $this->auth->getUser();
  640. $newpassword = $this->request->get('nowpwd');
  641. $oldpwd = $this->request->get('oldpwd');
  642. $querenpwd = $this->request->get('querenpwd');
  643. if (empty($newpassword)) return $this->error('请输入新密码');
  644. if (empty($oldpwd)) return $this->error('请输入旧密码');
  645. if (empty($querenpwd)) return $this->error('请输入确认密码');
  646. if ($newpassword != $querenpwd) {
  647. return $this->error('两次密码输入不一致');
  648. }
  649. //模拟一次登录
  650. $this->auth->direct($user->id);
  651. $rets = $this->auth->changepwd($newpassword, $oldpwd, true);
  652. if ($rets) {
  653. $this->success(__('Reset password successful'));
  654. } else {
  655. $this->error($this->auth->getError());
  656. }
  657. }
  658. /**
  659. * 消息管理
  660. *
  661. * @param string $luntan 论坛1开启2关闭
  662. * @param string $huodong 活动1开启2关闭
  663. * @param string $fuwu 服务1开启2关闭
  664. */
  665. public function message()
  666. {
  667. $luntan = $this->request->get('luntan');
  668. $huodong = $this->request->get('huodong');
  669. $fuwu = $this->request->get('fuwu');
  670. $user = $this->auth->getUser();
  671. $upd = [];
  672. if(!empty($luntan)) $upd['luntan'] = $luntan;
  673. if(!empty($huodong)) $upd['huodong'] = $huodong;
  674. if(!empty($fuwu)) $upd['fuwu'] = $fuwu;
  675. $upd = Db::name('user')->where('id',$user['id'])->update($upd);
  676. if ($upd) {
  677. return $this->success('操作成功');
  678. } else {
  679. return $this->error('操作失败');
  680. }
  681. }
  682. /**
  683. * 公司信息
  684. * @param string $uid 用户id
  685. */
  686. public function companyInfo()
  687. {
  688. $user = $this->auth->getUser();
  689. $uid = $this->request->get('uid');
  690. if($user['id'] !=$uid) return $this->error('错误');
  691. if (empty($user['company'])) return $this->error('您还未填入自己的公司名称');
  692. $qiyejia = Db::name('user')->where('company',$user['company'])->where('group_id',2)->where('shenhe_status','>',0)->find();
  693. if (!$qiyejia) return $this->error('暂未找到此公司详细信息');
  694. $uid = $qiyejia['id'];
  695. $data = Db::name('user_qiye')->where('uid',$uid)->find();
  696. $data['license_image'] = config('site.httpurl').$data['license_image'];
  697. $data['avatar_image'] = config('site.httpurl').$data['avatar_image'];
  698. $data['fuwu_images'] = explode(',',$data['fuwu_images']);
  699. $data['company'] = $user['company'];
  700. foreach ($data['fuwu_images'] as &$v) {
  701. $v = config('site.httpurl').$v;
  702. }
  703. $data['wall_images'] = explode(',',$data['wall_images']);
  704. foreach ($data['wall_images'] as &$v) {
  705. $v = config('site.httpurl').$v;
  706. }
  707. return $this->success('',$data);
  708. }
  709. /**
  710. * 编辑企业信息
  711. *
  712. * @ApiMethod (POST)
  713. * @param string $avatar_image 头像
  714. * @param string $category 所属范畴
  715. * @param string $company_label 公司标签
  716. * @param string $company_address 公司地址
  717. * @param string $company_mobile 联系方式
  718. * @param string $notice 企业简介
  719. * @param string $fuwu_str 企业服务
  720. * @param string $fuwu_images 服务多图
  721. * @param string $wall_images 照片墙
  722. * @param string $license_image 营业执照
  723. */
  724. public function updCompany()
  725. {
  726. $data = $this->request->post();
  727. if (!isset($data['category']) || empty($data['category'])) return $this->error('参数错误101');
  728. if (!isset($data['company_label']) || empty($data['company_label'])) return $this->error('参数错误102');
  729. if (!isset($data['company_address']) || empty($data['company_address'])) return $this->error('参数错误103');
  730. if (!isset($data['company_mobile']) || empty($data['company_mobile'])) return $this->error('参数错误104');
  731. if (!isset($data['notice']) || empty($data['notice'])) return $this->error('参数错误105');
  732. if (!isset($data['license_image']) || empty($data['license_image'])) return $this->error('参数错误106');
  733. $user = $this->auth->getUser();
  734. if ($user['group_id'] !=2 || $user['shenhe_status'] <1) return $this->error('对不起,请联系企业负责人修改企业信息');
  735. $data['uid'] = $user['id'];
  736. $add = Db::name('user_qiye')->where('uid',$user['id'])->update($data);
  737. if ($add) {
  738. return $this->success('提交成功');
  739. } else {
  740. return $this->error('提价失败');
  741. }
  742. }
  743. /**
  744. * 修改手机号
  745. *
  746. * @param string $mobile 手机号
  747. * @param string $captcha 验证码
  748. */
  749. public function changemobile()
  750. {
  751. $user = $this->auth->getUser();
  752. $mobile = $this->request->request('mobile');
  753. $captcha = $this->request->request('captcha');
  754. if (!$mobile || !$captcha) {
  755. $this->error(__('Invalid parameters'));
  756. }
  757. if (!Validate::regex($mobile, "^1\d{10}$")) {
  758. $this->error(__('Mobile is incorrect'));
  759. }
  760. if (\app\common\model\User::where('mobile', $mobile)->where('id', '<>', $user->id)->find()) {
  761. $this->error(__('Mobile already exists'));
  762. }
  763. $result = Sms::check($mobile, $captcha, 'changemobile');
  764. if (!$result) {
  765. $this->error(__('Captcha is incorrect'));
  766. }
  767. $verification = $user->verification;
  768. $verification->mobile = 1;
  769. $user->verification = $verification;
  770. $user->mobile = $mobile;
  771. $user->save();
  772. Sms::flush($mobile, 'changemobile');
  773. $this->success();
  774. }
  775. /**
  776. * 微信登录
  777. *
  778. * @param string $code Code码
  779. */
  780. // public function third()
  781. //
  782. // {
  783. //
  784. // $wchat = new WeChat();
  785. //
  786. //
  787. // $code = request()->param('code', "");
  788. //
  789. // $user = $wchat->getUserAccessUserInfo($code);
  790. // dump($user);die;
  791. //
  792. // }
  793. //微信登录
  794. public function third(){
  795. $code = request()->param('code', "");//获取code
  796. $appid ="wxe02aa578255f9184";
  797. $secret = "39ec8add0b8d4ed794e9cb330a334538";
  798. $url = "https://api.weixin.qq.com/sns/jscode2session?appid=$appid&secret=$secret&js_code=$code&grant_type=authorization_code";
  799. //通过code换取网页授权access_token
  800. $weixin = file_get_contents($url);
  801. dump($weixin);die;
  802. $jsondecode = json_decode($weixin); //对JSON格式的字符串进行编码
  803. $array = get_object_vars($jsondecode);//转换成数组
  804. $openid = $array['openid'];//输出openid
  805. return $openid;
  806. }
  807. }