User.php 31 KB

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