Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-04-17 16:40:17 +0300
committerMorris Jobke <hey@morrisjobke.de>2019-07-18 12:24:35 +0300
commit006151604b312c526e02cf14c9dc20d668895db6 (patch)
tree009a85b91cfd2b36cc20429ba1c459624b3c6303 /apps/lookup_server_connector
parent9927909a0d567c87ec85b52f8c378fa1dc56ed3b (diff)
Use public interfaces
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/lookup_server_connector')
-rw-r--r--apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php25
1 files changed, 14 insertions, 11 deletions
diff --git a/apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php b/apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php
index 3bad504e45f..b3a736cd97f 100644
--- a/apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php
+++ b/apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php
@@ -22,8 +22,8 @@
namespace OCA\LookupServerConnector\BackgroundJobs;
-use OC\BackgroundJob\Job;
-use OC\BackgroundJob\JobList;
+use OCP\AppFramework\Utility\ITimeFactory;
+use OCP\BackgroundJob\Job;
use OCP\BackgroundJob\IJobList;
use OCP\Http\Client\IClientService;
use OCP\IConfig;
@@ -42,13 +42,16 @@ class RetryJob extends Job {
private $config;
/**
+ * @param ITimeFactory $time
* @param IClientService $clientService
* @param IJobList $jobList
* @param IConfig $config
*/
- public function __construct(IClientService $clientService,
+ public function __construct(ITimeFactory $time,
+ IClientService $clientService,
IJobList $jobList,
IConfig $config) {
+ parent::__construct($time);
$this->clientService = $clientService;
$this->jobList = $jobList;
$this->config = $config;
@@ -67,17 +70,17 @@ class RetryJob extends Job {
/**
* run the job, then remove it from the jobList
*
- * @param JobList $jobList
+ * @param IJobList $jobList
* @param ILogger|null $logger
*/
- public function execute($jobList, ILogger $logger = null) {
+ public function execute($jobList, ILogger $logger = null): void {
if ($this->shouldRun($this->argument)) {
parent::execute($jobList, $logger);
$jobList->remove($this, $this->argument);
}
}
- protected function run($argument) {
+ protected function run($argument): void {
if ($this->killBackgroundJob((int)$argument['retryNo'])) {
return;
}
@@ -103,11 +106,11 @@ class RetryJob extends Job {
);
}
} catch (\Exception $e) {
- $this->jobList->add(RetryJob::class,
+ $this->jobList->add(self::class,
[
'dataArray' => $argument['dataArray'],
'retryNo' => $argument['retryNo'] + 1,
- 'lastRun' => time(),
+ 'lastRun' => $this->time->getTime(),
]
);
@@ -120,10 +123,10 @@ class RetryJob extends Job {
* @param array $argument
* @return bool
*/
- protected function shouldRun($argument) {
+ protected function shouldRun(array $argument): bool {
$retryNo = (int)$argument['retryNo'];
$delay = $this->interval * 6 ** $retryNo;
- return !isset($argument['lastRun']) || ((time() - $argument['lastRun']) > $delay);
+ return !isset($argument['lastRun']) || (($this->time->getTime() - $argument['lastRun']) > $delay);
}
/**
@@ -138,7 +141,7 @@ class RetryJob extends Job {
* @param int $retryCount
* @return bool
*/
- protected function killBackgroundJob($retryCount) {
+ protected function killBackgroundJob(int $retryCount): bool {
$maxTriesReached = $retryCount >= 5;
$lookupServerDisabled = $this->config->getAppValue('files_sharing', 'lookupServerUploadEnabled', 'yes') !== 'yes';