User.php 31 KB

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