mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 07:22:00 +05:30
58 lines
1.5 KiB
PHP
58 lines
1.5 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace common\tasks;
|
|
|
|
use common\emails\EmailHelper;
|
|
use common\emails\templates\RegistrationEmail;
|
|
use common\emails\templates\RegistrationEmailParams;
|
|
use common\models\confirmations\RegistrationConfirmation;
|
|
use Yii;
|
|
use yii\queue\RetryableJobInterface;
|
|
|
|
class SendRegistrationEmail implements RetryableJobInterface {
|
|
|
|
public $username;
|
|
|
|
public $email;
|
|
|
|
public $code;
|
|
|
|
public $link;
|
|
|
|
public $locale;
|
|
|
|
public static function createFromConfirmation(RegistrationConfirmation $confirmation): self {
|
|
$account = $confirmation->account;
|
|
|
|
$result = new self();
|
|
$result->username = $account->username;
|
|
$result->email = $account->email;
|
|
$result->code = $confirmation->key;
|
|
$result->link = Yii::$app->request->getHostInfo() . '/activation/' . $confirmation->key;
|
|
$result->locale = $account->lang;
|
|
|
|
return $result;
|
|
}
|
|
|
|
public function getTtr() {
|
|
return 30;
|
|
}
|
|
|
|
public function canRetry($attempt, $error) {
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @param \yii\queue\Queue $queue
|
|
* @throws \common\emails\exceptions\CannotSendEmailException
|
|
*/
|
|
public function execute($queue) {
|
|
Yii::$app->statsd->inc('queue.sendRegistrationEmail.attempt');
|
|
$params = new RegistrationEmailParams($this->username, $this->code, $this->link);
|
|
$to = EmailHelper::buildTo($this->username, $this->email);
|
|
$template = new RegistrationEmail($to, $this->locale, $params);
|
|
$template->send();
|
|
}
|
|
|
|
}
|