|
@@ -37,36 +37,13 @@ class User extends Api
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 会员登录
|
|
|
- *
|
|
|
- * @ApiMethod (POST)
|
|
|
- * @param string $account 账号
|
|
|
- * @param string $password 密码
|
|
|
- */
|
|
|
- public function login()
|
|
|
- {
|
|
|
- $account = $this->request->post('account');
|
|
|
- $password = $this->request->post('password');
|
|
|
- if (!$account || !$password) {
|
|
|
- $this->error(__('Invalid parameters'));
|
|
|
- }
|
|
|
- $ret = $this->auth->login($account, $password);
|
|
|
- if ($ret) {
|
|
|
- $data = ['userinfo' => $this->auth->getUserinfo()];
|
|
|
- $this->success(__('Logged in successful'), $data);
|
|
|
- } else {
|
|
|
- $this->error($this->auth->getError());
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
* 手机验证码登录
|
|
|
*
|
|
|
* @ApiMethod (POST)
|
|
|
* @param string $mobile 手机号
|
|
|
* @param string $captcha 验证码
|
|
|
*/
|
|
|
- public function mobilelogin()
|
|
|
+ public function mobile_login()
|
|
|
{
|
|
|
$mobile = $this->request->post('mobile');
|
|
|
$captcha = $this->request->post('captcha');
|
|
@@ -76,9 +53,9 @@ class User extends Api
|
|
|
if (!Validate::regex($mobile, "^1\d{10}$")) {
|
|
|
$this->error(__('Mobile is incorrect'));
|
|
|
}
|
|
|
-// if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
|
|
|
-// $this->error(__('Captcha is incorrect'));
|
|
|
-// }
|
|
|
+ if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
|
|
|
+ $this->error(__('Captcha is incorrect'));
|
|
|
+ }
|
|
|
$user = \app\common\model\User::getByMobile($mobile);
|
|
|
if ($user) {
|
|
|
if ($user->status != 'normal') {
|