account = $account; $this->email = $account->email; parent::__construct($config); } public function getAccount() : Account { return $this->account; } public function rules() { return [ ['email', 'validateFrequency'], ['password', PasswordRequiredValidator::class, 'account' => $this->account], ]; } public function validateFrequency($attribute) { if (!$this->hasErrors()) { $emailConfirmation = $this->getEmailActivation(); if ($emailConfirmation !== null && !$emailConfirmation->canRepeat()) { $this->addError($attribute, E::RECENTLY_SENT_MESSAGE); } } } public function sendCurrentEmailConfirmation() : bool { if (!$this->validate()) { return false; } $transaction = Yii::$app->db->beginTransaction(); try { $this->removeOldCode(); $activation = $this->createCode(); $this->sendCode($activation); $transaction->commit(); } catch (Exception $e) { $transaction->rollBack(); throw $e; } return true; } /** * @return CurrentEmailConfirmation * @throws ErrorException */ public function createCode() : CurrentEmailConfirmation { $account = $this->getAccount(); $emailActivation = new CurrentEmailConfirmation(); $emailActivation->account_id = $account->id; if (!$emailActivation->save()) { throw new ErrorException('Cannot save email activation model'); } return $emailActivation; } /** * Удаляет старый ключ активации, если он существует */ public function removeOldCode() { $emailActivation = $this->getEmailActivation(); if ($emailActivation === null) { return; } $emailActivation->delete(); } public function sendCode(EmailActivation $code) { $mailer = Yii::$app->mailer; $fromEmail = Yii::$app->params['fromEmail']; if (!$fromEmail) { throw new InvalidConfigException('Please specify fromEmail app in app params'); } $acceptor = $code->account; $message = $mailer->compose([ 'html' => '@app/mails/current-email-confirmation-html', 'text' => '@app/mails/current-email-confirmation-text', ], [ 'key' => $code->key, ]) ->setTo([$acceptor->email => $acceptor->username]) ->setFrom([$fromEmail => 'Ely.by Accounts']) ->setSubject('Ely.by Account change E-mail confirmation'); if (!$message->send()) { throw new ErrorException('Unable send email with activation code.'); } } /** * Возвращает E-mail активацию, которая использовалась внутри процесса для перехода на следующий шаг. * Метод предназначен для проверки, не слишком ли часто отправляются письма о смене E-mail. * Проверяем тип подтверждения нового E-mail, поскольку при переходе на этот этап, активация предыдущего * шага удаляется. * @return EmailActivation|null * @throws ErrorException */ public function getEmailActivation() { return $this->getAccount() ->getEmailActivations() ->andWhere([ 'type' => [ EmailActivation::TYPE_CURRENT_EMAIL_CONFIRMATION, EmailActivation::TYPE_NEW_EMAIL_CONFIRMATION, ], ]) ->one(); } }