AmazonS3.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Robin McCorkell <robin@mccorkell.me.uk>
  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 OCA\Files_External\Lib\Backend;
  23. use \OCP\IL10N;
  24. use \OCA\Files_External\Lib\Backend\Backend;
  25. use \OCA\Files_External\Lib\DefinitionParameter;
  26. use \OCA\Files_External\Lib\Auth\AuthMechanism;
  27. use \OCA\Files_External\Service\BackendService;
  28. use \OCA\Files_External\Lib\LegacyDependencyCheckPolyfill;
  29. use \OCA\Files_External\Lib\Auth\AmazonS3\AccessKey;
  30. class AmazonS3 extends Backend {
  31. use LegacyDependencyCheckPolyfill;
  32. public function __construct(IL10N $l, AccessKey $legacyAuth) {
  33. $this
  34. ->setIdentifier('amazons3')
  35. ->addIdentifierAlias('\OC\Files\Storage\AmazonS3') // legacy compat
  36. ->setStorageClass('\OCA\Files_External\Lib\Storage\AmazonS3')
  37. ->setText($l->t('Amazon S3'))
  38. ->addParameters([
  39. (new DefinitionParameter('bucket', $l->t('Bucket'))),
  40. (new DefinitionParameter('hostname', $l->t('Hostname')))
  41. ->setFlag(DefinitionParameter::FLAG_OPTIONAL),
  42. (new DefinitionParameter('port', $l->t('Port')))
  43. ->setFlag(DefinitionParameter::FLAG_OPTIONAL),
  44. (new DefinitionParameter('region', $l->t('Region')))
  45. ->setFlag(DefinitionParameter::FLAG_OPTIONAL),
  46. (new DefinitionParameter('use_ssl', $l->t('Enable SSL')))
  47. ->setType(DefinitionParameter::VALUE_BOOLEAN),
  48. (new DefinitionParameter('use_path_style', $l->t('Enable Path Style')))
  49. ->setType(DefinitionParameter::VALUE_BOOLEAN),
  50. ])
  51. ->addAuthScheme(AccessKey::SCHEME_AMAZONS3_ACCESSKEY)
  52. ->setLegacyAuthMechanism($legacyAuth)
  53. ;
  54. }
  55. }