User.php 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107
  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. if ($isset) {
  436. return $this->error('您的审核已经提交过了');
  437. }
  438. $data['uid'] = $user['id'];
  439. $add = Db::name('user_qiye')->insert($data);
  440. if ($add) {
  441. Db::name('user')->where('id',$user['id'])->update(['shenhe_status' => 1]);
  442. return $this->success('提交成功');
  443. } else {
  444. return $this->error('提价失败');
  445. }
  446. }
  447. /**
  448. * 完善商家信息
  449. *
  450. * @ApiMethod (POST)
  451. * @param string $address 商家地址
  452. * @param string $str 商家简介
  453. * @param string $str_images 多图多图
  454. * @param string $wall_images 照片墙
  455. * @param string $license_image 营业执照
  456. */
  457. public function shangjia()
  458. {
  459. $data = $this->request->post();
  460. if (!isset($data['address']) || empty($data['address'])) return $this->error('参数错误103');
  461. if (!isset($data['str']) || empty($data['str'])) return $this->error('参数错误104');
  462. // if (!isset($data['notice']) || empty($data['notice'])) return $this->error('参数错误105');
  463. if (!isset($data['license_image']) || empty($data['license_image'])) return $this->error('参数错误106');
  464. $user = $this->auth->getUser();
  465. $isset = Db::name('user_shangjia')->where('uid',$user['id'])->find();
  466. if ($isset) {
  467. return $this->error('您的审核已经提交过了');
  468. }
  469. $data['uid'] = $user['id'];
  470. $add = Db::name('user_shangjia')->insert($data);
  471. if ($add) {
  472. Db::name('user')->where('id',$user['id'])->update(['shenhe_status' => 1]);
  473. return $this->success('提交成功');
  474. } else {
  475. return $this->error('提价失败');
  476. }
  477. }
  478. /**
  479. * 我的粉丝
  480. */
  481. public function fensi()
  482. {
  483. $user = $this->auth->getUser();
  484. $page = $this->request->get('page');
  485. $limit = $this->request->get('limit');
  486. if (!$page) {
  487. $pages = '0,10';
  488. } else {
  489. $page = $page - 1;
  490. if ($page < 0) $page = 0;
  491. $pages = $page . ',' . $limit;
  492. }
  493. $fensi = Db::name('follow')->where('be_uid',$user['id'])->limit($pages)->select();
  494. if (!$fensi) return $this->success('',[]);
  495. $res = [];
  496. foreach ($fensi as $k=>$v) {
  497. $userInfo = Db::name('user')->where('id',$v['uid'])->find();
  498. $res[$k]['username'] = $userInfo['username'];
  499. $res[$k]['avatar'] = $userInfo['avatar'];
  500. $res[$k]['uid'] = $userInfo['id'];
  501. $res[$k]['position'] = $userInfo['position'];
  502. $userCompany = Db::name('user')->where('company',$userInfo['company'])->where('group_id','>',0)->find();
  503. $res[$k]['company'] = $userInfo['company'];
  504. if ($userCompany && $userCompany['group_id'] == 1) {
  505. $shangjia = Db::name('user_shangjia')->where('uid',$userCompany['id'])->find();
  506. if ($shangjia) {
  507. $res[$k]['notice_str'] = mb_substr($shangjia['str'],0,10);
  508. } else {
  509. $res[$k]['notice_str'] = '';
  510. }
  511. } else if ($userCompany && $userCompany['group_id'] == 2) {
  512. $qiye = Db::name('user_qiye')->where('uid',$userCompany['id'])->find();
  513. if ($qiye) {
  514. $res[$k]['notice_str'] = mb_substr($qiye['notice'],0,10);
  515. } else {
  516. $res[$k]['notice_str'] = '';
  517. }
  518. } else {
  519. $res[$k]['notice_str'] = '';
  520. }
  521. }
  522. return $this->success('',$res);
  523. }
  524. /**
  525. * 我的关注
  526. */
  527. public function follow()
  528. {
  529. $user = $this->auth->getUser();
  530. $page = $this->request->get('page');
  531. $limit = $this->request->get('limit');
  532. if (!$page) {
  533. $pages = '0,10';
  534. } else {
  535. $page = $page - 1;
  536. if ($page < 0) $page = 0;
  537. $pages = $page . ',' . $limit;
  538. }
  539. $fensi = Db::name('follow')->where('uid',$user['id'])->limit($pages)->select();
  540. if (!$fensi) return $this->success('',[]);
  541. $res = [];
  542. foreach ($fensi as $k=>$v) {
  543. $userInfo = Db::name('user')->where('id',$v['be_uid'])->find();
  544. $res[$k]['username'] = $userInfo['username'];
  545. $res[$k]['avatar'] = $userInfo['avatar'];
  546. $res[$k]['uid'] = $userInfo['id'];
  547. $res[$k]['position'] = $userInfo['position'];
  548. $userCompany = Db::name('user')->where('company',$userInfo['company'])->where('group_id','>',0)->find();
  549. $res[$k]['company'] = $userInfo['company'];
  550. if ($userCompany && $userCompany['group_id'] == 1) {
  551. $shangjia = Db::name('user_shangjia')->where('uid',$userCompany['id'])->find();
  552. if ($shangjia) {
  553. $res[$k]['notice_str'] = mb_substr($shangjia['str'],0,10);
  554. } else {
  555. $res[$k]['notice_str'] = '';
  556. }
  557. } else if ($userCompany && $userCompany['group_id'] == 2) {
  558. $qiye = Db::name('user_qiye')->where('uid',$userCompany['id'])->find();
  559. if ($qiye) {
  560. $res[$k]['notice_str'] = mb_substr($qiye['notice'],0,10);
  561. } else {
  562. $res[$k]['notice_str'] = '';
  563. }
  564. } else {
  565. $res[$k]['notice_str'] = '';
  566. }
  567. }
  568. return $this->success('',$res);
  569. }
  570. /**
  571. * 我的同事
  572. */
  573. public function tongshi()
  574. {
  575. $user = $this->auth->getUser();
  576. if (empty($user['company'])) return $this->error('',[]);
  577. $page = $this->request->get('page');
  578. $limit = $this->request->get('limit');
  579. if (!$page) {
  580. $pages = '0,10';
  581. } else {
  582. $page = $page - 1;
  583. if ($page < 0) $page = 0;
  584. $pages = $page . ',' . $limit;
  585. }
  586. $fensi = Db::name('user')->where('company',$user['company'])->where('id','neq',$user['id'])->limit($pages)->select();
  587. if (!$fensi) return $this->success('',[]);
  588. $res = [];
  589. foreach ($fensi as $k=>$v) {
  590. $userInfo = Db::name('user')->where('id',$v['id'])->find();
  591. $res[$k]['username'] = $userInfo['username'];
  592. $res[$k]['avatar'] = $userInfo['avatar'];
  593. $res[$k]['uid'] = $userInfo['id'];
  594. $res[$k]['position'] = $userInfo['position'];
  595. $userCompany = Db::name('user')->where('company',$userInfo['company'])->where('group_id','>',0)->find();
  596. $res[$k]['company'] = $userInfo['company'];
  597. if ($userCompany && $userCompany['group_id'] == 1) {
  598. $shangjia = Db::name('user_shangjia')->where('uid',$userCompany['id'])->find();
  599. if ($shangjia) {
  600. $res[$k]['notice_str'] = mb_substr($shangjia['str'],0,10);
  601. } else {
  602. $res[$k]['notice_str'] = '';
  603. }
  604. } else if ($userCompany && $userCompany['group_id'] == 2) {
  605. $qiye = Db::name('user_qiye')->where('uid',$userCompany['id'])->find();
  606. if ($qiye) {
  607. $res[$k]['notice_str'] = mb_substr($qiye['notice'],0,10);
  608. } else {
  609. $res[$k]['notice_str'] = '';
  610. }
  611. } else {
  612. $res[$k]['notice_str'] = '';
  613. }
  614. }
  615. return $this->success('',$res);
  616. }
  617. /**
  618. * 安全中心
  619. */
  620. public function anquan()
  621. {
  622. $data =Db::name('xieyi')->select();
  623. $res['content'] = str_replace('src="','src="'.config('site.httpurl'),$data[2]['value']);
  624. return $this->success('',$res);
  625. }
  626. /**
  627. * 在线反馈
  628. *
  629. * @param string $notice 在线反馈
  630. */
  631. public function fankui()
  632. {
  633. $notice = $this->request->get('notice');
  634. if(empty($notice)) return $this->error('参数错误');
  635. $user = $this->auth->getUser();
  636. $data['uid'] = $user['id'];
  637. $data['notice'] = $notice;
  638. $data['create_time'] = date('Y-m-d H:i:s',time());
  639. $add = Db::name('fankui')->insert($data);
  640. if ($add) {
  641. return $this->success('提交成功');
  642. } else {
  643. return $this->error('提交失败');
  644. }
  645. }
  646. /**
  647. * 服务协议
  648. */
  649. public function fuwu()
  650. {
  651. $data =Db::name('xieyi')->select();
  652. $res['content'] = str_replace('src="','src="'.config('site.httpurl'),$data[0]['value']);
  653. return $this->success('',$res);
  654. }
  655. /**
  656. * 隐私政策
  657. *
  658. */
  659. public function yinsi()
  660. {
  661. $data =Db::name('xieyi')->select();
  662. $res['content'] = str_replace('src="','src="'.config('site.httpurl'),$data[1]['value']);
  663. return $this->success('',$res);
  664. }
  665. /**
  666. * 退出登录
  667. */
  668. public function logout()
  669. {
  670. $this->auth->logout();
  671. $this->success(__('Logout successful'));
  672. }
  673. /**
  674. * 注销账号
  675. *
  676. */
  677. public function zhuxiao()
  678. {
  679. $user = $this->auth->getUser();
  680. $this->auth->logout();
  681. Db::name('user')->where('id',$user['id'])->delete();
  682. $this->success('注销成功');
  683. }
  684. /**
  685. * 修改密码
  686. *
  687. * @param string $oldpwd 旧密码
  688. * @param string $nowpwd 新密码
  689. * @param string $querenpwd 确认密码
  690. */
  691. public function newPwd()
  692. {
  693. $user = $this->auth->getUser();
  694. $newpassword = $this->request->get('nowpwd');
  695. $oldpwd = $this->request->get('oldpwd');
  696. $querenpwd = $this->request->get('querenpwd');
  697. if (empty($newpassword)) return $this->error('请输入新密码');
  698. if (empty($oldpwd)) return $this->error('请输入旧密码');
  699. if (empty($querenpwd)) return $this->error('请输入确认密码');
  700. if ($newpassword != $querenpwd) {
  701. return $this->error('两次密码输入不一致');
  702. }
  703. //模拟一次登录
  704. $this->auth->direct($user->id);
  705. $rets = $this->auth->changepwd($newpassword, $oldpwd, true);
  706. if ($rets) {
  707. $this->success(__('Reset password successful'));
  708. } else {
  709. $this->error($this->auth->getError());
  710. }
  711. }
  712. /**
  713. * 消息管理
  714. *
  715. * @param string $luntan 论坛1开启2关闭
  716. * @param string $huodong 活动1开启2关闭
  717. * @param string $fuwu 服务1开启2关闭
  718. */
  719. public function message()
  720. {
  721. $luntan = $this->request->get('luntan');
  722. $huodong = $this->request->get('huodong');
  723. $fuwu = $this->request->get('fuwu');
  724. $user = $this->auth->getUser();
  725. $upd = [];
  726. if(!empty($luntan)) $upd['luntan'] = $luntan;
  727. if(!empty($huodong)) $upd['huodong'] = $huodong;
  728. if(!empty($fuwu)) $upd['fuwu'] = $fuwu;
  729. $upd = Db::name('user')->where('id',$user['id'])->update($upd);
  730. if ($upd) {
  731. return $this->success('操作成功');
  732. } else {
  733. return $this->error('操作失败');
  734. }
  735. }
  736. /**
  737. * 公司信息
  738. * @param string $uid 用户id
  739. */
  740. public function companyInfo()
  741. {
  742. $user = $this->auth->getUser();
  743. $uid = $this->request->get('uid');
  744. if($user['id'] !=$uid) return $this->error('错误');
  745. if (empty($user['company'])) return $this->error('您还未填入自己的公司名称');
  746. $qiyejia = Db::name('user')->where('company',$user['company'])->where('group_id',2)->where('shenhe_status','>',0)->find();
  747. if (!$qiyejia) return $this->error('暂未找到此公司详细信息');
  748. $uid = $qiyejia['id'];
  749. $data = Db::name('user_qiye')->where('uid',$uid)->find();
  750. $data['license_image'] = config('site.httpurl').$data['license_image'];
  751. $data['avatar_image'] = config('site.httpurl').$data['avatar_image'];
  752. $data['fuwu_images'] = explode(',',$data['fuwu_images']);
  753. $data['company'] = $user['company'];
  754. foreach ($data['fuwu_images'] as &$v) {
  755. $v = config('site.httpurl').$v;
  756. }
  757. $data['wall_images'] = explode(',',$data['wall_images']);
  758. foreach ($data['wall_images'] as &$v) {
  759. $v = config('site.httpurl').$v;
  760. }
  761. return $this->success('',$data);
  762. }
  763. /**
  764. * 编辑企业信息
  765. *
  766. * @ApiMethod (POST)
  767. * @param string $avatar_image 头像
  768. * @param string $category 所属范畴
  769. * @param string $company_label 公司标签
  770. * @param string $company_address 公司地址
  771. * @param string $company_mobile 联系方式
  772. * @param string $notice 企业简介
  773. * @param string $fuwu_str 企业服务
  774. * @param string $fuwu_images 服务多图
  775. * @param string $wall_images 照片墙
  776. * @param string $license_image 营业执照
  777. */
  778. public function updCompany()
  779. {
  780. $data = $this->request->post();
  781. if (!isset($data['category']) || empty($data['category'])) return $this->error('参数错误101');
  782. if (!isset($data['company_label']) || empty($data['company_label'])) return $this->error('参数错误102');
  783. if (!isset($data['company_address']) || empty($data['company_address'])) return $this->error('参数错误103');
  784. if (!isset($data['company_mobile']) || empty($data['company_mobile'])) return $this->error('参数错误104');
  785. if (!isset($data['notice']) || empty($data['notice'])) return $this->error('参数错误105');
  786. if (!isset($data['license_image']) || empty($data['license_image'])) return $this->error('参数错误106');
  787. $user = $this->auth->getUser();
  788. if ($user['group_id'] !=2 || $user['shenhe_status'] <1) return $this->error('对不起,请联系企业负责人修改企业信息');
  789. $data['uid'] = $user['id'];
  790. $add = Db::name('user_qiye')->where('uid',$user['id'])->update($data);
  791. if ($add) {
  792. return $this->success('提交成功');
  793. } else {
  794. return $this->error('提价失败');
  795. }
  796. }
  797. /**
  798. * 修改手机号
  799. *
  800. * @param string $mobile 手机号
  801. * @param string $captcha 验证码
  802. */
  803. public function changemobile()
  804. {
  805. $user = $this->auth->getUser();
  806. $mobile = $this->request->request('mobile');
  807. $captcha = $this->request->request('captcha');
  808. if (!$mobile || !$captcha) {
  809. $this->error(__('Invalid parameters'));
  810. }
  811. if (!Validate::regex($mobile, "^1\d{10}$")) {
  812. $this->error(__('Mobile is incorrect'));
  813. }
  814. if (\app\common\model\User::where('mobile', $mobile)->where('id', '<>', $user->id)->find()) {
  815. $this->error(__('Mobile already exists'));
  816. }
  817. $result = Sms::check($mobile, $captcha, 'changemobile');
  818. if (!$result) {
  819. $this->error(__('Captcha is incorrect'));
  820. }
  821. $verification = $user->verification;
  822. $verification->mobile = 1;
  823. $user->verification = $verification;
  824. $user->mobile = $mobile;
  825. $user->save();
  826. Sms::flush($mobile, 'changemobile');
  827. $this->success();
  828. }
  829. /**
  830. * 微信登录
  831. *
  832. * @param string $code Code码
  833. */
  834. // public function third()
  835. //
  836. // {
  837. //
  838. // $wchat = new WeChat();
  839. //
  840. //
  841. // $code = request()->param('code', "");
  842. //
  843. // $user = $wchat->getUserAccessUserInfo($code);
  844. // dump($user);die;
  845. //
  846. // }
  847. //微信登录
  848. public function third(){
  849. $code = request()->param('code', "");//获取code
  850. $appid ="wxe02aa578255f9184";
  851. $secret = "39ec8add0b8d4ed794e9cb330a334538";
  852. $url = "https://api.weixin.qq.com/sns/jscode2session?appid=$appid&secret=$secret&js_code=$code&grant_type=authorization_code";
  853. //通过code换取网页授权access_token
  854. $weixin = file_get_contents($url);
  855. dump($weixin);die;
  856. $jsondecode = json_decode($weixin); //对JSON格式的字符串进行编码
  857. $array = get_object_vars($jsondecode);//转换成数组
  858. $openid = $array['openid'];//输出openid
  859. return $openid;
  860. }
  861. }