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 2.0KB

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