mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			70 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
namespace common\tasks;
 | 
						|
 | 
						|
use common\models\OauthClient;
 | 
						|
use Yii;
 | 
						|
use yii\queue\RetryableJobInterface;
 | 
						|
 | 
						|
class ClearOauthSessions implements RetryableJobInterface {
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var int
 | 
						|
     */
 | 
						|
    public $clientId;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var int unix timestamp, that allows to limit this task to clear only some old sessions
 | 
						|
     */
 | 
						|
    public $notSince;
 | 
						|
 | 
						|
    public static function createFromOauthClient(OauthClient $client, int $notSince = null): self {
 | 
						|
        $result = new static();
 | 
						|
        $result->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();
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
}
 |