Skip to content

Commit

Permalink
improve lookup server behaviour
Browse files Browse the repository at this point in the history
Don't try to connect to the lookup server if the lookup server was disabled
by the admin or an empty lookup server URL was given

Signed-off-by: Bjoern Schiessle <[email protected]>
  • Loading branch information
schiessle committed Jan 7, 2019
1 parent 35a372d commit d413498
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 2 deletions.
21 changes: 20 additions & 1 deletion apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function execute($jobList, ILogger $logger = null) {
}

protected function run($argument) {
if ($argument['retryNo'] === 5 || empty($this->lookupServer)) {
if ($this->killBackgroundJob((int)$argument['retryNo'])) {
return;
}

Expand Down Expand Up @@ -110,4 +110,23 @@ protected function run($argument) {
protected function shouldRun($argument) {
return !isset($argument['lastRun']) || ((time() - $argument['lastRun']) > $this->interval);
}

/**
* check if we should kill the background job
*
* The lookup server should no longer be contacted if:
*
* - max retries are reached (set to 5)
* - lookup server was disabled by the admin
* - no valid lookup server URL given
*
* @param int $retryCount
* @return bool
*/
protected function killBackgroundJob($retryCount) {
$maxTriesReached = $retryCount >= 5;
$lookupServerDisabled = $this->config->getAppValue('files_sharing', 'lookupServerUploadEnabled', 'yes') !== 'yes';

return $maxTriesReached || $lookupServerDisabled || empty($this->lookupServer);
}
}
20 changes: 19 additions & 1 deletion apps/lookup_server_connector/lib/UpdateLookupServer.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ class UpdateLookupServer {
private $jobList;
/** @var string URL point to lookup server */
private $lookupServer;
/** @var bool */
private $lookupServerEnabled;

/**
* @param AccountManager $accountManager
Expand All @@ -68,6 +70,8 @@ public function __construct(AccountManager $accountManager,
return;
}

$this->lookupServerEnabled = $this->config->getAppValue('files_sharing', 'lookupServerUploadEnabled', 'yes') === 'yes';

$this->lookupServer = $config->getSystemValue('lookup_server', 'https://lookup.nextcloud.com');
if(!empty($this->lookupServer)) {
$this->lookupServer = rtrim($this->lookupServer, '/');
Expand All @@ -79,7 +83,8 @@ public function __construct(AccountManager $accountManager,
* @param IUser $user
*/
public function userUpdated(IUser $user) {
if(empty($this->lookupServer)) {

if (!$this->shouldUpdateLookupServer()) {
return;
}

Expand Down Expand Up @@ -150,4 +155,17 @@ protected function sendToLookupServer(IUser $user, array $publicData) {
);
}
}

/**
* check if we should update the lookup server, we only do it if
*
* * we have a valid URL
* * the lookup server update was enabled by the admin
*
* @return bool
*/
private function shouldUpdateLookupServer() {
return $this->lookupServerEnabled || !empty($this->lookupServer);
}

}

0 comments on commit d413498

Please sign in to comment.