providers.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Frank Karlitschek <frank@karlitschek.de>
  6. * @author Joas Schilling <coding@schilljs.com>
  7. * @author Lukas Reschke <lukas@statuscode.ch>
  8. * @author Morris Jobke <hey@morrisjobke.de>
  9. *
  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 __DIR__ . '/../lib/versioncheck.php';
  26. require_once __DIR__ . '/../lib/base.php';
  27. header('Content-type: application/xml');
  28. $request = \OC::$server->getRequest();
  29. $url = $request->getServerProtocol() . '://' . substr($request->getServerHost() . $request->getRequestUri(), 0, -17).'ocs/v1.php/';
  30. $writer = new XMLWriter();
  31. $writer->openURI('php://output');
  32. $writer->startDocument('1.0','UTF-8');
  33. $writer->setIndent(true);
  34. $writer->startElement('providers');
  35. $writer->startElement('provider');
  36. $writer->writeElement('id', 'ownCloud');
  37. $writer->writeElement('location', $url);
  38. $writer->writeElement('name', 'ownCloud');
  39. $writer->writeElement('icon', '');
  40. $writer->writeElement('termsofuse', '');
  41. $writer->writeElement('register', '');
  42. $writer->startElement('services');
  43. $writer->startElement('config');
  44. $writer->writeAttribute('ocsversion', '1.7');
  45. $writer->endElement();
  46. $writer->startElement('activity');
  47. $writer->writeAttribute('ocsversion', '1.7');
  48. $writer->endElement();
  49. $writer->startElement('cloud');
  50. $writer->writeAttribute('ocsversion', '1.7');
  51. $writer->endElement();
  52. $writer->endElement();
  53. $writer->endElement();
  54. $writer->endDocument();
  55. $writer->flush();