Google.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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\OAuth2\OAuth2;
  30. class Google extends Backend {
  31. use LegacyDependencyCheckPolyfill;
  32. public function __construct(IL10N $l, OAuth2 $legacyAuth) {
  33. $this
  34. ->setIdentifier('googledrive')
  35. ->addIdentifierAlias('\OC\Files\Storage\Google') // legacy compat
  36. ->setStorageClass('\OCA\Files_External\Lib\Storage\Google')
  37. ->setText($l->t('Google Drive'))
  38. ->addParameters([
  39. // all parameters handled in OAuth2 mechanism
  40. ])
  41. ->addAuthScheme(AuthMechanism::SCHEME_OAUTH2)
  42. ->addCustomJs('gdrive')
  43. ->setLegacyAuthMechanism($legacyAuth)
  44. ;
  45. }
  46. }