ResetTokenBackgroundJob.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2016, ownCloud, Inc.
  5. *
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Joas Schilling <coding@schilljs.com>
  8. * @author Lukas Reschke <lukas@statuscode.ch>
  9. *
  10. * @license AGPL-3.0
  11. *
  12. * This code is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU Affero General Public License, version 3,
  14. * as published by the Free Software Foundation.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU Affero General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Affero General Public License, version 3,
  22. * along with this program. If not, see <http://www.gnu.org/licenses/>
  23. *
  24. */
  25. namespace OCA\UpdateNotification;
  26. use OCP\BackgroundJob\TimedJob;
  27. use OCP\AppFramework\Utility\ITimeFactory;
  28. use OCP\IConfig;
  29. /**
  30. * Class ResetTokenBackgroundJob deletes any configured token all 24 hours for
  31. *
  32. *
  33. * @package OCA\UpdateNotification
  34. */
  35. class ResetTokenBackgroundJob extends TimedJob {
  36. /** @var IConfig */
  37. private $config;
  38. /** @var ITimeFactory */
  39. private $timeFactory;
  40. /**
  41. * @param IConfig $config
  42. * @param ITimeFactory $timeFactory
  43. */
  44. public function __construct(IConfig $config,
  45. ITimeFactory $timeFactory) {
  46. parent::__construct($timeFactory);
  47. // Run all 10 minutes
  48. parent::setInterval(60 * 10);
  49. $this->config = $config;
  50. $this->timeFactory = $timeFactory;
  51. }
  52. /**
  53. * @param $argument
  54. */
  55. protected function run($argument) {
  56. // Delete old tokens after 2 days
  57. if ($this->config->getSystemValueBool('config_is_read_only') === false && $this->timeFactory->getTime() - (int) $this->config->getAppValue('core', 'updater.secret.created', (string) $this->timeFactory->getTime()) >= 172800) {
  58. $this->config->deleteSystemValue('updater.secret');
  59. }
  60. }
  61. }