mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
50 lines
1.3 KiB
PHP
50 lines
1.3 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace common\tasks;
|
|
|
|
use common\emails\EmailHelper;
|
|
use common\emails\templates\ConfirmNewEmail;
|
|
use common\models\confirmations\NewEmailConfirmation;
|
|
use Yii;
|
|
use yii\queue\RetryableJobInterface;
|
|
|
|
class SendNewEmailConfirmation implements RetryableJobInterface {
|
|
|
|
public $email;
|
|
|
|
public $username;
|
|
|
|
public $code;
|
|
|
|
public static function createFromConfirmation(NewEmailConfirmation $confirmation): self {
|
|
$result = new self();
|
|
$result->email = $confirmation->getNewEmail();
|
|
$result->username = $confirmation->account->username;
|
|
$result->code = $confirmation->key;
|
|
|
|
return $result;
|
|
}
|
|
|
|
public function getTtr(): int {
|
|
return 30;
|
|
}
|
|
|
|
public function canRetry($attempt, $error): bool {
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @param \yii\queue\Queue $queue
|
|
* @throws \common\emails\exceptions\CannotSendEmailException
|
|
*/
|
|
public function execute($queue) {
|
|
Yii::$app->statsd->inc('queue.sendNewEmailConfirmation.attempt');
|
|
$template = new ConfirmNewEmail(Yii::$app->mailer);
|
|
$template->setKey($this->code);
|
|
$template->setUsername($this->username);
|
|
$template->send(EmailHelper::buildTo($this->username, $this->email));
|
|
}
|
|
|
|
}
|