1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-22 19:44:02 +08:00
2020-09-17 21:29:29 +08:00

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 PhoneUpdate extends Service
{
public function handle()
{
$post = $this->request->getPost();
$user = $this->getLoginUser();
$accountRepo = new AccountRepo();
$account = $accountRepo->findById($user->id);
$accountValidator = new AccountValidator();
$phone = $accountValidator->checkPhone($post['phone']);
if ($phone != $account->phone) {
$accountValidator->checkIfPhoneTaken($post['phone']);
}
$accountValidator->checkLoginPassword($account, $post['login_password']);
$verifyValidator = new VerifyValidator();
$verifyValidator->checkCode($post['phone'], $post['verify_code']);
$account->phone = $phone;
$account->update();
return $account;
}
}