User.php 31 KB

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