User.php 32 KB

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