]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/oembed.php
Merge branch 'oembed-thumbnails' into 0.9.x
[quix0rs-gnu-social.git] / actions / oembed.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * StatusNet-only extensions to the Twitter-like API
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  Twitter
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @copyright 2008 StatusNet, Inc.
26  * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
32     exit(1);
33 }
34
35 /**
36  * Oembed provider implementation
37  *
38  * This class handles all /main/oembed(.xml|.json)/ requests.
39  *
40  * @category  oEmbed
41  * @package   StatusNet
42  * @author    Craig Andrews <candrews@integralblue.com>
43  * @copyright 2008 StatusNet, Inc.
44  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
45  * @link      http://status.net/
46  */
47
48 class OembedAction extends Action
49 {
50
51     function handle($args)
52     {
53         common_debug("in oembed api action");
54
55         $url = $args['url'];
56         if( substr(strtolower($url),0,strlen(common_root_url())) == strtolower(common_root_url()) ){
57             $path = substr($url,strlen(common_root_url()));
58
59             $r = Router::get();
60
61             $proxy_args = $r->map($path);
62
63             if (!$proxy_args) {
64                 $this->serverError(_("$path not found."), 404);
65             }
66             $oembed=array();
67             $oembed['version']='1.0';
68             $oembed['provider_name']=common_config('site', 'name');
69             $oembed['provider_url']=common_root_url();
70             switch($proxy_args['action']){
71                 case 'shownotice':
72                     $oembed['type']='link';
73                     $id = $proxy_args['notice'];
74                     $notice = Notice::staticGet($id);
75                     if(empty($notice)){
76                         $this->serverError(_("Notice $id not found."), 404);
77                     }
78                     $profile = $notice->getProfile();
79                     if (empty($profile)) {
80                         $this->serverError(_('Notice has no profile.'), 500);
81                     }
82                     $authorname = $profile->getFancyName();
83                     $oembed['title'] = sprintf(_('%1$s\'s status on %2$s'),
84                         $authorname,
85                         common_exact_date($notice->created));
86                     $oembed['author_name']=$authorname;
87                     $oembed['author_url']=$profile->profileurl;
88                     $oembed['url']=($notice->url?$notice->url:$notice->uri);
89                     $oembed['html']=$notice->rendered;
90                     break;
91                 case 'attachment':
92                     $id = $proxy_args['attachment'];
93                     $attachment = File::staticGet($id);
94                     if(empty($attachment)){
95                         $this->serverError(_("Attachment $id not found."), 404);
96                     }
97                     if(empty($attachment->filename) && $file_oembed = File_oembed::staticGet('file_id', $attachment->id)){
98                         // Proxy the existing oembed information
99                         $oembed['type']=$file_oembed->type;
100                         $oembed['provider']=$file_oembed->provider;
101                         $oembed['provider_url']=$file_oembed->provider_url;
102                         $oembed['width']=$file_oembed->width;
103                         $oembed['height']=$file_oembed->height;
104                         $oembed['html']=$file_oembed->html;
105                         $oembed['title']=$file_oembed->title;
106                         $oembed['author_name']=$file_oembed->author_name;
107                         $oembed['author_url']=$file_oembed->author_url;
108                         $oembed['url']=$file_oembed->url;
109                     }else if(substr($attachment->mimetype,0,strlen('image/'))=='image/'){
110                         $oembed['type']='photo';
111                         //TODO set width and height
112                         //$oembed['width']=
113                         //$oembed['height']=
114                         $oembed['url']=$attachment->url;
115                         $thumb = $attachment->getThumbnail();
116                         if ($thumb) {
117                             $oembed['thumbnail_url'] = $thumb->url;
118                             $oembed['thumbnail_width'] = $thumb->width;
119                             $oembed['thumbnail_height'] = $thumb->height;
120                         }
121                     }else{
122                         $oembed['type']='link';
123                         $oembed['url']=common_local_url('attachment',
124                             array('attachment' => $attachment->id));
125                     }
126                     if($attachment->title) $oembed['title']=$attachment->title;
127                     break;
128                 default:
129                     $this->serverError(_("$path not supported for oembed requests."), 501);
130             }
131             switch($args['format']){
132                 case 'xml':
133                     $this->init_document('xml');
134                     $this->elementStart('oembed');
135                     $this->element('version',null,$oembed['version']);
136                     $this->element('type',null,$oembed['type']);
137                     if($oembed['provider_name']) $this->element('provider_name',null,$oembed['provider_name']);
138                     if($oembed['provider_url']) $this->element('provider_url',null,$oembed['provider_url']);
139                     if($oembed['title']) $this->element('title',null,$oembed['title']);
140                     if($oembed['author_name']) $this->element('author_name',null,$oembed['author_name']);
141                     if($oembed['author_url']) $this->element('author_url',null,$oembed['author_url']);
142                     if($oembed['url']) $this->element('url',null,$oembed['url']);
143                     if($oembed['html']) $this->element('html',null,$oembed['html']);
144                     if($oembed['width']) $this->element('width',null,$oembed['width']);
145                     if($oembed['height']) $this->element('height',null,$oembed['height']);
146                     if($oembed['cache_age']) $this->element('cache_age',null,$oembed['cache_age']);
147                     if($oembed['thumbnail_url']) $this->element('thumbnail_url',null,$oembed['thumbnail_url']);
148                     if($oembed['thumbnail_width']) $this->element('thumbnail_width',null,$oembed['thumbnail_width']);
149                     if($oembed['thumbnail_height']) $this->element('thumbnail_height',null,$oembed['thumbnail_height']);
150
151                     $this->elementEnd('oembed');
152                     $this->end_document('xml');
153                     break;
154                 case 'json': case '':
155                     $this->init_document('json');
156                     print(json_encode($oembed));
157                     $this->end_document('json');
158                     break;
159                 default:
160                     // TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
161                     $this->serverError(sprintf(_('Content type %s not supported.'), $apidata['content-type']), 501);
162             }
163         }else{
164             // TRANS: Error message displaying attachments. %s is the site's base URL.
165             $this->serverError(sprintf(_('Only %s URLs over plain HTTP please.'), common_root_url()), 404);
166         }
167     }
168
169     function init_document($type)
170     {
171         switch ($type) {
172         case 'xml':
173             header('Content-Type: application/xml; charset=utf-8');
174             $this->startXML();
175             break;
176         case 'json':
177             header('Content-Type: application/json; charset=utf-8');
178
179             // Check for JSONP callback
180             $callback = $this->arg('callback');
181             if ($callback) {
182                 print $callback . '(';
183             }
184             break;
185         default:
186             $this->serverError(_('Not a supported data format.'), 501);
187             break;
188         }
189     }
190
191     function end_document($type='xml')
192     {
193         switch ($type) {
194         case 'xml':
195             $this->endXML();
196             break;
197         case 'json':
198             // Check for JSONP callback
199             $callback = $this->arg('callback');
200             if ($callback) {
201                 print ')';
202             }
203             break;
204         default:
205             $this->serverError(_('Not a supported data format.'), 501);
206             break;
207         }
208         return;
209     }
210
211 }