clientId = $client->id; if ($notSince !== null) { $result->notSince = $notSince; } return $result; } public function getTtr(): int { return 60/*sec*/ * 5/*min*/; } public function canRetry($attempt, $error): bool { return true; } /** * @param \yii\queue\Queue $queue which pushed and is handling the job * * @throws \Exception * @throws \Throwable * @throws \yii\db\StaleObjectException */ public function execute($queue): void { Yii::$app->statsd->inc('queue.clearOauthSessions.attempt'); /** @var OauthClient|null $client */ $client = OauthClient::find() ->includeDeleted() ->andWhere(['id' => $this->clientId]) ->one(); if ($client === null) { return; } $sessionsQuery = $client->getSessions(); if ($this->notSince !== null) { $sessionsQuery->andWhere(['<=', 'created_at', $this->notSince]); } foreach ($sessionsQuery->each(100, Yii::$app->unbufferedDb) as $session) { /** @var \common\models\OauthSession $session */ $session->delete(); } } }