]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/facebookaction.php
Merge branch 'master' of ../trunk
[quix0rs-gnu-social.git] / lib / facebookaction.php
1 <?php
2 /**
3  * Laconica, the distributed open-source microblogging tool
4  *
5  * Low-level generator for HTML
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  Faceboook
23  * @package   Laconica
24  * @author    Zach Copley <zach@controlyourself.ca>
25  * @copyright 2008 Control Yourself, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://laconi.ca/
28  */
29
30 if (!defined('LACONICA'))
31 {
32     exit(1);
33 }
34
35 require_once INSTALLDIR.'/lib/facebookutil.php';
36 require_once INSTALLDIR.'/lib/noticeform.php';
37
38
39 class FacebookAction extends Action
40 {
41     
42     var $facebook = null;
43     var $fbuid    = null;
44     var $flink    = null;
45     var $action   = null;
46     var $app_uri  = null;
47     var $app_name = null;
48   
49     /**
50      * Constructor
51      *
52      * Just wraps the HTMLOutputter constructor.
53      *
54      * @param string  $output URI to output to, default = stdout
55      * @param boolean $indent Whether to indent output, default true
56      *
57      * @see XMLOutputter::__construct
58      * @see HTMLOutputter::__construct
59      */
60     function __construct($output='php://output', $indent=true, $facebook=null, $flink=null)
61     {
62         parent::__construct($output, $indent);
63         
64         $this->facebook = $facebook;
65         $this->flink = $flink;
66         
67         if ($this->flink) {
68             $this->fbuid = $flink->foreign_id; 
69             $this->user = $flink->getUser();
70         }
71         
72         $this->args = array();
73     }
74   
75     function prepare($argarray)
76     {        
77         parent::prepare($argarray);
78           
79         $this->facebook = getFacebook();
80         $this->fbuid = $this->facebook->require_login();
81         
82         $this->action = $this->trimmed('action');
83         
84         $app_props = $this->facebook->api_client->Admin_getAppProperties(
85                 array('canvas_name', 'application_name'));
86         
87         $this->app_uri = 'http://apps.facebook.com/' . $app_props['canvas_name'];
88         $this->app_name = $app_props['application_name'];
89
90         $this->flink = Foreign_link::getByForeignID($this->fbuid, FACEBOOK_SERVICE);
91         
92         return true;
93         
94     }
95   
96     function showStylesheets()
97     {
98         
99         $this->element('link', array('rel' => 'stylesheet',
100                                      'type' => 'text/css',
101                                      'href' => getFacebookBaseCSS()));
102
103         $this->element('link', array('rel' => 'stylesheet',
104                                      'type' => 'text/css',
105                                      'href' => getFacebookThemeCSS()));
106     }
107   
108     function showScripts()
109     {
110         $this->element('script', array('type' => 'text/javascript',
111                                        'src' => getFacebookJS()),
112                        ' ');
113     }
114     
115     /**
116      * Start an Facebook ready HTML document
117      *
118      *  For Facebook we don't want to actually output any headers,
119      *  DTD info, etc.
120      *
121      * If $type isn't specified, will attempt to do content negotiation.
122      *
123      * @param string $type MIME type to use; default is to do negotation.
124      *
125      * @return void
126      */
127
128     function startHTML($type=null) 
129     {          
130         $this->elementStart('div', array('class' => 'facebook-page'));
131     }
132
133     /**
134     *  Ends a Facebook ready HTML document
135     *
136     *  @return void
137     */
138     function endHTML()
139     {
140         $this->elementEnd('div');
141         $this->endXML();
142     }
143
144     /**
145      * Show notice form.
146      *
147      * MAY overload if no notice form needed... or direct message box????
148      *
149      * @return nothing
150      */
151     function showNoticeForm()
152     {
153         // don't do it for most of the Facebook pages
154     }
155
156     function showBody()
157     {
158         $this->elementStart('div', 'wrap');
159         $this->showHeader();
160         $this->showCore();
161         $this->showFooter();
162         $this->elementEnd('div');
163     }
164       
165     function showAside()
166     {
167     }
168
169     function showHead($error, $success)
170     {
171         $this->showStylesheets();
172         $this->showScripts();
173         
174         if ($error) {
175             $this->element("h1", null, $error);
176         }
177         
178         if ($success) {
179             $this->element("h1", null, $success);
180         }
181
182         $this->elementStart('fb:if-section-not-added', array('section' => 'profile'));
183         $this->elementStart('span', array('id' => 'add_to_profile'));
184         $this->element('fb:add-section-button', array('section' => 'profile'));
185         $this->elementEnd('span');
186         $this->elementEnd('fb:if-section-not-added');
187         
188     }
189
190     
191     // Make this into a widget later
192     function showLocalNav()
193     {
194                 
195         $this->elementStart('ul', array('class' => 'nav'));
196
197         $this->elementStart('li', array('class' =>
198             ($this->action == 'facebookhome') ? 'current' : 'facebook_home'));
199         $this->element('a',
200             array('href' => 'index.php', 'title' => _('Home')), _('Home'));
201         $this->elementEnd('li');
202
203         $this->elementStart('li',
204             array('class' =>
205                 ($this->action == 'facebookinvite') ? 'current' : 'facebook_invite'));
206         $this->element('a',
207             array('href' => 'invite.php', 'title' => _('Invite')), _('Invite'));
208         $this->elementEnd('li');
209
210         $this->elementStart('li',
211             array('class' =>
212                 ($this->action == 'facebooksettings') ? 'current' : 'facebook_settings'));
213         $this->element('a',
214             array('href' => 'settings.php',
215                 'title' => _('Settings')), _('Settings'));
216         $this->elementEnd('li');
217
218         $this->elementEnd('ul');
219
220     }     
221
222     /**
223      * Show primary navigation.
224      *
225      * @return nothing
226      */
227     function showPrimaryNav()
228     {
229         // we don't want to show anything for this
230     }
231     
232     /**
233      * Show header of the page.
234      *
235      * Calls template methods
236      *
237      * @return nothing
238      */
239     function showHeader()
240     {
241         $this->elementStart('div', array('id' => 'header'));
242         $this->showLogo();
243         $this->showNoticeForm();
244         $this->showPrimaryNav();
245         $this->elementEnd('div');
246     }
247     
248     /**
249      * Show page, a template method.
250      *
251      * @return nothing
252      */
253     function showPage($error = null, $success = null)
254     {
255         $this->startHTML();
256         $this->showHead($error, $success);
257         $this->showBody();
258         $this->endHTML();
259     }
260     
261
262     function showInstructions()
263     {
264
265         $this->elementStart('dl', array('class' => 'system_notice'));
266         $this->element('dt', null, 'Page Notice');
267
268         $loginmsg_part1 = _('To use the %s Facebook Application you need to login ' .
269             'with your username and password. Don\'t have a username yet? ');
270
271         $loginmsg_part2 = _(' a new account.');
272
273         $this->elementStart('dd');
274         $this->elementStart('p');
275         $this->text(sprintf($loginmsg_part1, common_config('site', 'name')));
276         $this->element('a',
277             array('href' => common_local_url('register')), _('Register'));
278         $this->text($loginmsg_part2);
279         $this->elementEnd('dd');
280         $this->elementEnd('dl');
281     }
282
283
284     function showLoginForm($msg = null)
285     {
286
287         $this->elementStart('div', array('class' => 'content'));
288         $this->element('h1', null, _('Login'));
289
290         if ($msg) {
291              $this->element('fb:error', array('message' => $msg));
292         }
293
294         $this->showInstructions();
295
296         $this->elementStart('div', array('id' => 'content_inner'));
297
298         $this->elementStart('form', array('method' => 'post',
299                                                'class' => 'form_settings',
300                                                'id' => 'login',
301                                                'action' => 'index.php'));
302
303         $this->elementStart('fieldset');
304         $this->element('legend', null, _('Login to site'));
305
306         $this->elementStart('ul', array('class' => 'form_datas'));
307         $this->elementStart('li');
308         $this->input('nickname', _('Nickname'));
309         $this->elementEnd('li');
310         $this->elementStart('li');
311         $this->password('password', _('Password'));
312         $this->elementEnd('li');
313         $this->elementEnd('ul');
314
315         $this->submit('submit', _('Login'));
316         $this->elementEnd('form');
317
318         $this->elementStart('p');
319         $this->element('a', array('href' => common_local_url('recoverpassword')),
320                        _('Lost or forgotten password?'));
321         $this->elementEnd('p');
322
323         $this->elementEnd('div');
324
325     }
326     
327     
328     function updateProfileBox($notice)
329     {
330
331         // Need to include inline CSS for styling the Profile box
332
333         $style = '<style>
334          #notices {
335              clear: both;
336              margin: 0 auto;
337              padding: 0;
338              list-style-type: none;
339              width: 600px;
340              border-top: 1px solid #dec5b5;
341          }
342          #notices a:hover {
343              text-decoration: underline;
344          }
345          .notice_single {
346              clear: both;
347              display: block;
348              margin: 0;
349              padding: 5px 5px 5px 0;
350              min-height: 48px;
351              font-family: Georgia, "Times New Roman", Times, serif;
352              font-size: 13px;
353              line-height: 16px;
354              border-bottom: 1px solid #dec5b5;
355              background-color:#FCFFF5;
356              opacity:1;
357          }
358          .notice_single:hover {
359              background-color: #f7ebcc;
360          }
361          .notice_single p {
362              display: inline;
363              margin: 0;
364              padding: 0;
365          }
366          </style>';        
367
368         $this->xw->openMemory();
369
370         $item = new FacebookNoticeListItem($notice, $this);
371         $item->show();
372
373         $fbml = "<fb:wide>$style " . $this->xw->outputMemory(false) . "</fb:wide>";
374         $fbml .= "<fb:narrow>$style " . $this->xw->outputMemory(false) . "</fb:narrow>";
375
376         $fbml_main = "<fb:narrow>$style " . $this->xw->outputMemory(false) . "</fb:narrow>";
377
378         $this->facebook->api_client->profile_setFBML(null, $this->fbuid, $fbml, null, null, $fbml_main);  
379
380         $this->xw->openURI('php://output');
381     }
382     
383     
384     /**
385      * Generate pagination links
386      *
387      * @param boolean $have_before is there something before?
388      * @param boolean $have_after  is there something after?
389      * @param integer $page        current page
390      * @param string  $action      current action
391      * @param array   $args        rest of query arguments
392      *
393      * @return nothing
394      */
395     function pagination($have_before, $have_after, $page, $action, $args=null)
396     {
397         // Does a little before-after block for next/prev page
398         if ($have_before || $have_after) {
399             $this->elementStart('div', array('class' => 'pagination'));
400             $this->elementStart('dl', null);
401             $this->element('dt', null, _('Pagination'));
402             $this->elementStart('dd', null);
403             $this->elementStart('ul', array('class' => 'nav'));
404         }
405         if ($have_before) {
406             $pargs   = array('page' => $page-1);
407             $newargs = $args ? array_merge($args, $pargs) : $pargs;
408             $this->elementStart('li', array('class' => 'nav_prev'));
409             $this->element('a', array('href' => "$this->app_uri/$action?page=$newargs[page]", 'rel' => 'prev'),
410                            _('After'));
411             $this->elementEnd('li');
412         }
413         if ($have_after) {
414             $pargs   = array('page' => $page+1);
415             $newargs = $args ? array_merge($args, $pargs) : $pargs;
416             $this->elementStart('li', array('class' => 'nav_next'));
417             $this->element('a', array('href' => "$this->app_uri/$action?page=$newargs[page]", 'rel' => 'next'),
418                            _('Before'));
419             $this->elementEnd('li');
420         }
421         if ($have_before || $have_after) {
422             $this->elementEnd('ul');
423             $this->elementEnd('dd');
424             $this->elementEnd('dl');
425             $this->elementEnd('div');
426         }
427     }
428     
429
430 }
431
432 class FacebookNoticeForm extends NoticeForm 
433 {
434     
435     var $post_action = null;
436     
437     /**
438      * Constructor
439      *
440      * @param HTMLOutputter $out     output channel
441      * @param string        $action  action to return to, if any
442      * @param string        $content content to pre-fill
443      */
444
445     function __construct($out=null, $action=null, $content=null, 
446         $post_action=null, $user=null)
447     {
448         parent::__construct($out, $action, $content, $user);
449         $this->post_action = $post_action;
450     }
451     
452     /**
453      * Action of the form
454      *
455      * @return string URL of the action
456      */
457
458     function action()
459     {
460         return $this->post_action;
461     }
462
463 }
464
465 class FacebookNoticeList extends NoticeList
466 {
467     /**
468      * show the list of notices
469      *
470      * "Uses up" the stream by looping through it. So, probably can't
471      * be called twice on the same list.
472      *
473      * @return int count of notices listed.
474      */
475
476     function show()
477     {
478         $this->out->elementStart('div', array('id' =>'notices_primary'));
479         $this->out->element('h2', null, _('Notices'));
480         $this->out->elementStart('ul', array('class' => 'notices'));
481
482         $cnt = 0;
483
484         while ($this->notice->fetch() && $cnt <= NOTICES_PER_PAGE) {
485             $cnt++;
486
487             if ($cnt > NOTICES_PER_PAGE) {
488                 break;
489             }
490
491             $item = $this->newListItem($this->notice);
492             $item->show();
493         }
494
495         $this->out->elementEnd('ul');
496         $this->out->elementEnd('div');
497
498         return $cnt;
499     }
500
501     /**
502      * returns a new list item for the current notice
503      *
504      * Overridden to return a Facebook specific list item.
505      *
506      * @param Notice $notice the current notice
507      *
508      * @return FacebookNoticeListItem a list item for displaying the notice
509      * formatted for display in the Facebook App.
510      */
511
512     function newListItem($notice)
513     {
514         return new FacebookNoticeListItem($notice, $this);
515     }
516
517 }
518
519 class FacebookNoticeListItem extends NoticeListItem
520 {    
521     /**
522      * recipe function for displaying a single notice in the Facebook App.
523      *
524      * Overridden to strip out some of the controls that we don't
525      * want to be available.
526      *
527      * @return void
528      */
529
530     function show()
531     {
532         $this->showStart();
533
534         $this->out->elementStart('div', 'entry-title');
535         $this->showAuthor();
536         $this->showContent();
537         $this->out->elementEnd('div');
538
539         $this->out->elementStart('div', 'entry-content');
540         $this->showNoticeLink();
541         $this->showNoticeSource();
542         $this->showReplyTo();
543         $this->out->elementEnd('div');
544
545         $this->showEnd();
546     }
547
548     function showNoticeLink()
549     {
550         $noticeurl = common_local_url('shownotice',
551                                       array('notice' => $this->notice->id));
552         // XXX: we need to figure this out better. Is this right?
553         if (strcmp($this->notice->uri, $noticeurl) != 0 &&
554             preg_match('/^http/', $this->notice->uri)) {
555             $noticeurl = $this->notice->uri;
556         }
557
558         $this->out->elementStart('dl', 'timestamp');
559         $this->out->element('dt', null, _('Published'));
560         $this->out->elementStart('dd', null);
561         $this->out->elementStart('a', array('rel' => 'bookmark',
562                                         'href' => $noticeurl));
563         $dt = common_date_iso8601($this->notice->created);
564         $this->out->element('abbr', array('class' => 'published',
565                                      'title' => $dt),
566         common_date_string($this->notice->created));
567         $this->out->elementEnd('a');
568         $this->out->elementEnd('dd');
569         $this->out->elementEnd('dl');
570     }
571
572 }