123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- declare(strict_types=1);
- /**
- * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace OCA\OAuth2\Migration;
- use OC\Authentication\Token\IProvider as TokenProvider;
- use OCA\OAuth2\Db\AccessToken;
- use OCP\AppFramework\Utility\ITimeFactory;
- use OCP\Authentication\Exceptions\InvalidTokenException;
- use OCP\IDBConnection;
- use OCP\Migration\IOutput;
- use OCP\Migration\IRepairStep;
- class SetTokenExpiration implements IRepairStep {
- public function __construct(
- private IDBConnection $connection,
- private ITimeFactory $time,
- private TokenProvider $tokenProvider,
- ) {
- }
- public function getName(): string {
- return 'Update OAuth token expiration times';
- }
- public function run(IOutput $output) {
- $qb = $this->connection->getQueryBuilder();
- $qb->select('*')
- ->from('oauth2_access_tokens');
- $cursor = $qb->executeQuery();
- while ($row = $cursor->fetch()) {
- $token = AccessToken::fromRow($row);
- try {
- $appToken = $this->tokenProvider->getTokenById($token->getTokenId());
- $appToken->setExpires($this->time->getTime() + 3600);
- $this->tokenProvider->updateToken($appToken);
- } catch (InvalidTokenException $e) {
- //Skip this token
- }
- }
- $cursor->closeCursor();
- }
- }
|