3 * StatusNet, the distributed open-source microblogging tool
5 * StatusNet-only extensions to the Twitter-like API
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 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/
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
36 * Oembed provider implementation
38 * This class handles all /main/oembed(.xml|.json)/ requests.
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/
48 class OembedAction extends Action
51 function handle($args)
53 common_debug("in oembed api action");
56 if( substr(strtolower($url),0,strlen(common_root_url())) == strtolower(common_root_url()) ){
57 $path = substr($url,strlen(common_root_url()));
61 $proxy_args = $r->map($path);
64 $this->serverError(_("$path not found."), 404);
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']){
72 $oembed['type']='link';
73 $id = $proxy_args['notice'];
74 $notice = Notice::staticGet($id);
76 $this->serverError(_("Notice $id not found."), 404);
78 $profile = $notice->getProfile();
79 if (empty($profile)) {
80 $this->serverError(_('Notice has no profile.'), 500);
82 if (!empty($profile->fullname)) {
83 $authorname = $profile->fullname . ' (' . $profile->nickname . ')';
85 $authorname = $profile->nickname;
87 $oembed['title'] = sprintf(_('%1$s\'s status on %2$s'),
89 common_exact_date($notice->created));
90 $oembed['author_name']=$authorname;
91 $oembed['author_url']=$profile->profileurl;
92 $oembed['url']=($notice->url?$notice->url:$notice->uri);
93 $oembed['html']=$notice->rendered;
96 $id = $proxy_args['attachment'];
97 $attachment = File::staticGet($id);
98 if(empty($attachment)){
99 $this->serverError(_("Attachment $id not found."), 404);
101 if(empty($attachment->filename) && $file_oembed = File_oembed::staticGet('file_id', $attachment->id)){
102 // Proxy the existing oembed information
103 $oembed['type']=$file_oembed->type;
104 $oembed['provider']=$file_oembed->provider;
105 $oembed['provider_url']=$file_oembed->provider_url;
106 $oembed['width']=$file_oembed->width;
107 $oembed['height']=$file_oembed->height;
108 $oembed['html']=$file_oembed->html;
109 $oembed['title']=$file_oembed->title;
110 $oembed['author_name']=$file_oembed->author_name;
111 $oembed['author_url']=$file_oembed->author_url;
112 $oembed['url']=$file_oembed->url;
113 }else if(substr($attachment->mimetype,0,strlen('image/'))=='image/'){
114 $oembed['type']='photo';
115 //TODO set width and height
118 $oembed['url']=$attachment->url;
120 $oembed['type']='link';
121 $oembed['url']=common_local_url('attachment',
122 array('attachment' => $attachment->id));
124 if($attachment->title) $oembed['title']=$attachment->title;
127 $this->serverError(_("$path not supported for oembed requests."), 501);
129 switch($args['format']){
131 $this->init_document('xml');
132 $this->elementStart('oembed');
133 $this->element('version',null,$oembed['version']);
134 $this->element('type',null,$oembed['type']);
135 if($oembed['provider_name']) $this->element('provider_name',null,$oembed['provider_name']);
136 if($oembed['provider_url']) $this->element('provider_url',null,$oembed['provider_url']);
137 if($oembed['title']) $this->element('title',null,$oembed['title']);
138 if($oembed['author_name']) $this->element('author_name',null,$oembed['author_name']);
139 if($oembed['author_url']) $this->element('author_url',null,$oembed['author_url']);
140 if($oembed['url']) $this->element('url',null,$oembed['url']);
141 if($oembed['html']) $this->element('html',null,$oembed['html']);
142 if($oembed['width']) $this->element('width',null,$oembed['width']);
143 if($oembed['height']) $this->element('height',null,$oembed['height']);
144 if($oembed['cache_age']) $this->element('cache_age',null,$oembed['cache_age']);
145 if($oembed['thumbnail_url']) $this->element('thumbnail_url',null,$oembed['thumbnail_url']);
146 if($oembed['thumbnail_width']) $this->element('thumbnail_width',null,$oembed['thumbnail_width']);
147 if($oembed['thumbnail_height']) $this->element('thumbnail_height',null,$oembed['thumbnail_height']);
149 $this->elementEnd('oembed');
150 $this->end_document('xml');
152 case 'json': case '':
153 $this->init_document('json');
154 print(json_encode($oembed));
155 $this->end_document('json');
158 // TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
159 $this->serverError(sprintf(_('Content type %s not supported.'), $apidata['content-type']), 501);
162 // TRANS: Error message displaying attachments. %s is the site's base URL.
163 $this->serverError(sprintf(_('Only %s URLs over plain HTTP please.'), common_root_url()), 404);
167 function init_document($type)
171 header('Content-Type: application/xml; charset=utf-8');
175 header('Content-Type: application/json; charset=utf-8');
177 // Check for JSONP callback
178 $callback = $this->arg('callback');
180 print $callback . '(';
184 $this->serverError(_('Not a supported data format.'), 501);
189 function end_document($type='xml')
196 // Check for JSONP callback
197 $callback = $this->arg('callback');
203 $this->serverError(_('Not a supported data format.'), 501);