1
0
mirror of https://github.com/chylex/Nextcloud-News.git synced 2025-05-10 19:34:06 +02:00
Nextcloud-News/lib/Cron/Updater.php
2018-12-14 07:54:43 +01:00

57 lines
1.2 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 OC\BackgroundJob\Job;
use OCA\News\Config\Config;
use OCA\News\Service\StatusService;
use OCA\News\Utility\Updater as UpdaterService;
class Updater extends Job
{
/**
* @var Config
*/
private $config;
/**
* @var StatusService
*/
private $status;
/**
* @var UpdaterService
*/
private $updaterService;
public function __construct(
Config $config,
StatusService $status,
UpdaterService $updaterService
) {
$this->config = $config;
$this->status = $status;
$this->updaterService = $updaterService;
}
protected function run($argument)
{
if ($this->config->getUseCronUpdates()
&& $this->status->isProperlyConfigured()
) {
$this->updaterService->beforeUpdate();
$this->updaterService->update();
$this->updaterService->afterUpdate();
}
}
}