2016-11-17 06:14:13 -05:00
|
|
|
<?php
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2019-04-17 11:31:22 -04:00
|
|
|
declare(strict_types=1);
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2016-11-17 06:14:13 -05:00
|
|
|
/**
|
2024-05-30 14:13:41 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2016-11-17 06:14:13 -05:00
|
|
|
*/
|
|
|
|
|
namespace OCA\LookupServerConnector;
|
|
|
|
|
|
2016-11-18 09:33:51 -05:00
|
|
|
use OCA\LookupServerConnector\BackgroundJobs\RetryJob;
|
|
|
|
|
use OCP\BackgroundJob\IJobList;
|
2017-05-10 03:44:02 -04:00
|
|
|
use OCP\IConfig;
|
2016-11-17 06:14:13 -05:00
|
|
|
use OCP\IUser;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class UpdateLookupServer
|
|
|
|
|
*
|
|
|
|
|
* @package OCA\LookupServerConnector
|
|
|
|
|
*/
|
|
|
|
|
class UpdateLookupServer {
|
2019-04-17 11:31:22 -04:00
|
|
|
/** @var IConfig */
|
|
|
|
|
private $config;
|
2016-11-18 09:33:51 -05:00
|
|
|
/** @var IJobList */
|
|
|
|
|
private $jobList;
|
2016-11-17 11:00:25 -05:00
|
|
|
|
2016-11-17 06:14:13 -05:00
|
|
|
/**
|
2016-11-18 09:33:51 -05:00
|
|
|
* @param IJobList $jobList
|
2017-05-10 03:44:02 -04:00
|
|
|
* @param IConfig $config
|
2016-11-17 06:14:13 -05:00
|
|
|
*/
|
2019-04-17 11:31:22 -04:00
|
|
|
public function __construct(IJobList $jobList,
|
2017-05-10 03:44:02 -04:00
|
|
|
IConfig $config) {
|
2019-04-17 11:31:22 -04:00
|
|
|
$this->config = $config;
|
2016-11-18 09:33:51 -05:00
|
|
|
$this->jobList = $jobList;
|
2016-11-17 06:14:13 -05:00
|
|
|
}
|
|
|
|
|
|
2016-11-18 04:10:05 -05:00
|
|
|
/**
|
|
|
|
|
* @param IUser $user
|
|
|
|
|
*/
|
2019-04-17 09:38:24 -04:00
|
|
|
public function userUpdated(IUser $user): void {
|
2019-01-07 06:15:11 -05:00
|
|
|
if (!$this->shouldUpdateLookupServer()) {
|
2018-10-17 07:09:11 -04:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-17 11:31:22 -04:00
|
|
|
// Reset retry counter
|
|
|
|
|
$this->config->deleteUserValue(
|
|
|
|
|
$user->getUID(),
|
|
|
|
|
'lookup_server_connector',
|
|
|
|
|
'update_retries'
|
2019-04-17 09:38:24 -04:00
|
|
|
);
|
2019-04-17 11:31:22 -04:00
|
|
|
$this->jobList->add(RetryJob::class, ['userId' => $user->getUID()]);
|
2016-11-17 11:00:25 -05:00
|
|
|
}
|
2019-01-07 06:15:11 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* check if we should update the lookup server, we only do it if
|
|
|
|
|
*
|
2019-04-17 11:31:22 -04:00
|
|
|
* + we have an internet connection
|
|
|
|
|
* + the lookup server update was not disabled by the admin
|
|
|
|
|
* + we have a valid lookup server URL
|
2019-01-07 06:15:11 -05:00
|
|
|
*
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
2019-04-17 09:38:24 -04:00
|
|
|
private function shouldUpdateLookupServer(): bool {
|
2019-04-17 11:31:22 -04:00
|
|
|
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') !== '';
|
2019-01-07 06:15:11 -05:00
|
|
|
}
|
2016-11-17 06:14:13 -05:00
|
|
|
}
|