User.php 32 KB

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