2016-01-22 16:58:49 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-01-22 16:58:49 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2016-01-22 16:58:49 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Federation;
|
|
|
|
|
|
|
|
use OC\BackgroundJob\TimedJob;
|
2017-08-02 15:34:51 +03:00
|
|
|
use OCP\ILogger;
|
2016-01-22 16:58:49 +03:00
|
|
|
|
|
|
|
class SyncJob extends TimedJob {
|
|
|
|
|
2017-08-02 15:34:51 +03:00
|
|
|
/** @var SyncFederationAddressBooks */
|
|
|
|
protected $syncService;
|
|
|
|
|
|
|
|
/** @var ILogger */
|
|
|
|
protected $logger;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param SyncFederationAddressBooks $syncService
|
|
|
|
* @param ILogger $logger
|
|
|
|
*/
|
|
|
|
public function __construct(SyncFederationAddressBooks $syncService, ILogger $logger) {
|
2016-01-22 16:58:49 +03:00
|
|
|
// Run once a day
|
|
|
|
$this->setInterval(24 * 60 * 60);
|
2017-08-02 15:34:51 +03:00
|
|
|
$this->syncService = $syncService;
|
|
|
|
$this->logger = $logger;
|
2016-01-22 16:58:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function run($argument) {
|
2020-04-09 14:53:40 +03:00
|
|
|
$this->syncService->syncThemAll(function ($url, $ex) {
|
2016-01-22 16:58:49 +03:00
|
|
|
if ($ex instanceof \Exception) {
|
2018-01-17 17:21:56 +03:00
|
|
|
$this->logger->logException($ex, [
|
|
|
|
'message' => "Error while syncing $url.",
|
2018-08-06 22:07:15 +03:00
|
|
|
'level' => ILogger::INFO,
|
2018-01-17 17:21:56 +03:00
|
|
|
'app' => 'fed-sync',
|
|
|
|
]);
|
2016-01-22 16:58:49 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|