Passed
Push — master ( 2911df...737931 )
by Joas
14:09 queued 12s
created

TokenCleanupJob::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 4
c 1
b 0
f 0
nc 1
nop 2
dl 0
loc 6
rs 10
1
<?php
2
/**
3
 * @copyright 2022 Thomas Citharel <[email protected]>
4
 *
5
 * @author Thomas Citharel <[email protected]>
6
 *
7
 * @license AGPL-3.0
8
 *
9
 * This code is free software: you can redistribute it and/or modify
10
 * it under the terms of the GNU Affero General Public License, version 3,
11
 * as published by the Free Software Foundation.
12
 *
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
 * GNU Affero General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU Affero General Public License, version 3,
19
 * along with this program. If not, see <http://www.gnu.org/licenses/>
20
 *
21
 */
22
namespace OC\Authentication\Token;
23
24
use OCP\AppFramework\Utility\ITimeFactory;
25
use OCP\BackgroundJob\TimedJob;
26
27
class TokenCleanupJob extends TimedJob {
28
	private IProvider $provider;
29
30
	public function __construct(ITimeFactory $time, IProvider $provider) {
31
		parent::__construct($time);
32
		$this->provider = $provider;
33
		// Run once a day at off-peak time
34
		$this->setInterval(24 * 60 * 60);
35
		$this->setTimeSensitivity(self::TIME_INSENSITIVE);
36
	}
37
38
	protected function run($argument) {
39
		$this->provider->invalidateOldTokens();
40
	}
41
}
42