apiqvitterhello.php 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3. · ·
  4. · Say hello to the API ·
  5. · (you will also get headers with e.g. unread notification count....) ·
  6. · ·
  7. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  8. · ·
  9. · ·
  10. · Q V I T T E R ·
  11. · ·
  12. · https://git.gnu.io/h2p/Qvitter ·
  13. · ·
  14. · ·
  15. · <o) ·
  16. · /_//// ·
  17. · (____/ ·
  18. · (o< ·
  19. · o> \\\\_\ ·
  20. · \\) \____) ·
  21. · ·
  22. · ·
  23. · ·
  24. · Qvitter is free software: you can redistribute it and / or modify it ·
  25. · under the terms of the GNU Affero General Public License as published by ·
  26. · the Free Software Foundation, either version three of the License or (at ·
  27. · your option) any later version. ·
  28. · ·
  29. · Qvitter is distributed in hope that it will be useful but WITHOUT ANY ·
  30. · WARRANTY; without even the implied warranty of MERCHANTABILTY or FITNESS ·
  31. · FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for ·
  32. · more details. ·
  33. · ·
  34. · You should have received a copy of the GNU Affero General Public License ·
  35. · along with Qvitter. If not, see <http://www.gnu.org/licenses/>. ·
  36. · ·
  37. · Contact h@nnesmannerhe.im if you have any questions. ·
  38. · ·
  39. · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · */
  40. if (!defined('GNUSOCIAL')) { exit(1); }
  41. class ApiQvitterHelloAction extends ApiAuthAction
  42. {
  43. /**
  44. * Take arguments for running
  45. *
  46. * @param array $args $_REQUEST args
  47. *
  48. * @return boolean success flag
  49. */
  50. protected function prepare(array $args=array())
  51. {
  52. parent::prepare($args);
  53. return true;
  54. }
  55. /**
  56. * Handle the request
  57. *
  58. * @param array $args $_REQUEST data (unused)
  59. *
  60. * @return void
  61. */
  62. protected function handle()
  63. {
  64. parent::handle();
  65. $this->initDocument('json');
  66. $this->showJsonObjects('hello');
  67. $this->endDocument('json');
  68. }
  69. }