apiattachment.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?php
  2. /**
  3. * StatusNet, the distributed open-source microblogging tool
  4. *
  5. * Show a notice's attachment
  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 API
  23. * @package GNUsocial
  24. * @author Hannes Mannerheim <h@nnesmannerhe.im>
  25. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  26. * @link http://www.gnu.org/software/social/
  27. */
  28. if (!defined('GNUSOCIAL')) { exit(1); }
  29. /**
  30. * Show a notice's attachment
  31. *
  32. */
  33. class ApiAttachmentAction extends ApiAuthAction
  34. {
  35. const MAXCOUNT = 100;
  36. var $original = null;
  37. var $cnt = self::MAXCOUNT;
  38. /**
  39. * Take arguments for running
  40. *
  41. * @param array $args $_REQUEST args
  42. *
  43. * @return boolean success flag
  44. */
  45. protected function prepare(array $args=array())
  46. {
  47. parent::prepare($args);
  48. if ($this->format !== 'json') {
  49. $this->clientError('This method currently only serves JSON.', 415);
  50. }
  51. return true;
  52. }
  53. /**
  54. * Handle the request
  55. *
  56. * Make a new notice for the update, save it, and show it
  57. *
  58. * @param array $args $_REQUEST data (unused)
  59. *
  60. * @return void
  61. */
  62. protected function handle()
  63. {
  64. parent::handle();
  65. $file = new File();
  66. $file->selectAdd(); // clears it
  67. $file->selectAdd('url');
  68. $file->id = $this->trimmed('id');
  69. $url = $file->fetchAll('url');
  70. $file_txt = '';
  71. if(strstr($url[0],'.html')) {
  72. $file_txt['txt'] = file_get_contents($url[0]);
  73. $file_txt['body_start'] = strpos($file_txt['txt'],'<body>')+6;
  74. $file_txt['body_end'] = strpos($file_txt['txt'],'</body>');
  75. $file_txt = substr($file_txt['txt'],$file_txt['body_start'],$file_txt['body_end']-$file_txt['body_start']);
  76. }
  77. $this->initDocument('json');
  78. $this->showJsonObjects($file_txt);
  79. $this->endDocument('json');
  80. }
  81. /**
  82. * Return true if read only.
  83. *
  84. * MAY override
  85. *
  86. * @param array $args other arguments
  87. *
  88. * @return boolean is read only action?
  89. */
  90. function isReadOnly($args)
  91. {
  92. return true;
  93. }
  94. }