TokenCleanupJob.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. /**
  3. * @copyright 2022 Thomas Citharel <nextcloud@tcit.fr>
  4. *
  5. * @author Thomas Citharel <nextcloud@tcit.fr>
  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. use OCP\AppFramework\Utility\ITimeFactory;
  24. use OCP\BackgroundJob\TimedJob;
  25. class TokenCleanupJob extends TimedJob {
  26. private IProvider $provider;
  27. public function __construct(ITimeFactory $time, IProvider $provider) {
  28. parent::__construct($time);
  29. $this->provider = $provider;
  30. // Run once a day at off-peak time
  31. $this->setInterval(24 * 60 * 60);
  32. $this->setTimeSensitivity(self::TIME_INSENSITIVE);
  33. }
  34. protected function run($argument) {
  35. $this->provider->invalidateOldTokens();
  36. }
  37. }