]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apiattachment.php
Qvitter API changes (thanks hannes2peer)
[quix0rs-gnu-social.git] / actions / apiattachment.php
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
29 if (!defined('GNUSOCIAL')) { exit(1); }
30
31 /**
32  * Show a notice's attachment
33  *
34  */
35 class ApiAttachmentAction extends ApiAuthAction
36 {
37     const MAXCOUNT = 100;
38
39     var $original = null;
40     var $cnt      = self::MAXCOUNT;
41
42     /**
43      * Take arguments for running
44      *
45      * @param array $args $_REQUEST args
46      *
47      * @return boolean success flag
48      */
49     function prepare($args)
50     {
51         parent::prepare($args);
52
53         return true;
54     }
55
56     /**
57      * Handle the request
58      *
59      * Make a new notice for the update, save it, and show it
60      *
61      * @param array $args $_REQUEST data (unused)
62      *
63      * @return void
64      */
65     function handle($args)
66     {
67         parent::handle($args);
68         $file = new File();
69         $file->selectAdd(); // clears it
70         $file->selectAdd('url');
71         $file->id = $this->trimmed('id');
72         $url = $file->fetchAll('url');
73         
74                 $file_txt = '';
75                 if(strstr($url[0],'.html')) {
76                         $file_txt['txt'] = file_get_contents(str_replace('://quitter.se','://127.0.0.1',$url[0]));
77                         $file_txt['body_start'] = strpos($file_txt['txt'],'<body>')+6;
78                         $file_txt['body_end'] = strpos($file_txt['txt'],'</body>');
79                         $file_txt = substr($file_txt['txt'],$file_txt['body_start'],$file_txt['body_end']-$file_txt['body_start']);
80                         }
81
82                 $this->initDocument('json');
83                 $this->showJsonObjects($file_txt);
84                 $this->endDocument('json');
85     }
86
87     /**
88      * Return true if read only.
89      *
90      * MAY override
91      *
92      * @param array $args other arguments
93      *
94      * @return boolean is read only action?
95      */
96
97     function isReadOnly($args)
98     {
99         return true;
100     }
101 }