2012-08-22 08:31:58 +00:00
|
|
|
<?php
|
2023-07-20 14:43:50 +00:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2012-08-22 08:31:58 +00:00
|
|
|
/**
|
2016-07-21 14:49:16 +00:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 17:56:05 +00:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2020-03-31 08:49:10 +00:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2023-07-20 14:43:50 +00:00
|
|
|
* @author Côme Chilliet <come.chilliet@nextcloud.com>
|
2016-07-21 14:49:16 +00:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 17:56:05 +00:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 16:13:36 +00:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 14:02:16 +00:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2012-08-22 08:31:58 +00:00
|
|
|
*
|
2015-03-26 10:44:34 +00:00
|
|
|
* @license AGPL-3.0
|
2012-08-22 08:31:58 +00:00
|
|
|
*
|
2015-03-26 10:44:34 +00:00
|
|
|
* 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.
|
2012-08-22 08:31:58 +00:00
|
|
|
*
|
2015-03-26 10:44:34 +00:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2012-08-22 08:31:58 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 10:44:34 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2012-08-22 08:31:58 +00:00
|
|
|
*
|
2015-03-26 10:44:34 +00:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 18:57:53 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2012-08-22 08:31:58 +00:00
|
|
|
*
|
|
|
|
*/
|
2016-05-12 14:46:41 +00:00
|
|
|
namespace OCA\User_LDAP\Jobs;
|
2012-08-22 08:31:58 +00:00
|
|
|
|
2023-11-23 09:22:34 +00:00
|
|
|
use OCA\User_LDAP\Service\UpdateGroupsService;
|
2022-06-27 18:21:35 +00:00
|
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
|
|
|
use OCP\BackgroundJob\TimedJob;
|
|
|
|
use OCP\DB\Exception;
|
|
|
|
use OCP\IConfig;
|
2020-10-30 14:31:24 +00:00
|
|
|
use Psr\Log\LoggerInterface;
|
2014-12-20 15:09:04 +00:00
|
|
|
|
2020-10-22 09:25:33 +00:00
|
|
|
class UpdateGroups extends TimedJob {
|
2020-10-30 14:31:24 +00:00
|
|
|
public function __construct(
|
2023-07-20 14:43:50 +00:00
|
|
|
private UpdateGroupsService $service,
|
2023-07-20 10:55:24 +00:00
|
|
|
private LoggerInterface $logger,
|
2022-06-27 18:21:35 +00:00
|
|
|
IConfig $config,
|
2023-07-20 10:55:24 +00:00
|
|
|
ITimeFactory $timeFactory,
|
2020-10-30 14:31:24 +00:00
|
|
|
) {
|
2022-06-27 18:21:35 +00:00
|
|
|
parent::__construct($timeFactory);
|
|
|
|
$this->interval = (int)$config->getAppValue('user_ldap', 'bgjRefreshInterval', '3600');
|
2020-10-30 14:31:24 +00:00
|
|
|
}
|
|
|
|
|
2014-05-11 13:17:27 +00:00
|
|
|
/**
|
2014-05-13 11:29:25 +00:00
|
|
|
* @param mixed $argument
|
2022-06-27 18:21:35 +00:00
|
|
|
* @throws Exception
|
2014-05-11 13:17:27 +00:00
|
|
|
*/
|
2022-06-27 18:21:35 +00:00
|
|
|
public function run($argument): void {
|
2023-07-20 14:43:50 +00:00
|
|
|
$this->logger->debug('Run background job "updateGroups"');
|
|
|
|
$this->service->updateGroups();
|
2012-08-22 08:31:58 +00:00
|
|
|
}
|
2013-02-14 21:16:48 +00:00
|
|
|
}
|