routes.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Björn Schießle <bjoern@schiessle.org>
  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. $application = new \OCA\Federation\AppInfo\Application();
  23. $application->registerRoutes(
  24. $this,
  25. [
  26. 'routes' => [
  27. [
  28. 'name' => 'Settings#addServer',
  29. 'url' => '/trusted-servers',
  30. 'verb' => 'POST'
  31. ],
  32. [
  33. 'name' => 'Settings#removeServer',
  34. 'url' => '/trusted-servers/{id}',
  35. 'verb' => 'DELETE'
  36. ],
  37. [
  38. 'name' => 'Settings#autoAddServers',
  39. 'url' => '/auto-add-servers',
  40. 'verb' => 'POST'
  41. ],
  42. ],
  43. 'ocs' => [
  44. // old endpoints, only used by Nextcloud and ownCloud
  45. [
  46. 'name' => 'OCSAuthAPI#getSharedSecret',
  47. 'url' => '/api/v1/shared-secret',
  48. 'verb' => 'GET',
  49. ],
  50. [
  51. 'name' => 'OCSAuthAPI#requestSharedSecret',
  52. 'url' => '/api/v1/request-shared-secret',
  53. 'verb' => 'POST',
  54. ],
  55. // new endpoints, published as public api
  56. [
  57. 'name' => 'OCSAuthAPI#getSharedSecret',
  58. 'root' => '/cloud',
  59. 'url' => '/shared-secret',
  60. 'verb' => 'GET',
  61. ],
  62. [
  63. 'name' => 'OCSAuthAPI#requestSharedSecret',
  64. 'root' => '/cloud',
  65. 'url' => '/shared-secret',
  66. 'verb' => 'POST',
  67. ],
  68. ],
  69. ]
  70. );