mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2024-11-21 22:42:48 +01:00
1784406fa7
* don't use private class anymore * execute is deprecated * fix migration execute statement * fix unittest Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
78 lines
1.7 KiB
PHP
78 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* Nextcloud - News
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later. See the COPYING file.
|
|
*
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
|
* @copyright 2012-2014 Bernhard Posselt
|
|
*/
|
|
|
|
namespace OCA\News\Cron;
|
|
|
|
use OCP\BackgroundJob\TimedJob;
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
|
|
|
use OCA\News\AppInfo\Application;
|
|
use OCA\News\Service\StatusService;
|
|
use OCA\News\Service\UpdaterService;
|
|
use OCP\IConfig;
|
|
|
|
class UpdaterJob extends TimedJob
|
|
{
|
|
|
|
/**
|
|
* @var IConfig
|
|
*/
|
|
private $config;
|
|
/**
|
|
* @var StatusService
|
|
*/
|
|
private $statusService;
|
|
/**
|
|
* @var UpdaterService
|
|
*/
|
|
private $updaterService;
|
|
|
|
public function __construct(
|
|
ITimeFactory $time,
|
|
IConfig $config,
|
|
StatusService $status,
|
|
UpdaterService $updaterService
|
|
) {
|
|
parent::__construct($time);
|
|
$this->config = $config;
|
|
$this->statusService = $status;
|
|
$this->updaterService = $updaterService;
|
|
|
|
$interval = $this->config->getAppValue(
|
|
Application::NAME,
|
|
'updateInterval',
|
|
Application::DEFAULT_SETTINGS['updateInterval']
|
|
);
|
|
|
|
$this->setInterval($interval);
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
protected function run($argument)
|
|
{
|
|
$uses_cron = (bool) $this->config->getAppValue(
|
|
Application::NAME,
|
|
'useCronUpdates',
|
|
Application::DEFAULT_SETTINGS['useCronUpdates']
|
|
);
|
|
|
|
if (!$uses_cron || !$this->statusService->isCronProperlyConfigured()) {
|
|
return;
|
|
}
|
|
|
|
$this->updaterService->beforeUpdate();
|
|
$this->updaterService->update();
|
|
$this->updaterService->afterUpdate();
|
|
}
|
|
}
|