2020-06-12 02:57:02 +05:30
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace common\tasks;
|
|
|
|
|
|
|
|
use common\models\Account;
|
|
|
|
use Yii;
|
|
|
|
use yii\queue\RetryableJobInterface;
|
|
|
|
|
2024-12-02 15:40:55 +05:30
|
|
|
final readonly class DeleteAccount implements RetryableJobInterface {
|
2020-06-12 02:57:02 +05:30
|
|
|
|
2024-12-02 15:40:55 +05:30
|
|
|
public function __construct(private int $accountId) {
|
2020-06-12 02:57:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
public function getTtr(): int {
|
|
|
|
return PHP_INT_MAX; // Let it work as long as it needs to
|
|
|
|
}
|
|
|
|
|
|
|
|
public function canRetry($attempt, $error): bool {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \yii\queue\Queue $queue
|
|
|
|
* @throws \Throwable
|
|
|
|
*/
|
|
|
|
public function execute($queue): void {
|
|
|
|
$account = Account::findOne(['id' => $this->accountId]);
|
|
|
|
if ($account === null || $this->shouldAccountBeDeleted($account) === false) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$transaction = Yii::$app->db->beginTransaction();
|
|
|
|
|
|
|
|
(new ClearAccountSessions($account->id))->execute($queue);
|
|
|
|
foreach ($account->oauthClients as $oauthClient) {
|
|
|
|
(new ClearOauthSessions($oauthClient->id))->execute($queue);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @var \common\models\EmailActivation $emailActivation */
|
|
|
|
foreach ($account->getEmailActivations()->each(100, Yii::$app->unbufferedDb) as $emailActivation) {
|
|
|
|
$emailActivation->delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @var \common\models\UsernameHistory $usernameHistoryEntry */
|
|
|
|
foreach ($account->getUsernameHistory()->each(100, Yii::$app->unbufferedDb) as $usernameHistoryEntry) {
|
|
|
|
$usernameHistoryEntry->delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
$account->delete();
|
|
|
|
|
|
|
|
$transaction->commit();
|
|
|
|
}
|
|
|
|
|
|
|
|
private function shouldAccountBeDeleted(Account $account): bool {
|
|
|
|
return $account->status === Account::STATUS_DELETED && $account->getDeleteAt()->subSecond()->isPast();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|