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
|
|
|
/**
|
2024-05-29 05:32:54 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
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-07-20 10:43:50 -04: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
|
|
|
}
|