hyperf-chat/app/Controller/Api/V1/AuthController.php

224 lines
6.6 KiB
PHP

<?php
namespace App\Controller\Api\V1;
use App\Constants\ResponseCode;
use App\Model\User;
use Hyperf\Di\Annotation\Inject;
use Hyperf\HttpServer\Annotation\Controller;
use Hyperf\HttpServer\Annotation\RequestMapping;
use Hyperf\HttpServer\Annotation\Middleware;
use App\Service\UserService;
use App\Service\SmsCodeService;
use Phper666\JWTAuth\JWT;
use Phper666\JWTAuth\Middleware\JWTAuthMiddleware;
/**
* 授权相关控制器
*
* @Controller(path="/api/v1/auth")
*/
class AuthController extends CController
{
/**
* @Inject
* @var UserService
*/
private $userService;
/**
* @Inject
* @var JWT
*/
private $jwt;
/**
* @Inject
* @var SmsCodeService
*/
private $smsCodeService;
/**
* 授权登录接口
*
* @RequestMapping(path="login", methods="post")
*
* @param JWT $jwt
* @return \Psr\Http\Message\ResponseInterface
* @throws \Psr\SimpleCache\InvalidArgumentException
*/
public function login()
{
$this->validate($this->request->all(), [
'mobile' => "required|regex:/^1[345789][0-9]{9}$/",
'password' => 'required',
'platform' => 'required|in:h5,ios,windows,mac,web',
]);
$userInfo = $this->userService->login(
$this->request->input('mobile'),
$this->request->input('password')
);
if (!$userInfo) {
return $this->response->fail('账号不存在或密码填写错误...', ResponseCode::FAIL);
}
try {
$token = $this->jwt->getToken([
'user_id' => $userInfo['id'],
'platform' => $this->request->input('platform'),
]);
} catch (\Exception $exception) {
return $this->response->error('登录异常,请稍后再试...');
}
return $this->response->success([
'authorize' => [
'access_token' => $token,
'expires_in' => $this->jwt->getTTL()
],
'user_info' => [
'nickname' => $userInfo['nickname'],
'avatar' => $userInfo['avatar'],
'gender' => $userInfo['gender'],
'motto' => $userInfo['motto'],
'email' => $userInfo['email'],
]
], '登录成功...');
}
/**
* 退出登录接口
*
* @RequestMapping(path="logout", methods="post")
* @Middleware(JWTAuthMiddleware::class)
*/
public function logout()
{
$this->jwt->logout();
return $this->response->success([], 'Successfully logged out');
}
/**
* 账号注册接口
*
* @RequestMapping(path="register", methods="post")
*
* @return \Psr\Http\Message\ResponseInterface
*/
public function register()
{
$params = $this->request->all();
$this->validate($params, [
'nickname' => "required",
'mobile' => "required|regex:/^1[345789][0-9]{9}$/",
'password' => 'required',
'sms_code' => 'required|digits:6',
'platform' => 'required|in:h5,ios,windows,mac,web',
]);
if (!$this->smsCodeService->check('user_register', $params['mobile'], $params['sms_code'])) {
//return $this->response->fail('验证码填写错误...');
}
$isTrue = $this->userService->register([
'mobile' => $params['mobile'],
'password' => $params['password'],
'nickname' => strip_tags($params['nickname']),
]);
if (!$isTrue) {
return $this->response->fail('账号注册失败...');
}
$this->smsCodeService->delCode('user_register', $params['mobile']);
return $this->response->success([], '账号注册成功...');
}
/**
* 账号找回接口
*
* @RequestMapping(path="forget", methods="post")
*/
public function forget()
{
$params = $this->request->all();
$this->validate($params, [
'mobile' => "required|regex:/^1[345789][0-9]{9}$/",
'password' => 'required',
'sms_code' => 'required|digits:6',
]);
if (!$this->smsCodeService->check('forget_password', $params['mobile'], $params['sms_code'])) {
return $this->response->fail('验证码填写错误...', ResponseCode::FAIL);
}
$isTrue = $this->userService->resetPassword($params['mobile'], $params['password']);
if ($isTrue) {
$this->smsCodeService->delCode('forget_password', $params['mobile']);
return $this->response->success([], '账号注册成功...');
}
return $this->response->fail('重置密码失败...', ResponseCode::FAIL);
}
/**
* 授权刷新接口
*
* @RequestMapping(path="refresh", methods="post")
* @Middleware(JWTAuthMiddleware::class)
*/
public function refresh()
{
return $this->response->success([
'authorize' => [
'token' => $this->jwt->refreshToken(),
'expire' => $this->jwt->getTTL()
]
], '刷新 Token 成功...');
}
/**
* 发送验证码
*
* @RequestMapping(path="send-code", methods="post")
*
* @return \Psr\Http\Message\ResponseInterface
*/
public function sendVerifyCode()
{
$params = $this->request->all();
$this->validate($params, [
'type' => "required",
'mobile' => "required|regex:/^1[345789][0-9]{9}$/"
]);
if (!$this->smsCodeService->isUsages($params['type'])) {
return $this->response->fail('验证码发送失败...');
}
if ($params['type'] == 'forget_password') {
if (!User::where('mobile', $params['mobile'])->value('id')) {
return $this->response->fail('手机号未被注册使用...');
}
} else if ($params['type'] == 'change_mobile' || $params['type'] == 'user_register') {
if (User::where('mobile', $params['mobile'])->value('id')) {
return $this->response->fail('手机号已被他(她)人注册...');
}
}
$data = ['is_debug' => true];
[$isTrue, $result] = $this->smsCodeService->send($params['type'], $params['mobile']);
if ($isTrue) {
// 测试环境下直接返回验证码
$data['sms_code'] = $result['data']['code'];
} else {
// ... 处理发送失败逻辑,当前默认发送成功
}
return $this->response->success($data, '验证码发送成功...');
}
}