E::RULES_AGREEMENT_REQUIRED], ['username', 'validateUsername', 'skipOnEmpty' => false], ['email', 'validateEmail', 'skipOnEmpty' => false], ['password', 'required', 'message' => E::PASSWORD_REQUIRED], ['rePassword', 'required', 'message' => E::RE_PASSWORD_REQUIRED], ['password', PasswordValidate::class], ['rePassword', 'validatePasswordAndRePasswordMatch'], ['lang', LanguageValidator::class], ]; } public function validateUsername() { $account = new Account(); $account->username = $this->username; if (!$account->validate(['username'])) { $this->addErrors($account->getErrors()); } } public function validateEmail() { $account = new Account(); $account->email = $this->email; if (!$account->validate(['email'])) { $this->addErrors($account->getErrors()); } } public function validatePasswordAndRePasswordMatch($attribute) { if (!$this->hasErrors()) { if ($this->password !== $this->rePassword) { $this->addError($attribute, E::RE_PASSWORD_DOES_NOT_MATCH); } } } /** * @return Account|null the saved model or null if saving fails * @throws Exception */ public function signup() { if (!$this->validate()) { return null; } $transaction = Yii::$app->db->beginTransaction(); try { $account = new Account(); $account->uuid = Uuid::uuid4(); $account->email = $this->email; $account->username = $this->username; $account->password = $this->password; $account->lang = $this->lang; $account->status = Account::STATUS_REGISTERED; $account->rules_agreement_version = LATEST_RULES_VERSION; if (!$account->save()) { throw new ErrorException('Account not created.'); } $emailActivation = new RegistrationConfirmation(); $emailActivation->account_id = $account->id; $emailActivation->key = UserFriendlyRandomKey::make(); if (!$emailActivation->save()) { throw new ErrorException('Unable save email-activation model.'); } $this->sendMail($emailActivation, $account); $changeUsernameForm = new ChangeUsernameForm(); $changeUsernameForm->createEventTask($account->id, $account->username, null); $transaction->commit(); } catch (Exception $e) { $transaction->rollBack(); throw $e; } return $account; } // TODO: подумать, чтобы вынести этот метод в какую-то отдельную конструкцию, т.к. используется и внутри NewAccountActivationForm public function sendMail(EmailActivation $emailActivation, Account $account) { /** @var \yii\swiftmailer\Mailer $mailer */ $mailer = Yii::$app->mailer; $fromEmail = Yii::$app->params['fromEmail']; if (!$fromEmail) { throw new InvalidConfigException('Please specify fromEmail app in app params'); } /** @var \yii\swiftmailer\Message $message */ $message = $mailer->compose([ 'html' => '@app/mails/registration-confirmation-html', 'text' => '@app/mails/registration-confirmation-text', ], [ 'key' => $emailActivation->key, ]) ->setTo([$account->email => $account->username]) ->setFrom([$fromEmail => 'Ely.by Accounts']) ->setSubject('Ely.by Account registration'); if (!$message->send()) { throw new ErrorException('Unable send email with activation code.'); } } }