User.php 32 KB

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