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.

SessionCredentials.php 2.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  6. * @author Robin McCorkell <robin@mccorkell.me.uk>
  7. * @author Vincent Petry <vincent@nextcloud.com>
  8. *
  9. * @license AGPL-3.0
  10. *
  11. * This code is free software: you can redistribute it and/or modify
  12. * it under the terms of the GNU Affero General Public License, version 3,
  13. * as published by the Free Software Foundation.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License, version 3,
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>
  22. *
  23. */
  24. namespace OCA\Files_External\Lib\Auth\Password;
  25. use OCA\Files_External\Lib\Auth\AuthMechanism;
  26. use OCA\Files_External\Lib\InsufficientDataForMeaningfulAnswerException;
  27. use OCA\Files_External\Lib\SessionStorageWrapper;
  28. use OCA\Files_External\Lib\StorageConfig;
  29. use OCP\Authentication\Exceptions\CredentialsUnavailableException;
  30. use OCP\Authentication\LoginCredentials\IStore as CredentialsStore;
  31. use OCP\Files\Storage;
  32. use OCP\Files\StorageAuthException;
  33. use OCP\IL10N;
  34. use OCP\IUser;
  35. /**
  36. * Username and password from login credentials, saved in session
  37. */
  38. class SessionCredentials extends AuthMechanism {
  39. /** @var CredentialsStore */
  40. private $credentialsStore;
  41. public function __construct(IL10N $l, CredentialsStore $credentialsStore) {
  42. $this->credentialsStore = $credentialsStore;
  43. $this->setIdentifier('password::sessioncredentials')
  44. ->setScheme(self::SCHEME_PASSWORD)
  45. ->setText($l->t('Log-in credentials, save in session'))
  46. ->addParameters([]);
  47. }
  48. public function manipulateStorageConfig(StorageConfig &$storage, ?IUser $user = null) {
  49. try {
  50. $credentials = $this->credentialsStore->getLoginCredentials();
  51. } catch (CredentialsUnavailableException $e) {
  52. throw new InsufficientDataForMeaningfulAnswerException('No session credentials saved');
  53. }
  54. if ($user === null) {
  55. throw new StorageAuthException('Session unavailable');
  56. }
  57. if ($credentials->getUID() !== $user->getUID()) {
  58. throw new StorageAuthException('Session credentials for storage owner not available');
  59. }
  60. $storage->setBackendOption('user', $credentials->getLoginName());
  61. $storage->setBackendOption('password', $credentials->getPassword());
  62. }
  63. public function wrapStorage(Storage $storage) {
  64. return new SessionStorageWrapper(['storage' => $storage]);
  65. }
  66. }