Register.php 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\model\UsersModel;
  4. use app\common\controller\Api;
  5. use think\Cache;
  6. /**
  7. * 注册接口
  8. */
  9. class Register extends Api
  10. {
  11. protected $noNeedRight = '*';
  12. protected $noNeedLogin = '*';
  13. /**
  14. * 手机号注册
  15. * @ApiMethod (POST)
  16. * @param string $user_tel 账号
  17. * @param string $code 验证码
  18. * @param string $user_tjtel 推荐人手机号
  19. * @param string $user_pwd 密码
  20. * @param string $type 注册方式0手机号1QQ或微信
  21. * @param string $user_avatar 头像
  22. * @param string $user_openID QQ或微信开放id
  23. * @param string $user_nickname QQ或微信开放姓名
  24. */
  25. public function register()
  26. {
  27. $params = $this->request->post();
  28. if (isset($params['user_tel'])) { //验证手机号是否合法
  29. $check = '/^(1(([35789][0-9])|(47)))\d{8}$/';
  30. if (preg_match($check, $params['user_tel'])) {
  31. if (isset($params['user_tjtel'])) { //验证推荐人手机号
  32. $issetTjTel = UsersModel::where('user_tel', $params['user_tjtel'])->find();
  33. if (!$issetTjTel) {
  34. return $this->result('未找到推荐人手机号', '', 100);
  35. }
  36. } else {
  37. return $this->result('请填写推荐人手机号', [], 100);
  38. }
  39. if (isset($params['user_tel'])) { //验证用户手机号
  40. $issetTjTel = UsersModel::where('user_tel', $params['user_tel'])->find();
  41. if ($issetTjTel) {
  42. return $this->result('此手机号已被注册', '', 100);
  43. }
  44. } else {
  45. return $this->result('请填写手机号', [], 100);
  46. }
  47. if (!isset($params['code']) || !Cache::get($params['code'])) { //验证验证码是否错误
  48. return $this->result('验证码错误', '', 100);
  49. }
  50. $userModel = new UsersModel(); //实例化usermodel
  51. if ($params['type'] == 0) { //使用手机号注册
  52. $rules = [
  53. 'code' => 'require|number',
  54. 'user_pwd' => 'require|max:18|min:6'
  55. ];
  56. $msg = [
  57. 'code.require' => "验证码不能为空",
  58. 'code.number' => "验证码必须为数字",
  59. 'user_pwd.require' => '密码不能为空',
  60. 'user_pwd.max' => '密码长度过长',
  61. 'user_pwd.min' => '密码最少六位',
  62. ];
  63. $validata = $this->validate($params, $rules, $msg);
  64. if (is_string($validata)) {
  65. return $this->result($validata, [], 100);
  66. }
  67. $data = array(
  68. 'user_nickname' => '优-' . rand(10000, 99999),
  69. 'user_tel' => $params['user_tel'],
  70. 'user_pwd' => sha1(md5($params['user_pwd'])),
  71. 'user_avatar' => config('site.httpurl') . '/uploads/logo.img',
  72. 'create_time' => date('Y-m-d H:i:s', time()),
  73. 'user_tjtel' => $params['user_tjtel'],
  74. 'type' => $params['type'],
  75. );
  76. $addUser = $userModel->allowField(true)->save($data);
  77. if ($addUser) {
  78. Cache::rm($params['code']);//删除验证码缓存
  79. return $this->result('注册成功', [], 200);
  80. } else {
  81. return $this->result('注册失败', [], 100);
  82. }
  83. }
  84. if ($params['type'] > 1) {
  85. $rules = [
  86. 'user_nickname' => 'require',
  87. 'user_avatar' => 'require',
  88. 'user_openid' => 'require',
  89. ];
  90. $msg = [
  91. 'user_nickname.require' => '昵称未获取',
  92. 'user_avatar.require' => '头像未获取',
  93. 'user_openid.require' => '开放id未获取',
  94. ];
  95. $validata = $this->validate($params, $rules, $msg);
  96. if (is_string($validata)) {
  97. return $this->result($validata, [], 100);
  98. }
  99. $data = array(
  100. 'user_nickname' => $params['user_nickname'],
  101. 'user_tel' => $params['user_tel'],
  102. 'user_pwd' => '无',
  103. 'user_avatar' => $params['user_avatar'],
  104. 'create_time' => date('Y-m-d H:i:s', time()),
  105. 'user_tjtel' => $params['user_tjtel'],
  106. 'user_openid' => $params['user_openid'],
  107. 'type' => $params['type'],
  108. );
  109. $addUser = $userModel->allowField(true)->save($data);
  110. if ($addUser) {
  111. Cache::rm($params['code']);//删除验证码缓存
  112. return $this->result('注册成功', [], 200);
  113. } else {
  114. return $this->result('注册失败', [], 100);
  115. }
  116. }
  117. } else {
  118. return $this->result('手机号不合法', '', 100);
  119. }
  120. } else {
  121. return $this->result('手机号不存在', '', 100);
  122. }
  123. }
  124. /**
  125. * 手机号短信发送
  126. * @ApiMethod (POST)
  127. * @param string $user_tel 账号
  128. */
  129. public function registerTel()
  130. {
  131. $sendUrl = config('site.sendurl'); //短信接口的URL
  132. $params = $this->request->post();
  133. $check = '/^(1(([35789][0-9])|(47)))\d{8}$/';
  134. if (isset($params['user_tel'])) {
  135. if (preg_match($check, $params['user_tel'])) {
  136. $issettel = UsersModel::where('user_tel', $params['user_tel'])->find(); //判断手机号是否存在
  137. if ($issettel) {
  138. return $this->result('该手机号已存在', [], 100);
  139. }
  140. $code = $this->setCode();
  141. $tpl_value = '#code#=' . $code . '&#company#=优享街';
  142. $smsConf = array(
  143. 'key' => config('site.key'), //您申请的APPKEY
  144. 'mobile' => $params['user_tel'], //接受短信的用户手机号码
  145. 'tpl_id' => '203667', //您申请的短信模板ID,根据实际情况修改
  146. 'tpl_value' => $tpl_value //您设置的模板变量,根据实际情况修改
  147. );
  148. $content = $this->juhecurl($sendUrl, $smsConf, 1); //请求发送短信
  149. if ($content) {
  150. $result = json_decode($content, true);
  151. $error_code = $result['error_code'];
  152. if ($error_code == 0) {
  153. return $this->result('发送成功', $code, '200');
  154. } else {
  155. return $this->result('请求失败', [], '100');
  156. }
  157. }
  158. } else {
  159. return $this->result('手机号不合法', [], 100);
  160. }
  161. } else {
  162. return $this->result('手机号不能为空', [], 100);
  163. }
  164. }
  165. //发送短信
  166. /**
  167. * 请求接口返回内容
  168. * @param string $url [请求的URL地址]
  169. * @param string $params [请求的参数]
  170. * @param int $ipost [是否采用POST形式]
  171. * @return string
  172. */
  173. function juhecurl($url, $params = false, $ispost = 0)
  174. {
  175. $httpInfo = array();
  176. $ch = curl_init();
  177. curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
  178. curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.172 Safari/537.22');
  179. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
  180. curl_setopt($ch, CURLOPT_TIMEOUT, 30);
  181. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  182. if ($ispost) {
  183. curl_setopt($ch, CURLOPT_POST, true);
  184. curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
  185. curl_setopt($ch, CURLOPT_URL, $url);
  186. } else {
  187. if ($params) {
  188. curl_setopt($ch, CURLOPT_URL, $url . '?' . $params);
  189. } else {
  190. curl_setopt($ch, CURLOPT_URL, $url);
  191. }
  192. }
  193. $response = curl_exec($ch);
  194. if ($response === FALSE) {
  195. //echo "cURL Error: " . curl_error($ch);
  196. return false;
  197. }
  198. $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  199. $httpInfo = array_merge($httpInfo, curl_getinfo($ch));
  200. curl_close($ch);
  201. return $response;
  202. }
  203. //生成唯一六位随机数
  204. public function setCode()
  205. {
  206. $code = rand('1000', '9999');
  207. if (Cache::get($code)) {
  208. $code = self::setCode();
  209. }
  210. Cache::set($code, $code, 600);
  211. return $code;
  212. }
  213. }