mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 11:41:27 +08:00
64 lines
1.5 KiB
PHP
64 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Validators;
|
|
|
|
use App\Exceptions\BadRequest as BadRequestException;
|
|
use App\Library\Validators\Common as CommonValidator;
|
|
use App\Services\Verify as VerifyService;
|
|
|
|
class Verify extends Validator
|
|
{
|
|
|
|
public function checkPhone($phone)
|
|
{
|
|
if (!CommonValidator::phone($phone)) {
|
|
throw new BadRequestException('verify.invalid_phone');
|
|
}
|
|
|
|
return $phone;
|
|
}
|
|
|
|
public function checkEmail($email)
|
|
{
|
|
if (!CommonValidator::email($email)) {
|
|
throw new BadRequestException('verify.invalid_email');
|
|
}
|
|
|
|
return $email;
|
|
}
|
|
|
|
public function checkCode($identity, $code)
|
|
{
|
|
if (CommonValidator::email($identity)) {
|
|
$this->checkMailCode($identity, $code);
|
|
} elseif (CommonValidator::phone($identity)) {
|
|
$this->checkSmsCode($identity, $code);
|
|
} else {
|
|
throw new BadRequestException('verify.invalid_code');
|
|
}
|
|
}
|
|
|
|
public function checkSmsCode($phone, $code)
|
|
{
|
|
$service = new VerifyService();
|
|
|
|
$result = $service->checkSmsCode($phone, $code);
|
|
|
|
if (!$result) {
|
|
throw new BadRequestException('verify.invalid_sms_code');
|
|
}
|
|
}
|
|
|
|
public function checkMailCode($email, $code)
|
|
{
|
|
$service = new VerifyService();
|
|
|
|
$result = $service->checkMailCode($email, $code);
|
|
|
|
if (!$result) {
|
|
throw new BadRequestException('verify.invalid_mail_code');
|
|
}
|
|
}
|
|
|
|
}
|