|
@@ -22,7 +22,7 @@ use function fast\e;
|
|
|
*/
|
|
|
class User extends Api
|
|
|
{
|
|
|
- protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third'];
|
|
|
+ protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third','tees'];
|
|
|
protected $noNeedRight = '*';
|
|
|
|
|
|
public function _initialize()
|
|
@@ -125,16 +125,13 @@ class User extends Api
|
|
|
if (!$username || !$password) {
|
|
|
$this->error(__('Invalid parameters'));
|
|
|
}
|
|
|
-// if ($email && !Validate::is($email, "email")) {
|
|
|
-// $this->error(__('Email is incorrect'));
|
|
|
-// }
|
|
|
if ($mobile && !Validate::regex($mobile, "^1\d{10}$")) {
|
|
|
$this->error(__('Mobile is incorrect'));
|
|
|
}
|
|
|
-// $ret = Sms::check($mobile, $code, 'register');
|
|
|
-// if (!$ret) {
|
|
|
-// $this->error(__('Captcha is incorrect'));
|
|
|
-// }
|
|
|
+ $ret = Sms::check($mobile, $code, 'register');
|
|
|
+ if (!$ret) {
|
|
|
+ $this->error(__('Captcha is incorrect'));
|
|
|
+ }
|
|
|
$ret = $this->auth->register($username, $password, $email, $mobile, []);
|
|
|
if ($ret) {
|
|
|
$data = ['userinfo' => $this->auth->getUserinfo()];
|
|
@@ -143,6 +140,14 @@ class User extends Api
|
|
|
$this->error($this->auth->getError());
|
|
|
}
|
|
|
}
|
|
|
+ public function tees(){
|
|
|
+ $mobile = $this->request->post('mobile');
|
|
|
+ $code = $this->request->post('code');
|
|
|
+ $ret = Sms::check($mobile, $code, 'register');
|
|
|
+ if (!$ret) {
|
|
|
+ $this->error(__('Captcha is incorrect'));
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* 退出登录
|