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