mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 07:22:00 +05:30
7e90f1838e
Реализована форма подтверждения email, обмазана тестами Слегка отрефакторена форма регистрации и авторизации в пользу выноса части логики в общего родителя Проект зачищен от стандартных тестовых параметров Пофикшены методы доступа к API
39 lines
829 B
PHP
39 lines
829 B
PHP
<?php
|
|
namespace api\models;
|
|
|
|
use common\models\EmailActivation;
|
|
|
|
class BaseKeyConfirmationForm extends BaseApiForm {
|
|
|
|
public $key;
|
|
|
|
private $model;
|
|
|
|
public function rules() {
|
|
return [
|
|
['key', 'required', 'message' => 'error.key_is_required'],
|
|
['key', 'validateKey'],
|
|
];
|
|
}
|
|
|
|
public function validateKey($attribute) {
|
|
if (!$this->hasErrors()) {
|
|
if ($this->getActivationCodeModel() === null) {
|
|
$this->addError($attribute, "error.{$attribute}_not_exists");
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return EmailActivation|null
|
|
*/
|
|
public function getActivationCodeModel() {
|
|
if ($this->model === null) {
|
|
$this->model = EmailActivation::findOne($this->key);
|
|
}
|
|
|
|
return $this->model;
|
|
}
|
|
|
|
}
|