mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-20 11:03:01 +08:00
* 计划任务执行路径,周期 * !39 修复课程分类未过滤 * 优化第三方登录,修复注册密码加密问题 * !33 开放登录阶段性合并 * !24 修复添加课时后进入编辑页面500错误
215 lines
5.2 KiB
PHP
215 lines
5.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Home\Controllers;
|
|
|
|
use App\Http\Home\Services\Account as AccountService;
|
|
use App\Services\Logic\Account\EmailUpdate as EmailUpdateService;
|
|
use App\Services\Logic\Account\OAuthProvider as OAuthProviderService;
|
|
use App\Services\Logic\Account\PasswordReset as PasswordResetService;
|
|
use App\Services\Logic\Account\PasswordUpdate as PasswordUpdateService;
|
|
use App\Services\Logic\Account\PhoneUpdate as PhoneUpdateService;
|
|
|
|
class AccountController extends Controller
|
|
{
|
|
|
|
/**
|
|
* @Get("/register", name="home.account.register")
|
|
*/
|
|
public function registerAction()
|
|
{
|
|
if ($this->authUser->id > 0) {
|
|
$this->response->redirect('/');
|
|
}
|
|
|
|
$returnUrl = $this->request->getHTTPReferer();
|
|
|
|
$service = new AccountService();
|
|
|
|
$captcha = $service->getSettings('captcha');
|
|
|
|
$this->view->setVar('return_url', $returnUrl);
|
|
$this->view->setVar('captcha', $captcha);
|
|
}
|
|
|
|
/**
|
|
* @Post("/register", name="home.account.do_register")
|
|
*/
|
|
public function doRegisterAction()
|
|
{
|
|
$service = new AccountService();
|
|
|
|
$service->register();
|
|
|
|
$returnUrl = $this->request->getPost('return_url', 'string');
|
|
|
|
$content = [
|
|
'location' => $returnUrl ?: '/',
|
|
'msg' => '注册成功',
|
|
];
|
|
|
|
return $this->jsonSuccess($content);
|
|
}
|
|
|
|
/**
|
|
* @Get("/login", name="home.account.login")
|
|
*/
|
|
public function loginAction()
|
|
{
|
|
if ($this->authUser->id > 0) {
|
|
$this->response->redirect('/');
|
|
}
|
|
|
|
$service = new AccountService();
|
|
|
|
$captcha = $service->getSettings('captcha');
|
|
|
|
$service = new OAuthProviderService();
|
|
|
|
$oauthProvider = $service->handle();
|
|
|
|
$returnUrl = $this->request->getHTTPReferer();
|
|
|
|
$this->view->setVar('oauth_provider', $oauthProvider);
|
|
$this->view->setVar('return_url', $returnUrl);
|
|
$this->view->setVar('captcha', $captcha);
|
|
}
|
|
|
|
/**
|
|
* @Post("/password/login", name="home.account.pwd_login")
|
|
*/
|
|
public function loginByPasswordAction()
|
|
{
|
|
$service = new AccountService();
|
|
|
|
$service->loginByPassword();
|
|
|
|
$returnUrl = $this->request->getPost('return_url', 'string');
|
|
|
|
$location = $returnUrl ?: $this->url->get(['for' => 'home.index']);
|
|
|
|
return $this->jsonSuccess(['location' => $location]);
|
|
}
|
|
|
|
/**
|
|
* @Post("/verify/login", name="home.account.verify_login")
|
|
*/
|
|
public function loginByVerifyAction()
|
|
{
|
|
$service = new AccountService();
|
|
|
|
$service->loginByVerify();
|
|
|
|
$returnUrl = $this->request->getPost('return_url', 'string');
|
|
|
|
$location = $returnUrl ?: $this->url->get(['for' => 'home.index']);
|
|
|
|
return $this->jsonSuccess(['location' => $location]);
|
|
}
|
|
|
|
/**
|
|
* @Get("/logout", name="home.account.logout")
|
|
*/
|
|
public function logoutAction()
|
|
{
|
|
$service = new AccountService();
|
|
|
|
$service->logout();
|
|
|
|
$this->response->redirect(['for' => 'home.index']);
|
|
}
|
|
|
|
/**
|
|
* @Get("/password/forget", name="home.account.forget_pwd")
|
|
*/
|
|
public function forgetPasswordAction()
|
|
{
|
|
if ($this->authUser->id > 0) {
|
|
$this->response->redirect(['for' => 'home.index']);
|
|
}
|
|
|
|
$service = new AccountService();
|
|
|
|
$captcha = $service->getSettings('captcha');
|
|
|
|
$this->view->pick('account/forget_password');
|
|
$this->view->setVar('captcha', $captcha);
|
|
}
|
|
|
|
/**
|
|
* @Post("/password/reset", name="home.account.reset_pwd")
|
|
*/
|
|
public function resetPasswordAction()
|
|
{
|
|
$service = new PasswordResetService();
|
|
|
|
$service->handle();
|
|
|
|
$loginUrl = $this->url->get(['for' => 'home.account.login']);
|
|
|
|
$content = [
|
|
'location' => $loginUrl,
|
|
'msg' => '重置密码成功',
|
|
];
|
|
|
|
return $this->jsonSuccess($content);
|
|
}
|
|
|
|
/**
|
|
* @Post("/phone/update", name="home.account.update_phone")
|
|
*/
|
|
public function updatePhoneAction()
|
|
{
|
|
$service = new PhoneUpdateService();
|
|
|
|
$service->handle();
|
|
|
|
$location = $this->url->get(['for' => 'home.uc.account']);
|
|
|
|
$content = [
|
|
'location' => $location,
|
|
'msg' => '更新手机成功',
|
|
];
|
|
|
|
return $this->jsonSuccess($content);
|
|
}
|
|
|
|
/**
|
|
* @Post("/email/update", name="home.account.update_email")
|
|
*/
|
|
public function updateEmailAction()
|
|
{
|
|
$service = new EmailUpdateService();
|
|
|
|
$service->handle();
|
|
|
|
$location = $this->url->get(['for' => 'home.uc.account']);
|
|
|
|
$content = [
|
|
'location' => $location,
|
|
'msg' => '更新邮箱成功',
|
|
];
|
|
|
|
return $this->jsonSuccess($content);
|
|
}
|
|
|
|
/**
|
|
* @Post("/password/update", name="home.account.update_pwd")
|
|
*/
|
|
public function updatePasswordAction()
|
|
{
|
|
$service = new PasswordUpdateService();
|
|
|
|
$service->handle();
|
|
|
|
$location = $this->url->get(['for' => 'home.uc.account']);
|
|
|
|
$content = [
|
|
'location' => $location,
|
|
'msg' => '更新密码成功',
|
|
];
|
|
|
|
return $this->jsonSuccess($content);
|
|
}
|
|
|
|
}
|