%PDF- %PDF-
Direktori : /www/varak.net/nextcloud.varak.net/apps/files/lib/BackgroundJob/ |
Current File : /www/varak.net/nextcloud.varak.net/apps/files/lib/BackgroundJob/DeleteExpiredOpenLocalEditor.php |
<?php declare(strict_types=1); /** * SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */ namespace OCA\Files\BackgroundJob; use OCA\Files\Db\OpenLocalEditorMapper; use OCP\AppFramework\Utility\ITimeFactory; use OCP\BackgroundJob\TimedJob; /** * Delete all expired "Open local editor" token */ class DeleteExpiredOpenLocalEditor extends TimedJob { protected OpenLocalEditorMapper $mapper; public function __construct( ITimeFactory $time, OpenLocalEditorMapper $mapper ) { parent::__construct($time); $this->mapper = $mapper; // Run every 12h $this->interval = 12 * 3600; $this->setTimeSensitivity(self::TIME_INSENSITIVE); } /** * Makes the background job do its work * * @param array $argument unused argument */ public function run($argument): void { $this->mapper->deleteExpiredTokens($this->time->getTime()); } }