mirror of
https://github.com/elyby/accounts.git
synced 2024-11-16 18:23:29 +05:30
104 lines
3.2 KiB
PHP
104 lines
3.2 KiB
PHP
|
<?php
|
||
|
namespace api\models;
|
||
|
|
||
|
use common\components\UserFriendlyRandomKey;
|
||
|
use common\models\Account;
|
||
|
use common\models\EmailActivation;
|
||
|
use Yii;
|
||
|
use yii\base\ErrorException;
|
||
|
|
||
|
class NewAccountActivationForm extends BaseApiForm {
|
||
|
|
||
|
// Частота повтора отправки нового письма
|
||
|
const REPEAT_FREQUENCY = 5 * 60;
|
||
|
|
||
|
public $email;
|
||
|
|
||
|
public function rules() {
|
||
|
return [
|
||
|
['email', 'filter', 'filter' => 'trim'],
|
||
|
['email', 'required', 'message' => 'error.email_required'],
|
||
|
['email', 'validateAccountForEmail'],
|
||
|
['email', 'validateExistsActivation'],
|
||
|
];
|
||
|
}
|
||
|
|
||
|
public function validateAccountForEmail($attribute) {
|
||
|
if (!$this->hasErrors($attribute)) {
|
||
|
$account = $this->getAccount();
|
||
|
if ($account && $account->status === Account::STATUS_ACTIVE) {
|
||
|
$this->addError($attribute, "error.account_already_activated");
|
||
|
} elseif (!$account) {
|
||
|
$this->addError($attribute, "error.{$attribute}_not_found");
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public function validateExistsActivation($attribute) {
|
||
|
if (!$this->hasErrors($attribute)) {
|
||
|
if ($this->getActiveActivation() !== null) {
|
||
|
$this->addError($attribute, 'error.recently_sent_message');
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public function sendNewMessage() {
|
||
|
if (!$this->validate()) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
$account = $this->getAccount();
|
||
|
$transaction = Yii::$app->db->beginTransaction();
|
||
|
try {
|
||
|
// Удаляем все активации аккаунта для пользователя этого E-mail адреса
|
||
|
/** @var EmailActivation[] $activations */
|
||
|
$activations = $account->getEmailActivations()
|
||
|
->andWhere(['type' => EmailActivation::TYPE_REGISTRATION_EMAIL_CONFIRMATION])
|
||
|
->all();
|
||
|
|
||
|
foreach ($activations as $activation) {
|
||
|
$activation->delete();
|
||
|
}
|
||
|
|
||
|
$activation = new EmailActivation();
|
||
|
$activation->account_id = $account->id;
|
||
|
$activation->type = EmailActivation::TYPE_REGISTRATION_EMAIL_CONFIRMATION;
|
||
|
$activation->key = UserFriendlyRandomKey::make();
|
||
|
if (!$activation->save()) {
|
||
|
throw new ErrorException('Unable save email-activation model.');
|
||
|
}
|
||
|
|
||
|
$regForm = new RegistrationForm();
|
||
|
$regForm->sendMail($activation, $account);
|
||
|
|
||
|
$transaction->commit();
|
||
|
} catch (ErrorException $e) {
|
||
|
$transaction->rollBack();
|
||
|
throw $e;
|
||
|
}
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return Account|null
|
||
|
*/
|
||
|
public function getAccount() {
|
||
|
return Account::find()
|
||
|
->andWhere(['email' => $this->email])
|
||
|
->one();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return EmailActivation|null
|
||
|
*/
|
||
|
public function getActiveActivation() {
|
||
|
return $this->getAccount()
|
||
|
->getEmailActivations()
|
||
|
->andWhere(['type' => EmailActivation::TYPE_REGISTRATION_EMAIL_CONFIRMATION])
|
||
|
->andWhere(['>=', 'created_at', time() - self::REPEAT_FREQUENCY])
|
||
|
->one();
|
||
|
}
|
||
|
|
||
|
}
|