Use the configured lookup server

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2017-05-10 11:59:14 +02:00
parent 266a1e88fa
commit 5c20d2ca8c
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
1 changed files with 9 additions and 2 deletions

View File

@ -26,6 +26,7 @@ use OC\BackgroundJob\Job;
use OC\BackgroundJob\JobList;
use OCP\BackgroundJob\IJobList;
use OCP\Http\Client\IClientService;
use OCP\IConfig;
use OCP\ILogger;
class RetryJob extends Job {
@ -34,18 +35,24 @@ class RetryJob extends Job {
/** @var IJobList */
private $jobList;
/** @var string */
private $lookupServer = 'https://lookup.nextcloud.com/users';
private $lookupServer;
/** @var int how much time should be between two tries (10 minutes) */
private $interval = 600;
/**
* @param IClientService $clientService
* @param IJobList $jobList
* @param IConfig $config
*/
public function __construct(IClientService $clientService,
IJobList $jobList) {
IJobList $jobList,
IConfig $config) {
$this->clientService = $clientService;
$this->jobList = $jobList;
$this->lookupServer = $config->getSystemValue('lookup_server', 'https://lookup.nextcloud.com');
$this->lookupServer = rtrim($this->lookupServer, '/');
$this->lookupServer .= '/users';
}
/**