3 * StatusNet, the distributed open-source microblogging tool
5 * Show a notice's attachment
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.
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.
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/>.
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/
29 if (!defined('GNUSOCIAL')) { exit(1); }
32 * Show a notice's attachment
35 class ApiAttachmentAction extends ApiAuthAction
40 var $cnt = self::MAXCOUNT;
43 * Take arguments for running
45 * @param array $args $_REQUEST args
47 * @return boolean success flag
49 protected function prepare(array $args=array())
51 parent::prepare($args);
53 if ($this->format !== 'json') {
54 $this->clientError('This method currently only serves JSON.', 415);
63 * Make a new notice for the update, save it, and show it
65 * @param array $args $_REQUEST data (unused)
69 protected function handle()
74 $file->selectAdd(); // clears it
75 $file->selectAdd('url');
76 $file->id = $this->trimmed('id');
77 $url = $file->fetchAll('url');
80 if(strstr($url[0],'.html')) {
81 $file_txt['txt'] = file_get_contents($url[0]);
82 $file_txt['body_start'] = strpos($file_txt['txt'],'<body>')+6;
83 $file_txt['body_end'] = strpos($file_txt['txt'],'</body>');
84 $file_txt = substr($file_txt['txt'],$file_txt['body_start'],$file_txt['body_end']-$file_txt['body_start']);
87 $this->initDocument('json');
88 $this->showJsonObjects($file_txt);
89 $this->endDocument('json');
93 * Return true if read only.
97 * @param array $args other arguments
99 * @return boolean is read only action?
102 function isReadOnly(array $args=array())