apisavedsearcheslist.php 3.8 KB

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