2016-01-15 14:51:27 +05:30
|
|
|
<?php
|
2016-05-14 05:17:17 +05:30
|
|
|
namespace api\models\authentication;
|
2016-01-15 14:51:27 +05:30
|
|
|
|
|
|
|
use api\components\ReCaptcha\Validator as ReCaptchaValidator;
|
2016-03-20 05:03:49 +05:30
|
|
|
use api\models\base\ApiForm;
|
2016-06-17 02:02:23 +05:30
|
|
|
use common\helpers\Error as E;
|
2016-05-14 05:17:17 +05:30
|
|
|
use api\models\profile\ChangeUsernameForm;
|
2016-01-15 14:51:27 +05:30
|
|
|
use common\components\UserFriendlyRandomKey;
|
|
|
|
use common\models\Account;
|
2016-05-11 01:10:06 +05:30
|
|
|
use common\models\confirmations\RegistrationConfirmation;
|
2016-01-15 14:51:27 +05:30
|
|
|
use common\models\EmailActivation;
|
2016-05-13 14:33:00 +05:30
|
|
|
use common\validators\LanguageValidator;
|
2016-05-12 03:43:19 +05:30
|
|
|
use common\validators\PasswordValidate;
|
2016-07-17 21:12:37 +05:30
|
|
|
use Exception;
|
2016-02-28 17:38:00 +05:30
|
|
|
use Ramsey\Uuid\Uuid;
|
2016-01-15 14:51:27 +05:30
|
|
|
use Yii;
|
|
|
|
use yii\base\ErrorException;
|
2016-04-15 09:36:21 +05:30
|
|
|
use yii\base\InvalidConfigException;
|
2016-01-15 14:51:27 +05:30
|
|
|
|
2016-03-20 05:03:49 +05:30
|
|
|
class RegistrationForm extends ApiForm {
|
2016-01-15 14:51:27 +05:30
|
|
|
|
|
|
|
public $username;
|
|
|
|
public $email;
|
|
|
|
public $password;
|
|
|
|
public $rePassword;
|
|
|
|
public $rulesAgreement;
|
2016-05-13 14:33:00 +05:30
|
|
|
public $lang;
|
2016-01-15 14:51:27 +05:30
|
|
|
|
|
|
|
public function rules() {
|
|
|
|
return [
|
2016-06-17 02:02:23 +05:30
|
|
|
[[], ReCaptchaValidator::class, 'message' => E::CAPTCHA_INVALID, 'when' => !YII_ENV_TEST],
|
|
|
|
['rulesAgreement', 'required', 'message' => E::RULES_AGREEMENT_REQUIRED],
|
2016-01-15 14:51:27 +05:30
|
|
|
|
2016-03-20 04:55:26 +05:30
|
|
|
['username', 'validateUsername', 'skipOnEmpty' => false],
|
|
|
|
['email', 'validateEmail', 'skipOnEmpty' => false],
|
2016-01-15 14:51:27 +05:30
|
|
|
|
2016-06-17 02:02:23 +05:30
|
|
|
['password', 'required', 'message' => E::PASSWORD_REQUIRED],
|
|
|
|
['rePassword', 'required', 'message' => E::RE_PASSWORD_REQUIRED],
|
2016-05-12 03:43:19 +05:30
|
|
|
['password', PasswordValidate::class],
|
2016-01-15 14:51:27 +05:30
|
|
|
['rePassword', 'validatePasswordAndRePasswordMatch'],
|
2016-05-13 14:33:00 +05:30
|
|
|
|
|
|
|
['lang', LanguageValidator::class],
|
2016-01-15 14:51:27 +05:30
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2016-03-20 04:55:26 +05:30
|
|
|
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());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-15 14:51:27 +05:30
|
|
|
public function validatePasswordAndRePasswordMatch($attribute) {
|
|
|
|
if (!$this->hasErrors()) {
|
|
|
|
if ($this->password !== $this->rePassword) {
|
2016-06-17 02:02:23 +05:30
|
|
|
$this->addError($attribute, E::RE_PASSWORD_DOES_NOT_MATCH);
|
2016-01-15 14:51:27 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Account|null the saved model or null if saving fails
|
2016-07-17 21:12:37 +05:30
|
|
|
* @throws Exception
|
2016-01-15 14:51:27 +05:30
|
|
|
*/
|
|
|
|
public function signup() {
|
|
|
|
if (!$this->validate()) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$transaction = Yii::$app->db->beginTransaction();
|
|
|
|
try {
|
|
|
|
$account = new Account();
|
2016-02-28 17:38:00 +05:30
|
|
|
$account->uuid = Uuid::uuid4();
|
2016-01-15 14:51:27 +05:30
|
|
|
$account->email = $this->email;
|
|
|
|
$account->username = $this->username;
|
|
|
|
$account->password = $this->password;
|
2016-05-13 14:33:00 +05:30
|
|
|
$account->lang = $this->lang;
|
2016-01-15 14:51:27 +05:30
|
|
|
$account->status = Account::STATUS_REGISTERED;
|
|
|
|
if (!$account->save()) {
|
|
|
|
throw new ErrorException('Account not created.');
|
|
|
|
}
|
|
|
|
|
2016-05-11 01:10:06 +05:30
|
|
|
$emailActivation = new RegistrationConfirmation();
|
2016-01-15 14:51:27 +05:30
|
|
|
$emailActivation->account_id = $account->id;
|
|
|
|
$emailActivation->key = UserFriendlyRandomKey::make();
|
|
|
|
|
|
|
|
if (!$emailActivation->save()) {
|
|
|
|
throw new ErrorException('Unable save email-activation model.');
|
|
|
|
}
|
|
|
|
|
2016-03-13 04:49:00 +05:30
|
|
|
$this->sendMail($emailActivation, $account);
|
2016-01-15 14:51:27 +05:30
|
|
|
|
2016-07-17 21:12:37 +05:30
|
|
|
$changeUsernameForm = new ChangeUsernameForm();
|
|
|
|
$changeUsernameForm->createEventTask($account->id, $account->username, null);
|
|
|
|
|
2016-01-15 14:51:27 +05:30
|
|
|
$transaction->commit();
|
2016-07-17 21:12:37 +05:30
|
|
|
} catch (Exception $e) {
|
2016-01-15 14:51:27 +05:30
|
|
|
$transaction->rollBack();
|
|
|
|
throw $e;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $account;
|
|
|
|
}
|
|
|
|
|
2016-03-13 04:49:00 +05:30
|
|
|
// TODO: подумать, чтобы вынести этот метод в какую-то отдельную конструкцию, т.к. используется и внутри NewAccountActivationForm
|
|
|
|
public function sendMail(EmailActivation $emailActivation, Account $account) {
|
|
|
|
/** @var \yii\swiftmailer\Mailer $mailer */
|
|
|
|
$mailer = Yii::$app->mailer;
|
2016-04-15 09:36:21 +05:30
|
|
|
$fromEmail = Yii::$app->params['fromEmail'];
|
|
|
|
|
|
|
|
if (!$fromEmail) {
|
|
|
|
throw new InvalidConfigException('Please specify fromEmail app in app params');
|
|
|
|
}
|
|
|
|
|
2016-03-13 04:49:00 +05:30
|
|
|
/** @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])
|
2016-04-15 09:36:21 +05:30
|
|
|
->setFrom([$fromEmail => 'Ely.by Accounts'])
|
2016-03-13 04:49:00 +05:30
|
|
|
->setSubject('Ely.by Account registration');
|
|
|
|
|
|
|
|
if (!$message->send()) {
|
|
|
|
throw new ErrorException('Unable send email with activation code.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-15 14:51:27 +05:30
|
|
|
}
|