apiactivityaboutmeunread.php 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3. · ·
  4. · Undocumented Twitter API used by Twidere (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 ApiActivityAboutMeUnreadAction 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. return true;
  53. }
  54. /**
  55. * Handle the request
  56. *
  57. * @param array $args $_REQUEST data (unused)
  58. *
  59. * @return void
  60. */
  61. protected function handle()
  62. {
  63. parent::handle();
  64. $json_obects = array();
  65. $this->initDocument('json');
  66. $this->showJsonObjects($json_obects);
  67. $this->endDocument('json');
  68. }
  69. }