xrdsoutputter.php 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. /**
  3. * StatusNet, the distributed open-source microblogging tool
  4. *
  5. * Low-level generator for HTML
  6. *
  7. * PHP version 5
  8. *
  9. * LICENCE: This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as published by
  11. * the Free Software Foundation, either version 3 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. * @category Output
  23. * @package StatusNet
  24. * @author Craig Andrews <candrews@integralblue.com>
  25. * @copyright 2008 StatusNet, Inc.
  26. * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
  27. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  28. * @link http://status.net/
  29. */
  30. if (!defined('STATUSNET') && !defined('LACONICA')) {
  31. exit(1);
  32. }
  33. require_once INSTALLDIR.'/lib/xmloutputter.php';
  34. /**
  35. * Low-level generator for XRDS XML
  36. *
  37. * @category Output
  38. * @package StatusNet
  39. * @author Craig Andrews <candrews@integralblue.com>
  40. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  41. * @link http://status.net/
  42. *
  43. * @see Action
  44. * @see XMLOutputter
  45. */
  46. class XRDSOutputter extends XMLOutputter
  47. {
  48. public function startXRDS()
  49. {
  50. header('Content-Type: application/xrds+xml');
  51. $this->startXML();
  52. $this->elementStart('XRDS', array('xmlns' => 'xri://$xrds'));
  53. }
  54. public function endXRDS()
  55. {
  56. $this->elementEnd('XRDS');
  57. $this->endXML();
  58. }
  59. /**
  60. * Show service.
  61. *
  62. * @param string $type XRDS type
  63. * @param string $uri URI
  64. * @param array $params type parameters, null by default
  65. * @param array $sigs type signatures, null by default
  66. * @param string $localId local ID, null by default
  67. *
  68. * @return void
  69. */
  70. function showXrdsService($type, $uri, $params=null, $sigs=null, $localId=null)
  71. {
  72. $this->elementStart('Service');
  73. if ($uri) {
  74. $this->element('URI', null, $uri);
  75. }
  76. $this->element('Type', null, $type);
  77. if ($params) {
  78. foreach ($params as $param) {
  79. $this->element('Type', null, $param);
  80. }
  81. }
  82. if ($sigs) {
  83. foreach ($sigs as $sig) {
  84. $this->element('Type', null, $sig);
  85. }
  86. }
  87. if ($localId) {
  88. $this->element('LocalID', null, $localId);
  89. }
  90. $this->elementEnd('Service');
  91. }
  92. }