You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AppPasswordController.php 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2018, Roeland Jago Douma <roeland@famdouma.nl>
  5. *
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Daniel Kesselberg <mail@danielkesselberg.de>
  8. * @author Roeland Jago Douma <roeland@famdouma.nl>
  9. *
  10. * @license GNU AGPL version 3 or any later version
  11. *
  12. * This program is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU Affero General Public License as
  14. * published by the Free Software Foundation, either version 3 of the
  15. * License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU Affero General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU Affero General Public License
  23. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  24. *
  25. */
  26. namespace OC\Core\Controller;
  27. use OC\Authentication\Events\AppPasswordCreatedEvent;
  28. use OC\Authentication\Exceptions\InvalidTokenException;
  29. use OC\Authentication\Token\IProvider;
  30. use OC\Authentication\Token\IToken;
  31. use OCP\AppFramework\Http\DataResponse;
  32. use OCP\AppFramework\OCS\OCSForbiddenException;
  33. use OCP\Authentication\Exceptions\CredentialsUnavailableException;
  34. use OCP\Authentication\Exceptions\PasswordUnavailableException;
  35. use OCP\Authentication\LoginCredentials\IStore;
  36. use OCP\EventDispatcher\IEventDispatcher;
  37. use OCP\IRequest;
  38. use OCP\ISession;
  39. use OCP\Security\ISecureRandom;
  40. class AppPasswordController extends \OCP\AppFramework\OCSController {
  41. private ISession $session;
  42. private ISecureRandom $random;
  43. private IProvider $tokenProvider;
  44. private IStore $credentialStore;
  45. private IEventDispatcher $eventDispatcher;
  46. public function __construct(string $appName,
  47. IRequest $request,
  48. ISession $session,
  49. ISecureRandom $random,
  50. IProvider $tokenProvider,
  51. IStore $credentialStore,
  52. IEventDispatcher $eventDispatcher) {
  53. parent::__construct($appName, $request);
  54. $this->session = $session;
  55. $this->random = $random;
  56. $this->tokenProvider = $tokenProvider;
  57. $this->credentialStore = $credentialStore;
  58. $this->eventDispatcher = $eventDispatcher;
  59. }
  60. /**
  61. * @NoAdminRequired
  62. *
  63. * @throws OCSForbiddenException
  64. */
  65. public function getAppPassword(): DataResponse {
  66. // We do not allow the creation of new tokens if this is an app password
  67. if ($this->session->exists('app_password')) {
  68. throw new OCSForbiddenException('You cannot request an new apppassword with an apppassword');
  69. }
  70. try {
  71. $credentials = $this->credentialStore->getLoginCredentials();
  72. } catch (CredentialsUnavailableException $e) {
  73. throw new OCSForbiddenException();
  74. }
  75. try {
  76. $password = $credentials->getPassword();
  77. } catch (PasswordUnavailableException $e) {
  78. $password = null;
  79. }
  80. $userAgent = $this->request->getHeader('USER_AGENT');
  81. $token = $this->random->generate(72, ISecureRandom::CHAR_UPPER.ISecureRandom::CHAR_LOWER.ISecureRandom::CHAR_DIGITS);
  82. $generatedToken = $this->tokenProvider->generateToken(
  83. $token,
  84. $credentials->getUID(),
  85. $credentials->getLoginName(),
  86. $password,
  87. $userAgent,
  88. IToken::PERMANENT_TOKEN,
  89. IToken::DO_NOT_REMEMBER
  90. );
  91. $this->eventDispatcher->dispatchTyped(
  92. new AppPasswordCreatedEvent($generatedToken)
  93. );
  94. return new DataResponse([
  95. 'apppassword' => $token
  96. ]);
  97. }
  98. /**
  99. * @NoAdminRequired
  100. */
  101. public function deleteAppPassword(): DataResponse {
  102. if (!$this->session->exists('app_password')) {
  103. throw new OCSForbiddenException('no app password in use');
  104. }
  105. $appPassword = $this->session->get('app_password');
  106. try {
  107. $token = $this->tokenProvider->getToken($appPassword);
  108. } catch (InvalidTokenException $e) {
  109. throw new OCSForbiddenException('could not remove apptoken');
  110. }
  111. $this->tokenProvider->invalidateTokenById($token->getUID(), $token->getId());
  112. return new DataResponse();
  113. }
  114. /**
  115. * @NoAdminRequired
  116. */
  117. public function rotateAppPassword(): DataResponse {
  118. if (!$this->session->exists('app_password')) {
  119. throw new OCSForbiddenException('no app password in use');
  120. }
  121. $appPassword = $this->session->get('app_password');
  122. try {
  123. $token = $this->tokenProvider->getToken($appPassword);
  124. } catch (InvalidTokenException $e) {
  125. throw new OCSForbiddenException('could not rotate apptoken');
  126. }
  127. $newToken = $this->random->generate(72, ISecureRandom::CHAR_UPPER.ISecureRandom::CHAR_LOWER.ISecureRandom::CHAR_DIGITS);
  128. $this->tokenProvider->rotate($token, $appPassword, $newToken);
  129. return new DataResponse([
  130. 'apppassword' => $newToken,
  131. ]);
  132. }
  133. }