IProvider.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2022 Artur Neumann <artur@jankaritech.com>
  5. *
  6. * @author Artur Neumann <artur@jankaritech.com>
  7. *
  8. * @license AGPL-3.0
  9. *
  10. * This code is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License, version 3,
  12. * as published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License, version 3,
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>
  21. *
  22. */
  23. namespace OCP\Authentication\Token;
  24. use OCP\Authentication\Exceptions\ExpiredTokenException;
  25. use OCP\Authentication\Exceptions\InvalidTokenException;
  26. use OCP\Authentication\Exceptions\WipeTokenException;
  27. /**
  28. * @since 24.0.8
  29. */
  30. interface IProvider {
  31. /**
  32. * invalidates all tokens of a specific user
  33. * if a client name is given only tokens of that client will be invalidated
  34. *
  35. * @param string $uid
  36. * @param string|null $clientName
  37. * @since 24.0.8
  38. * @return void
  39. */
  40. public function invalidateTokensOfUser(string $uid, ?string $clientName);
  41. /**
  42. * Get a token by token string id
  43. *
  44. * @since 28.0.0
  45. * @throws InvalidTokenException
  46. * @throws ExpiredTokenException
  47. * @throws WipeTokenException
  48. * @return IToken
  49. */
  50. public function getToken(string $tokenId): IToken;
  51. }