mirror of
https://github.com/elyby/accounts.git
synced 2024-11-15 17:56:30 +05:30
ebf4947c37
Переписаны тесты для базовой формы с кодовым доступом В базовую форму кодового доступа добавлена проверка на истечение кода
49 lines
1.3 KiB
PHP
49 lines
1.3 KiB
PHP
<?php
|
|
namespace api\models\base;
|
|
|
|
use common\models\EmailActivation;
|
|
|
|
class KeyConfirmationForm extends ApiForm {
|
|
|
|
public $key;
|
|
|
|
private $model;
|
|
|
|
public function rules() {
|
|
return [
|
|
// TODO: нужно провалидировать количество попыток ввода кода для определённого IP адреса и в случае чего запросить капчу
|
|
['key', 'required', 'message' => 'error.key_is_required'],
|
|
['key', 'validateKey'],
|
|
['key', 'validateKeyExpiration'],
|
|
];
|
|
}
|
|
|
|
public function validateKey($attribute) {
|
|
if (!$this->hasErrors()) {
|
|
if ($this->getActivationCodeModel() === null) {
|
|
$this->addError($attribute, "error.{$attribute}_not_exists");
|
|
}
|
|
}
|
|
}
|
|
|
|
public function validateKeyExpiration($attribute) {
|
|
if (!$this->hasErrors()) {
|
|
if ($this->getActivationCodeModel()->isExpired()) {
|
|
$this->addError($attribute, "error.{$attribute}_expire");
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return EmailActivation|null
|
|
*/
|
|
public function getActivationCodeModel() {
|
|
if ($this->model === null) {
|
|
$this->model = EmailActivation::findOne($this->key);
|
|
}
|
|
|
|
return $this->model;
|
|
}
|
|
|
|
}
|