3 * StatusNet, the distributed open-source microblogging tool
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 Zach Copley <zach@status.net>
25 * @copyright 2008-2009 StatusNet, Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27 * @link http://status.net/
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
34 require_once INSTALLDIR . '/plugins/Facebook/facebookutil.php';
35 require_once INSTALLDIR . '/plugins/Facebook/facebooknoticeform.php';
37 class FacebookAction extends Action
47 function __construct($output='php://output', $indent=null, $facebook=null, $flink=null)
49 parent::__construct($output, $indent);
51 $this->facebook = $facebook;
52 $this->flink = $flink;
55 $this->fbuid = $flink->foreign_id;
56 $this->user = $flink->getUser();
59 $this->args = array();
62 function prepare($argarray)
64 parent::prepare($argarray);
66 $this->facebook = getFacebook();
67 $this->fbuid = $this->facebook->require_login();
69 $this->action = $this->trimmed('action');
71 $app_props = $this->facebook->api_client->Admin_getAppProperties(
72 array('canvas_name', 'application_name'));
74 $this->app_uri = 'http://apps.facebook.com/' . $app_props['canvas_name'];
75 $this->app_name = $app_props['application_name'];
77 $this->flink = Foreign_link::getByForeignID($this->fbuid, FACEBOOK_SERVICE);
83 function showStylesheets()
85 $this->cssLink('css/display.css', 'base');
86 $this->cssLink('css/display.css', null, 'screen, projection, tv');
87 $this->cssLink('plugins/Facebook/facebookapp.css');
90 function showScripts()
92 $this->script(common_path('plugins/Facebook/facebookapp.js'));
96 * Start an Facebook ready HTML document
98 * For Facebook we don't want to actually output any headers,
99 * DTD info, etc. Just Stylesheet and JavaScript links.
101 * @param string $type MIME type to use; default is to do negotation.
106 function startHTML($type=null)
108 $this->showStylesheets();
109 $this->showScripts();
111 $this->elementStart('div', array('class' => 'facebook-page'));
115 * Ends a Facebook ready HTML document
121 $this->elementEnd('div');
130 function showNoticeForm()
132 // don't do it for most of the Facebook pages
137 $this->elementStart('div', array('id' => 'wrap'));
141 $this->elementEnd('div');
144 function showHead($error, $success)
148 $this->element("h1", null, $error);
152 $this->element("h1", null, $success);
155 $this->elementStart('fb:if-section-not-added', array('section' => 'profile'));
156 $this->elementStart('span', array('id' => 'add_to_profile'));
157 $this->element('fb:add-section-button', array('section' => 'profile'));
158 $this->elementEnd('span');
159 $this->elementEnd('fb:if-section-not-added');
163 // Make this into a widget later
164 function showLocalNav()
166 $this->elementStart('ul', array('class' => 'nav'));
168 $this->elementStart('li', array('class' =>
169 ($this->action == 'facebookhome') ? 'current' : 'facebook_home'));
171 array('href' => 'index.php', 'title' => _m('Home')), _m('Home'));
172 $this->elementEnd('li');
174 if (common_config('invite', 'enabled')) {
175 $this->elementStart('li',
177 ($this->action == 'facebookinvite') ? 'current' : 'facebook_invite'));
179 array('href' => 'invite.php', 'title' => _m('Invite')), _m('Invite'));
180 $this->elementEnd('li');
183 $this->elementStart('li',
185 ($this->action == 'facebooksettings') ? 'current' : 'facebook_settings'));
187 array('href' => 'settings.php',
188 'title' => _m('Settings')), _m('Settings'));
189 $this->elementEnd('li');
191 $this->elementEnd('ul');
195 * Show header of the page.
199 function showHeader()
201 $this->elementStart('div', array('id' => 'header'));
203 $this->showNoticeForm();
204 $this->elementEnd('div');
208 * Show page, a template method.
212 function showPage($error = null, $success = null)
215 $this->showHead($error, $success);
220 function showInstructions()
223 $this->elementStart('div', array('class' => 'facebook_guide'));
225 $this->elementStart('dl', array('class' => 'system_notice'));
226 $this->element('dt', null, 'Page Notice');
228 $loginmsg_part1 = _m('To use the %s Facebook Application you need to login ' .
229 'with your username and password. Don\'t have a username yet? ');
230 $loginmsg_part2 = _m(' a new account.');
232 $this->elementStart('dd');
233 $this->elementStart('p');
234 $this->text(sprintf($loginmsg_part1, common_config('site', 'name')));
236 array('href' => common_local_url('register')), _m('Register'));
237 $this->text($loginmsg_part2);
238 $this->elementEnd('p');
239 $this->elementEnd('dd');
241 $this->elementEnd('dl');
242 $this->elementEnd('div');
245 function showLoginForm($msg = null)
248 $this->elementStart('div', array('id' => 'content'));
249 $this->element('h1', null, _m('Login'));
252 $this->element('fb:error', array('message' => $msg));
255 $this->showInstructions();
257 $this->elementStart('div', array('id' => 'content_inner'));
259 $this->elementStart('form', array('method' => 'post',
260 'class' => 'form_settings',
262 'action' => 'index.php'));
264 $this->elementStart('fieldset');
266 $this->elementStart('ul', array('class' => 'form_datas'));
267 $this->elementStart('li');
268 $this->input('nickname', _m('Nickname'));
269 $this->elementEnd('li');
270 $this->elementStart('li');
271 $this->password('password', _m('Password'));
272 $this->elementEnd('li');
273 $this->elementEnd('ul');
275 $this->submit('submit', _m('Login'));
276 $this->elementEnd('fieldset');
277 $this->elementEnd('form');
279 $this->elementStart('p');
280 $this->element('a', array('href' => common_local_url('recoverpassword')),
281 _m('Lost or forgotten password?'));
282 $this->elementEnd('p');
284 $this->elementEnd('div');
285 $this->elementEnd('div');
289 function updateProfileBox($notice)
292 // Need to include inline CSS for styling the Profile box
294 $app_props = $this->facebook->api_client->Admin_getAppProperties(array('icon_url'));
295 $icon_url = $app_props['icon_url'];
297 $style = '<style> .entry-title *, .entry-content * { font-size:14px; font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif; } .entry-title a, .entry-content a { color:#002E6E; } .entry-title .vcard .photo { float:left; display:inline; margin-right:11px; margin-bottom:11px } .entry-title { margin-bottom:11px; } .entry-title p.entry-content { display:inline; margin-left:5px; } div.entry-content { clear:both; } div.entry-content dl, div.entry-content dt, div.entry-content dd { display:inline; text-transform:lowercase; } div.entry-content dd, div.entry-content .device dt { margin-left:0; margin-right:5px; } div.entry-content dl.timestamp dt, div.entry-content dl.response dt { display:none; } div.entry-content dd a { display:inline-block; } #facebook_statusnet_app { text-indent:-9999px; height:16px; width:16px; display:block; background:url('.$icon_url.') no-repeat 0 0; float:right; } </style>';
299 $this->xw->openMemory();
301 $item = new FacebookProfileBoxNotice($notice, $this);
304 $fbml = "<fb:wide>$style " . $this->xw->outputMemory(false) . "</fb:wide>";
305 $fbml .= "<fb:narrow>$style " . $this->xw->outputMemory(false) . "</fb:narrow>";
307 $fbml_main = "<fb:narrow>$style " . $this->xw->outputMemory(false) . "</fb:narrow>";
309 $this->facebook->api_client->profile_setFBML(null, $this->fbuid, $fbml, null, null, $fbml_main);
311 $this->xw->openURI('php://output');
315 * Generate pagination links
317 * @param boolean $have_before is there something before?
318 * @param boolean $have_after is there something after?
319 * @param integer $page current page
320 * @param string $action current action
321 * @param array $args rest of query arguments
325 function pagination($have_before, $have_after, $page, $action, $args=null)
327 // Does a little before-after block for next/prev page
328 if ($have_before || $have_after) {
329 $this->elementStart('dl', 'pagination');
330 $this->element('dt', null, _m('Pagination'));
331 $this->elementStart('dd', null);
332 $this->elementStart('ul', array('class' => 'nav'));
335 $pargs = array('page' => $page-1);
336 $newargs = $args ? array_merge($args, $pargs) : $pargs;
337 $this->elementStart('li', array('class' => 'nav_prev'));
338 $this->element('a', array('href' => "$this->app_uri/$action?page=$newargs[page]", 'rel' => 'prev'),
340 $this->elementEnd('li');
343 $pargs = array('page' => $page+1);
344 $newargs = $args ? array_merge($args, $pargs) : $pargs;
345 $this->elementStart('li', array('class' => 'nav_next'));
346 $this->element('a', array('href' => "$this->app_uri/$action?page=$newargs[page]", 'rel' => 'next'),
348 $this->elementEnd('li');
350 if ($have_before || $have_after) {
351 $this->elementEnd('ul');
352 $this->elementEnd('dd');
353 $this->elementEnd('dl');
357 function saveNewNotice()
360 $user = $this->flink->getUser();
362 $content = $this->trimmed('status_textarea');
365 $this->showPage(_m('No notice content!'));
368 $content_shortened = common_shorten_links($content);
370 if (Notice::contentTooLong($content_shortened)) {
371 $this->showPage(sprintf(_m('That\'s too long. Max notice size is %d chars.'),
372 Notice::maxContent()));
377 $inter = new CommandInterpreter();
379 $cmd = $inter->handle_command($user, $content_shortened);
385 $cmd->execute(new WebChannel());
389 $replyto = $this->trimmed('inreplyto');
392 $notice = Notice::saveNew($user->id, $content, 'web',
393 array('reply_to' => ($replyto == 'false') ? null : $replyto));
395 } catch (Exception $e) {
396 $this->showPage($e->getMessage());
404 class FacebookNoticeList extends NoticeList
410 * @param Notice $notice stream of notices from DB_DataObject
413 function __construct($notice, $out=null)
415 parent::__construct($notice, $out);
419 * show the list of notices
421 * "Uses up" the stream by looping through it. So, probably can't
422 * be called twice on the same list.
424 * @return int count of notices listed.
429 $this->out->elementStart('div', array('id' =>'notices_primary'));
430 $this->out->element('h2', null, _m('Notices'));
431 $this->out->elementStart('ul', array('class' => 'notices'));
435 while ($this->notice->fetch() && $cnt <= NOTICES_PER_PAGE) {
438 if ($cnt > NOTICES_PER_PAGE) {
442 $item = $this->newListItem($this->notice);
446 $this->out->elementEnd('ul');
447 $this->out->elementEnd('div');
453 * returns a new list item for the current notice
455 * Overridden to return a Facebook specific list item.
457 * @param Notice $notice the current notice
459 * @return FacebookNoticeListItem a list item for displaying the notice
460 * formatted for display in the Facebook App.
463 function newListItem($notice)
465 return new FacebookNoticeListItem($notice, $this);
470 class FacebookNoticeListItem extends NoticeListItem
476 * Also initializes the profile attribute.
478 * @param Notice $notice The notice we'll display
481 function __construct($notice, $out=null)
483 parent::__construct($notice, $out);
487 * recipe function for displaying a single notice in the Facebook App.
489 * Overridden to strip out some of the controls that we don't
490 * want to be available.
499 $this->showNoticeInfo();
501 // XXX: Need to update to show attachements and controls
508 class FacebookProfileBoxNotice extends FacebookNoticeListItem
514 * Also initializes the profile attribute.
516 * @param Notice $notice The notice we'll display
519 function __construct($notice, $out=null)
521 parent::__construct($notice, $out);
525 * Recipe function for displaying a single notice in the
526 * Facebook App profile notice box
534 $this->showNoticeInfo();
535 $this->showAppLink();
538 function showAppLink()
541 $this->facebook = getFacebook();
543 $app_props = $this->facebook->api_client->Admin_getAppProperties(
544 array('canvas_name', 'application_name'));
546 $this->app_uri = 'http://apps.facebook.com/' . $app_props['canvas_name'];
547 $this->app_name = $app_props['application_name'];
549 $this->out->elementStart('a', array('id' => 'facebook_statusnet_app',
550 'href' => $this->app_uri));
551 $this->out->text($this->app_name);
552 $this->out->elementEnd('a');