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.

providers.php 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. /**
  3. * @author Frank Karlitschek <frank@owncloud.org>
  4. * @author Lukas Reschke <lukas@owncloud.com>
  5. * @author Morris Jobke <hey@morrisjobke.de>
  6. * @author Stefan Herbrechtsmeier <stefan@herbrechtsmeier.net>
  7. * @author Thomas Müller <thomas.mueller@tmit.eu>
  8. *
  9. * @copyright Copyright (c) 2015, ownCloud, Inc.
  10. * @license AGPL-3.0
  11. *
  12. * This code is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU Affero General Public License, version 3,
  14. * as published by the Free Software Foundation.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU Affero General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Affero General Public License, version 3,
  22. * along with this program. If not, see <http://www.gnu.org/licenses/>
  23. *
  24. */
  25. require_once '../lib/base.php';
  26. header('Content-type: application/xml');
  27. $url=OCP\Util::getServerProtocol().'://'.substr(OCP\Util::getServerHost().OCP\Util::getRequestUri(), 0, -17).'ocs/v1.php/';
  28. echo('
  29. <providers>
  30. <provider>
  31. <id>ownCloud</id>
  32. <location>'.$url.'</location>
  33. <name>ownCloud</name>
  34. <icon></icon>
  35. <termsofuse></termsofuse>
  36. <register></register>
  37. <services>
  38. <config ocsversion="1.7" />
  39. <activity ocsversion="1.7" />
  40. <cloud ocsversion="1.7" />
  41. </services>
  42. </provider>
  43. </providers>
  44. ');