37 lines
963 B
PHP
37 lines
963 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Support\BackgroundJobs;
|
|
|
|
use OCA\Support\Service\SubscriptionService;
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
|
use OCP\BackgroundJob\TimedJob;
|
|
use OCP\IAppConfig;
|
|
|
|
class CheckSubscription extends TimedJob {
|
|
public function __construct(
|
|
ITimeFactory $factory,
|
|
private readonly IAppConfig $appConfig,
|
|
private readonly SubscriptionService $subscriptionService,
|
|
) {
|
|
parent::__construct($factory);
|
|
// Run every 5 minutes
|
|
$this->setInterval(60 * 5);
|
|
}
|
|
|
|
#[\Override]
|
|
public function run($argument) {
|
|
$lastCheck = $this->appConfig->getValueInt('support', 'last_check');
|
|
// renew subscription info every 23h
|
|
if (time() - $lastCheck > 23 * 60 * 60) {
|
|
$this->subscriptionService->renewSubscriptionInfo(false);
|
|
$this->subscriptionService->checkSubscription();
|
|
}
|
|
}
|
|
}
|