2016-02-09 21:58:29 +03:00
|
|
|
<?php
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2018-01-17 15:42:02 +03:00
|
|
|
declare(strict_types=1);
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2016-02-09 21:58:29 +03:00
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2016-02-09 21:58:29 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2016-02-09 21:58:29 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\UpdateNotification;
|
|
|
|
|
|
|
|
use OC\BackgroundJob\TimedJob;
|
|
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
|
|
|
use OCP\IConfig;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class ResetTokenBackgroundJob deletes any configured token all 24 hours for
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @package OCA\UpdateNotification
|
|
|
|
*/
|
|
|
|
class ResetTokenBackgroundJob extends TimedJob {
|
|
|
|
/** @var IConfig */
|
|
|
|
private $config;
|
|
|
|
/** @var ITimeFactory */
|
|
|
|
private $timeFactory;
|
|
|
|
|
|
|
|
/**
|
2018-01-11 12:59:10 +03:00
|
|
|
* @param IConfig $config
|
|
|
|
* @param ITimeFactory $timeFactory
|
2016-02-09 21:58:29 +03:00
|
|
|
*/
|
2018-01-11 12:59:10 +03:00
|
|
|
public function __construct(IConfig $config,
|
|
|
|
ITimeFactory $timeFactory) {
|
2016-02-09 21:58:29 +03:00
|
|
|
// Run all 10 minutes
|
|
|
|
$this->setInterval(60 * 10);
|
2018-01-11 12:59:10 +03:00
|
|
|
$this->config = $config;
|
|
|
|
$this->timeFactory = $timeFactory;
|
2016-02-09 21:58:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $argument
|
|
|
|
*/
|
|
|
|
protected function run($argument) {
|
2016-02-10 16:41:47 +03:00
|
|
|
// Delete old tokens after 2 days
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($this->timeFactory->getTime() - $this->config->getAppValue('core', 'updater.secret.created', $this->timeFactory->getTime()) >= 172800) {
|
2016-02-09 21:58:29 +03:00
|
|
|
$this->config->deleteSystemValue('updater.secret');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|