Member.php 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\model\MemberHouseModel;
  4. use app\api\model\YzmModel;
  5. use app\common\controller\Api;
  6. use aliyun\api_demo\SmsDemo;
  7. use app\api\model\CodeModel;
  8. use app\api\model\MemberModel;
  9. use app\api\model\AppDataModel;
  10. use app\api\controller\Common;
  11. /**
  12. * 会员相关接口
  13. * @ApiWeigh (100)
  14. */
  15. class Member extends Api
  16. {
  17. protected $noNeedLogin = ['yzm','sendCode','register','create_qrcode','login','edit_password'];//,'my_keys','my_detail'
  18. protected $noNeedRight = ['*'];
  19. /**
  20. * 生成随机数字验证码图片
  21. * @ApiRoute (/api/member/yzm)
  22. * @ApiReturn ({
  23. "code": 1,
  24. "msg": "success",
  25. "time": "1603691703",
  26. "data": {
  27. "url": "/upload/verification_code_img/member_id_160369170339328.png", //验证码地址
  28. "rand": "160369170339328" //标识码,点击发送验证码也要传过来
  29. }
  30. })
  31. */
  32. function yzm($width = 80,$height = 40)
  33. {
  34. $str = '0123456789abcdefghizklmnopqrstuvwxyz'; // 也可取出类似的0il
  35. $code = substr(str_shuffle($str),0,'4');
  36. $rand=rand(10000,99999);
  37. $member_id=time().$rand;
  38. //判断文件夹是否存在,不存在则创建
  39. $dir = ROOT_PATH . 'public' . DS .'uploads/verification_code_img';
  40. if(!is_dir($dir)){
  41. mkdir($dir, 0777, true);
  42. }
  43. //验证码图片保存路径,文件名称
  44. $file_name = ROOT_PATH . 'public' . DS .'uploads/verification_code_img/'.$member_id.'.png';
  45. //域名返回
  46. $domain_name = config('site.cdnurl').'/uploads/verification_code_img/'.$member_id.'.png';
  47. $img = imagecreatetruecolor($width, $height);
  48. $black = imagecolorallocate($img, 0x00, 0x00, 0x00);
  49. $green = imagecolorallocate($img, 0x00, 0xFF, 0x00);
  50. $white = imagecolorallocate($img, 0xFF, 0xFF, 0xFF);
  51. imagefill($img,0,0,$white);
  52. imagestring($img, 5, 22, 12, $code, $black);
  53. //加入噪点干扰
  54. for($i=0;$i<100;$i++) {
  55. imagesetpixel($img, rand(0, $width) , rand(0, $width) , $black); //imagesetpixel — 画一个单一像素,语法: bool imagesetpixel ( resource $image , int $x , int $y , int $color )
  56. imagesetpixel($img, rand(0, $width) , rand(0, $width) , $green);
  57. }
  58. //输出验证码
  59. // header("content-type: image/png");
  60. imagepng($img,$file_name); //保存图片
  61. imagedestroy($img); //图像处理完成后,使用 imagedestroy() 指令销毁图像资源以释放内存,虽然该函数不是必须的,但使用它是一个好习惯。
  62. $log = ['code' => $code,
  63. 'rand' => $member_id,
  64. 'scene' => '图形验证码',
  65. 'time' => datetime(time())
  66. ];
  67. $addLog = YzmModel::create($log);
  68. $this->result('success', ['url'=>$domain_name,'rand'=>$member_id], 1);
  69. }
  70. /**
  71. * 发送短信验证码
  72. *
  73. * @ApiMethod (POST)
  74. * @ApiRoute (/api/member/sendCode)
  75. * @ApiParams (name="mobile", type="varchar", required=true, description="用户手机号")
  76. * @ApiParams (name="rand", type="string", required=true, description="标识码")
  77. * @ApiParams (name="code", type="string", required=true, description="输入的图形验证码")
  78. * @ApiParams (name="scene", type="string", required=true, description=" 1 注册发送验证码,2 找回密码验证码")
  79. * @ApiReturn ({
  80. 'code':'1', //0是失败,弹出msg提示
  81. 'msg':'验证码已发送'
  82. })
  83. */
  84. public function sendCode()
  85. {
  86. $mobile = $this->request->post('mobile');
  87. $rand= $this->request->post('rand');
  88. $code= $this->request->post('code');
  89. $scene= $this->request->post('scene');
  90. if (empty($code)){
  91. $this->result('请输入图形验证码');
  92. }
  93. if (!$mobile || !$rand || !$code) {
  94. $this->result('参数错误');
  95. }
  96. if (empty($scene)){
  97. $scene=1;
  98. }
  99. // $ip=get_ip();
  100. $check_code = CodeModel::where('mobile', $mobile)->where('scene',$scene)
  101. ->order('id desc')
  102. ->find();
  103. $sendTime = strtotime($check_code['time']);
  104. if (time() - $sendTime < 300) {
  105. $this->result('5分钟之后才可以发送');
  106. }
  107. $get_yzm=YzmModel::where('rand',$rand)->where('status','0')->order('id','desc')->find();
  108. if (empty($get_yzm)){
  109. $this->result('图形验证码错误!');
  110. }
  111. $sendTime = strtotime($get_yzm['time']);
  112. if (time() - $sendTime > 300) {//分钟过期
  113. $this->result('图形验证码已过期');
  114. }
  115. if ($code !=$get_yzm['code']){
  116. $this->result('图形验证码错误');
  117. }else{
  118. YzmModel::where('id',$get_yzm['id'])->update(['status'=>'1']);
  119. }
  120. $code = rand(1000, 9999);
  121. // $Sms = new SmsDemo();
  122. // $send = $Sms->sendSms($mobile, $code);
  123. // if ($send->Message == 'OK') {
  124. // $log = ['code' => $code,
  125. // 'mobile' => $mobile,
  126. // 'scene' =>$scene,
  127. // 'time' => datetime(time())
  128. // ];
  129. // $addLog = CodeModel::create($log);
  130. // if ($addLog) {
  131. // $this->result('验证码已发送', [], 1);
  132. // } else {
  133. // $this->result('验证码发送失败');
  134. // }
  135. // } else {
  136. // $this->result('验证码发送失败');
  137. // }
  138. $log = ['code' => '1234',
  139. 'mobile' => $mobile,
  140. 'scene' =>$scene,
  141. 'time' => datetime(time())
  142. ];
  143. $addLog = CodeModel::create($log);
  144. if ($addLog) {
  145. $this->result('验证码已发送', [], 1);
  146. } else {
  147. $this->result('验证码发送失败');
  148. }
  149. }
  150. /**
  151. * 用户注册
  152. *
  153. * @ApiTitle (用户注册)
  154. * @ApiSummary (用户注册)
  155. * @ApiMethod (POST)
  156. * @ApiRoute (/api/member/register)
  157. * @ApiParams (name="mobile", type="varchar", required=true, description="用户手机号")
  158. * @ApiParams (name="check_code", type="int", required=true, description="短信验证码")
  159. * @ApiParams (name="password", type="int", required=true, description="密码")
  160. */
  161. public function register()
  162. {
  163. $mobile = $this->request->post('mobile');
  164. $checkCode = $this->request->post('check_code');
  165. $password = $this->request->post('password');
  166. if (!$mobile || !$checkCode || !$password) {
  167. $this->result('参数错误');
  168. }
  169. // 验证验证码
  170. $check_code = CodeModel::where('mobile', $mobile)->where('scene','1')
  171. ->order('id desc')
  172. ->limit(0, 1)
  173. ->select();
  174. if (empty($check_code)) {
  175. $this->result('验证码错误');
  176. }
  177. if ($check_code[0]['code'] != $checkCode) {
  178. $this->result('验证码错误');
  179. }
  180. $sendTime = strtotime($check_code[0]['time']);
  181. if (time() - $sendTime > 300) {//5分钟过期时间
  182. $this->result('验证码已过期');
  183. }
  184. $get_is_user=MemberModel::where('mobile', $mobile)->field('id')->find();
  185. if (!empty($get_is_user)){
  186. $this->result('手机号已经注册,请直接登录或者找回密码');
  187. }else{
  188. $where = ['id' => 1];
  189. $defaultField = ['default_nickname', 'default_avatar'];
  190. $default = AppDataModel::where($where)->field($defaultField)->find();//-----------
  191. $info = [
  192. 'avatar' => $default['default_avatar'],
  193. 'nickname' => substr_replace($mobile,'****',3,4),//$default['default_nickname'],
  194. 'mobile' => $mobile,
  195. 'rands' =>createSalt(),
  196. 'password'=>md5(trim($password)),
  197. 'create_time' => datetime(time()),
  198. ];
  199. $createId = MemberModel::insertGetId($info);
  200. if ($createId) {
  201. $this->result('恭喜你成功注册新天物业', ['user_id' => intval($createId)], 1);
  202. // MemberModel::where('mobile', $mobile)->setInc('login_num', 1);
  203. // 生成token
  204. // $salt = createSalt();
  205. // $token = md5($createId.$salt);
  206. // // 更新token和随机码salt
  207. // $updateToken = MemberModel::where('mobile', $mobile)
  208. // ->update(['salt' => $salt, 'token' => $token]);
  209. // if ($updateToken) {
  210. // if (!empty($top_id)){
  211. // MemberModel::where('id', $top_id)->setInc('down_people');
  212. // }
  213. //
  214. // // $this->result('恭喜你成功注册新天物业', ['user_id' => intval($createId), 'token' => $token,'rands'=>$info['rands']], 1);
  215. // } else {
  216. // $this->result('登录失败', null, 0);
  217. // }
  218. } else {
  219. $this->result('注册失败', null, 0);
  220. }
  221. }
  222. }
  223. /**
  224. * 用户登录
  225. *
  226. * @ApiTitle (用户登录)
  227. * @ApiSummary (用户登录)
  228. * @ApiMethod (POST)
  229. * @ApiRoute (/api/member/login)
  230. * @ApiParams (name="mobile", type="varchar", required=true, description="用户手机号")
  231. * @ApiParams (name="password", type="int", required=true, description="密码")
  232. */
  233. public function login()
  234. {
  235. $mobile = $this->request->post('mobile');
  236. $password = $this->request->post('password');
  237. if (!$mobile || !$password) {
  238. $this->result('参数错误');
  239. }
  240. $user = MemberModel::where('mobile', $mobile)->where('password',md5(trim($password)))->field('id,rands')->find();
  241. if (!$user){
  242. $this->result('账号或密码错误,请重新登录');
  243. }else{
  244. $get_hu=MemberHouseModel::where('mid',$user['id'])->where('is_delete','0')->field('id')->find();
  245. if (empty($get_hu)){
  246. $user['hu_id']=0;
  247. }else{
  248. $user['hu_id']=$get_hu['id'];
  249. }
  250. MemberModel::where('id', $user['id'])->setInc('login_num', 1);
  251. // 生成token
  252. $salt = createSalt();
  253. $token = md5($user['id'].$salt);
  254. // 更新token和随机码salt
  255. $updateToken = MemberModel::where('mobile', $mobile)
  256. ->update(['salt' => $salt, 'token' => $token]);
  257. if ($updateToken) {
  258. $this->result('登录成功',['user_id' => $user['id'], 'token' => $token,'rands'=>$user['rands'],'hu_id'=>$user['hu_id']], 1);
  259. } else {
  260. $this->result('登录失败', null, 0);
  261. }
  262. }
  263. }
  264. /**
  265. * 找回密码
  266. *
  267. * @ApiTitle (找回密码)
  268. * @ApiSummary (找回密码)
  269. * @ApiMethod (POST)
  270. * @ApiRoute (/api/member/edit_password)
  271. * @ApiParams (name="mobile", type="varchar", required=true, description="用户手机号")
  272. * @ApiParams (name="check_code", type="int", required=true, description="短信验证码")
  273. * @ApiParams (name="password", type="int", required=true, description="密码")
  274. */
  275. public function edit_password()
  276. {
  277. $mobile = $this->request->post('mobile');
  278. $checkCode = $this->request->post('check_code');
  279. $password = $this->request->post('password');
  280. if (!$mobile || !$checkCode || !$password) {
  281. $this->result('参数错误');
  282. }
  283. // 验证验证码
  284. $check_code = CodeModel::where('mobile', $mobile)->where('scene','2')
  285. ->order('id desc')
  286. ->limit(0, 1)
  287. ->select();
  288. if (empty($check_code)) {
  289. $this->result('验证码错误');
  290. }
  291. if ($check_code[0]['code'] != $checkCode) {
  292. $this->result('验证码错误');
  293. }
  294. $sendTime = strtotime($check_code[0]['time']);
  295. if (time() - $sendTime > 300) {//5分钟过期时间
  296. $this->result('验证码已过期');
  297. }
  298. $user = MemberModel::where('mobile', $mobile)->field('id,rands')->find();
  299. if (empty($user)){
  300. $this->result('您的手机号还未注册用户,请注册');
  301. }
  302. MemberModel::where('id', $user['id'])->setInc('login_num', 1);
  303. // 生成token
  304. $salt = createSalt();
  305. $token = md5($user['id'].$salt);
  306. // 更新token和随机码salt
  307. $updateToken = MemberModel::where('mobile', $mobile)
  308. ->update(['salt' => $salt, 'token' => $token,'password'=>md5(trim($password))]);
  309. if ($updateToken) {
  310. $this->result('密码修改成功',['user_id' => $user['id'], 'token' => $token,'rands'=>$user['rands']], 1);
  311. } else {
  312. $this->result('登录失败', null, 0);
  313. }
  314. }
  315. /**
  316. * 我的信息
  317. *
  318. * @ApiTitle (我的信息)
  319. * @ApiSummary (我的信息)
  320. * @ApiMethod (POST)
  321. * @ApiHeaders (name=token, type=string, required=true, description="请求的Token")
  322. * @ApiRoute (/api/member/my_detail)
  323. * @ApiParams (name="user_id", type="int", required=true, description="用户id")
  324. * @ApiParams (name="token", type="int", required=true, description="请求的Token")
  325. * @ApiReturn ({
  326. "code": 1,
  327. "msg": "success",
  328. "time": "1604474877",
  329. "data": {
  330. "id": 1,//用户id
  331. "top_id": 0,
  332. "top_top_id": 0,
  333. "rands": "igqwpg",
  334. "avatar": "http://baoxiang.com//assets/img/qrcode.png",//用户头像
  335. "nickname": "默认昵称 ",//昵称
  336. "name": "",
  337. "price": null,
  338. "profile": "",
  339. "mobile": "13512144196",
  340. "wx_code": "",
  341. "sex": 0,
  342. "openid": "",
  343. "now_money": "0.00",//当前余额
  344. "down_people": 0,//下级人数
  345. "create_time": "2020-11-02 09:43:10",
  346. "login_num": 9,
  347. "status": 1,
  348. "salt": "pjxwqm",
  349. "token": "70780f043d7ffaf239c73095d5a2f808"
  350. }
  351. })
  352. */
  353. public function my_detail(){
  354. $userId = $this->request->post('user_id');
  355. if (empty($userId)){
  356. $this->result('登录信息丢失');
  357. }
  358. //
  359. $my=MemberModel::where(['id'=>$userId])->with(['village','dong','danyuan','hu'])->find();
  360. $this->result('success', $my, 1);
  361. }
  362. /**
  363. * 修改信息-昵称+头像
  364. *
  365. * @ApiTitle (修改信息-昵称+头像)
  366. * @ApiSummary (修改信息-昵称+头像)
  367. * @ApiMethod (POST)
  368. * @ApiHeaders (name=token, type=string, required=true, description="请求的Token")
  369. * @ApiRoute (/api/member/my_edit)
  370. * @ApiParams (name="user_id", type="int", required=true, description="用户id")
  371. * @ApiParams (name="token", type="int", required=true, description="请求的Token")
  372. * @ApiParams (name="nickname", type="string", required=true, description="昵称")
  373. * @ApiParams (name="avatar", type="string", required=true, description="头像地址")
  374. * @ApiParams (name="sex", type="string", required=true, description="未知,男,女")
  375. * @ApiReturn ()
  376. */
  377. public function my_edit(){
  378. $userId = $this->request->post('user_id');
  379. $nickname= $this->request->post('nickname');
  380. $avatar = $this->request->post('avatar');
  381. $sex = $this->request->post('sex');
  382. if (empty($userId)){
  383. $this->result('登录信息丢失');
  384. }
  385. $update=[];
  386. if (!empty($nickname)){
  387. $update['nickname']=preg_replace('/[\xf0-\xf7].{3}/', '', trim($nickname));
  388. }
  389. if (!empty($avatar)){
  390. $update['avatar']=$avatar;
  391. }
  392. if (!empty($sex)){
  393. $update['sex']=$sex;
  394. }else{
  395. $update['sex']='未知';
  396. }
  397. if (!empty($update)){
  398. MemberModel::where(['id'=>$userId])->update($update);
  399. $this->result('信息修改成功', [], 1);
  400. }else{
  401. $this->result('没修改任何信息');
  402. }
  403. }
  404. /**
  405. * 微信登录
  406. *
  407. * @ApiTitle (微信登录)
  408. * @ApiSummary (微信登录)
  409. * @ApiMethod (POST)
  410. * @ApiHeaders (name=token, type=string, required=true, description="请求的Token")
  411. * @ApiRoute (/api/member/wx_login)
  412. * @ApiParams (name="user_id", type="int", required=true, description="用户id")
  413. * @ApiParams (name="token", type="int", required=true, description="请求的Token")
  414. * @ApiParams (name="code", type="int", required=true, description="微信code")
  415. * @ApiReturn ()
  416. */
  417. public function wx_login()
  418. {
  419. $userId = $this->request->post('user_id');
  420. if (empty($userId)){
  421. $this->result('登录信息丢失');
  422. }
  423. $code = $this->request->post('code');
  424. if (!isset($code)) {
  425. return $this->result('未接收到code', []);
  426. }
  427. $appid = 'wxbe636a16aae015f9';
  428. $appsecret = '46a02319143e8c2f9b1d96104bd467e7';
  429. $access_token_url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid=' . $appid . '&secret=' . $appsecret . '&code=' . $code . '&grant_type=authorization_code';
  430. $tokens =http_curl($access_token_url);
  431. if (isset($tokens['openid'])) {
  432. $member=MemberModel::where('id',$userId)->update(['openid'=>$tokens['openid']]);
  433. return $this->result('success', '', 200);
  434. } else {
  435. return $this->result('网络错误104');
  436. }
  437. }
  438. /**
  439. * 我的房屋列表
  440. *
  441. * @ApiTitle (我的房屋列表)
  442. * @ApiSummary (我的房屋列表)
  443. * @ApiMethod (POST)
  444. * @ApiHeaders (name=token, type=string, required=true, description="请求的Token")
  445. * @ApiRoute (/api/member/my_house_list)
  446. * @ApiParams (name="user_id", type="int", required=true, description="用户id")
  447. * @ApiParams (name="token", type="int", required=true, description="请求的Token")
  448. * @ApiReturn ()
  449. */
  450. public function my_house_list(){
  451. $userId = $this->request->post('user_id');
  452. if (empty($userId)){
  453. $this->result('登录信息丢失');
  454. }
  455. $list=MemberHouseModel::where(['mid'=>$userId,'is_delete'=>'0'])
  456. ->with(['property','village','dong','danyuan','hu'])
  457. ->select();
  458. $this->result('房屋列表', $list, 1);
  459. }
  460. /**
  461. * 绑定住房信息
  462. *
  463. * @ApiTitle (绑定住房信息)
  464. * @ApiSummary (绑定住房信息)
  465. * @ApiMethod (POST)
  466. * @ApiHeaders (name=token, type=string, required=true, description="请求的Token")
  467. * @ApiRoute (/api/member/my_house_add)
  468. * @ApiParams (name="user_id", type="int", required=true, description="用户id")
  469. * @ApiParams (name="token", type="int", required=true, description="请求的Token")
  470. * @ApiParams (name="property_id", type="int", required=true, description="物业id")
  471. * @ApiParams (name="village_id", type="int", required=true, description="小区id")
  472. * @ApiParams (name="dong_id", type="int", required=true, description="楼宇id")
  473. * @ApiParams (name="danyuan_id", type="int", required=true, description="单元id")
  474. * @ApiParams (name="hu_id", type="int", required=true, description="户id")
  475. * @ApiReturn ()
  476. */
  477. public function my_house_add(){
  478. $userId = $this->request->post('user_id');
  479. if (empty($userId)){
  480. $this->result('登录信息丢失');
  481. }
  482. $property_id = $this->request->post('property_id');
  483. $village_id = $this->request->post('village_id');
  484. $dong_id = $this->request->post('dong_id');
  485. $danyuan_id = $this->request->post('danyuan_id');
  486. $hu_id= $this->request->post('hu_id');
  487. $update=[
  488. 'property_id'=>$property_id,
  489. 'village_id'=>$village_id,
  490. 'dong_id'=>$dong_id,
  491. 'danyuan_id'=>$danyuan_id,
  492. 'hu_id'=>$hu_id,
  493. 'mid'=>$userId,
  494. 'createtime'=>time(),
  495. 'updatetime'=>time()
  496. ];
  497. MemberHouseModel::insert($update);
  498. $this->result('住房绑定成功', '', 1);
  499. }
  500. /**
  501. * 解绑住房信息
  502. *
  503. * @ApiTitle (解绑住房信息)
  504. * @ApiSummary (解绑住房信息)
  505. * @ApiMethod (POST)
  506. * @ApiHeaders (name=token, type=string, required=true, description="请求的Token")
  507. * @ApiRoute (/api/member/my_house_del)
  508. * @ApiParams (name="user_id", type="int", required=true, description="用户id")
  509. * @ApiParams (name="token", type="int", required=true, description="请求的Token")
  510. * @ApiParams (name="house_id", type="int", required=true, description="住房绑定列表id")
  511. * @ApiReturn ()
  512. */
  513. public function my_house_del(){
  514. $userId = $this->request->post('user_id');
  515. if (empty($userId)){
  516. $this->result('登录信息丢失');
  517. }
  518. $house_id = $this->request->post('house_id');
  519. MemberHouseModel::where(['mid'=>$userId,'id'=>$house_id])->update(['is_delete'=>'1']);
  520. $this->result('住房解绑成功', '', 1);
  521. }
  522. /**
  523. * 退出登录
  524. *
  525. * @ApiTitle (退出登录)
  526. * @ApiSummary (退出登录)
  527. * @ApiMethod (POST)
  528. * @ApiRoute (/api/member/out)
  529. * @ApiParams (name="user_id", type="int", required=true, description="用户id")
  530. * @ApiParams (name="token", type="int", required=true, description="请求的Token")
  531. */
  532. public function out()
  533. {
  534. $userId = $this->request->post('user_id');
  535. if (empty($userId)){
  536. $this->result('登录信息丢失');
  537. }
  538. $updateToken = MemberModel::where('id', $userId)
  539. ->update(['salt' => '0', 'token' => '0']);
  540. $this->result('成功退出','', 1);
  541. }
  542. }