User.php 30 KB

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