mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-23 03:50:56 +08:00
86 lines
1.9 KiB
PHP
86 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
|
|
* @license https://opensource.org/licenses/GPL-2.0
|
|
* @link https://www.koogua.com
|
|
*/
|
|
|
|
namespace App\Http\Home\Services;
|
|
|
|
use App\Repos\User as UserRepo;
|
|
use App\Services\Auth\Home as AuthService;
|
|
use App\Services\Logic\Account\Register as RegisterService;
|
|
use App\Validators\Account as AccountValidator;
|
|
use App\Validators\Captcha as CaptchaValidator;
|
|
|
|
class Account extends Service
|
|
{
|
|
|
|
/**
|
|
* @var AuthService
|
|
*/
|
|
protected $auth;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->auth = $this->getDI()->get('auth');
|
|
}
|
|
|
|
public function register()
|
|
{
|
|
$service = new RegisterService();
|
|
|
|
$account = $service->handle();
|
|
|
|
$userRepo = new UserRepo();
|
|
|
|
$user = $userRepo->findById($account->id);
|
|
|
|
$this->auth->saveAuthInfo($user);
|
|
|
|
$this->eventsManager->fire('Account:afterRegister', $this, $user);
|
|
|
|
return $user;
|
|
}
|
|
|
|
public function loginByPassword()
|
|
{
|
|
$post = $this->request->getPost();
|
|
|
|
$validator = new AccountValidator();
|
|
|
|
$user = $validator->checkUserLogin($post['account'], $post['password']);
|
|
|
|
$validator = new CaptchaValidator();
|
|
|
|
$validator->checkCode($post['ticket'], $post['rand']);
|
|
|
|
$this->auth->saveAuthInfo($user);
|
|
|
|
$this->eventsManager->fire('Account:afterLogin', $this, $user);
|
|
}
|
|
|
|
public function loginByVerify()
|
|
{
|
|
$post = $this->request->getPost();
|
|
|
|
$validator = new AccountValidator();
|
|
|
|
$user = $validator->checkVerifyLogin($post['account'], $post['verify_code']);
|
|
|
|
$this->auth->saveAuthInfo($user);
|
|
|
|
$this->eventsManager->fire('Account:afterLogin', $this, $user);
|
|
}
|
|
|
|
public function logout()
|
|
{
|
|
$user = $this->getLoginUser();
|
|
|
|
$this->auth->clearAuthInfo();
|
|
|
|
$this->eventsManager->fire('Account:afterLogout', $this, $user);
|
|
}
|
|
|
|
}
|