1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- declare(strict_types=1);
- /**
- * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace OCA\LookupServerConnector;
- use OCA\LookupServerConnector\BackgroundJobs\RetryJob;
- use OCP\BackgroundJob\IJobList;
- use OCP\IConfig;
- use OCP\IUser;
- /**
- * Class UpdateLookupServer
- *
- * @package OCA\LookupServerConnector
- */
- class UpdateLookupServer {
- /** @var IConfig */
- private $config;
- /** @var IJobList */
- private $jobList;
- /**
- * @param IJobList $jobList
- * @param IConfig $config
- */
- public function __construct(IJobList $jobList,
- IConfig $config) {
- $this->config = $config;
- $this->jobList = $jobList;
- }
- /**
- * @param IUser $user
- */
- public function userUpdated(IUser $user): void {
- if (!$this->shouldUpdateLookupServer()) {
- return;
- }
- // Reset retry counter
- $this->config->deleteUserValue(
- $user->getUID(),
- 'lookup_server_connector',
- 'update_retries'
- );
- $this->jobList->add(RetryJob::class, ['userId' => $user->getUID()]);
- }
- /**
- * check if we should update the lookup server, we only do it if
- *
- * + we have an internet connection
- * + the lookup server update was not disabled by the admin
- * + we have a valid lookup server URL
- *
- * @return bool
- */
- private function shouldUpdateLookupServer(): bool {
- return $this->config->getSystemValueBool('has_internet_connection', true) === true &&
- $this->config->getAppValue('files_sharing', 'lookupServerUploadEnabled', 'yes') === 'yes' &&
- $this->config->getSystemValueString('lookup_server', 'https://lookup.nextcloud.com') !== '';
- }
- }
|