mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 19:44:02 +08:00
43 lines
1.0 KiB
PHP
43 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Logic\Account;
|
|
|
|
use App\Library\Utils\Password as PasswordUtil;
|
|
use App\Repos\Account as AccountRepo;
|
|
use App\Services\Logic\Service;
|
|
use App\Validators\Account as AccountValidator;
|
|
|
|
class PasswordUpdate extends Service
|
|
{
|
|
|
|
public function handle()
|
|
{
|
|
$post = $this->request->getPost();
|
|
|
|
$user = $this->getLoginUser();
|
|
|
|
$accountRepo = new AccountRepo();
|
|
|
|
$account = $accountRepo->findById($user->id);
|
|
|
|
$accountValidator = new AccountValidator();
|
|
|
|
$accountValidator->checkOriginPassword($account, $post['origin_password']);
|
|
|
|
$newPassword = $accountValidator->checkPassword($post['new_password']);
|
|
|
|
$accountValidator->checkConfirmPassword($post['new_password'], $post['confirm_password']);
|
|
|
|
$salt = PasswordUtil::salt();
|
|
$password = PasswordUtil::hash($newPassword, $salt);
|
|
|
|
$account->salt = $salt;
|
|
$account->password = $password;
|
|
|
|
$account->update();
|
|
|
|
return $account;
|
|
}
|
|
|
|
}
|