PhoneRequest.php
1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
namespace App\Http\Request;
use App\Enums\UserStatusEnum;
use App\Helpers\SmsHelper;
use Hikoon\LaravelApi\Support\ApiRequest;
use Overtrue\EasySms\PhoneNumber;
use Str;
class PhoneRequest extends ApiRequest
{
public PhoneNumber $phoneNumber;
protected string $areaName = 'area';
protected string $phoneName = 'phone';
public function prepareForValidation(): void
{
$this->mergeIfMissing([$this->areaName => Str::of($this->input($this->areaName, '86'))->ltrim('+')->toString()]);
}
public function passedValidation(): void
{
$this->phoneNumber = SmsHelper::getAreaPhoneNumber($this->input($this->phoneName), $this->input($this->areaName));
}
public function rules(): array
{
return [
$this->areaName => 'required|integer',
$this->phoneName => 'required'
];
}
public function messages(): array
{
return [
$this->areaName . '.required' => '请选择手机区号',
$this->areaName . '.integer' => '手机区号格式不正确',
$this->phoneName . '.required' => '请输入手机号'
];
}
/**
* @return bool
*/
public function checkPhoneExist(): bool
{
return SmsHelper::checkPhoneExist($this->phoneNumber, $this->input('scope'));
}
/**
* @param int|array|UserStatusEnum $status
* @return bool
*/
public function checkPhoneStatus(array|int|UserStatusEnum $status): bool
{
return SmsHelper::checkPhoneStatus($this->phoneNumber, $status, $this->input('scope'));
}
}