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