mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 19:44:02 +08:00
45 lines
1009 B
PHP
45 lines
1009 B
PHP
<?php
|
|
|
|
namespace App\Services\Logic\Account;
|
|
|
|
use App\Repos\Account as AccountRepo;
|
|
use App\Services\Logic\Service;
|
|
use App\Validators\Account as AccountValidator;
|
|
use App\Validators\Verify as VerifyValidator;
|
|
|
|
class EmailUpdate extends Service
|
|
{
|
|
|
|
public function handle()
|
|
{
|
|
$post = $this->request->getPost();
|
|
|
|
$user = $this->getLoginUser();
|
|
|
|
$accountRepo = new AccountRepo();
|
|
|
|
$account = $accountRepo->findById($user->id);
|
|
|
|
$accountValidator = new AccountValidator();
|
|
|
|
$email = $accountValidator->checkEmail($post['email']);
|
|
|
|
if ($email != $account->email) {
|
|
$accountValidator->checkIfEmailTaken($post['email']);
|
|
}
|
|
|
|
$accountValidator->checkLoginPassword($account, $post['login_password']);
|
|
|
|
$verifyValidator = new VerifyValidator();
|
|
|
|
$verifyValidator->checkCode($post['email'], $post['verify_code']);
|
|
|
|
$account->email = $email;
|
|
|
|
$account->update();
|
|
|
|
return $account;
|
|
}
|
|
|
|
}
|