1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-27 21:10:24 +08:00
2020-06-07 18:49:57 +08:00

43 lines
1.0 KiB
PHP

<?php
namespace App\Services\Frontend\Account;
use App\Library\Utils\Password as PasswordUtil;
use App\Repos\Account as AccountRepo;
use App\Services\Frontend\Service as FrontendService;
use App\Validators\Account as AccountValidator;
class PasswordUpdate extends FrontendService
{
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;
}
}