]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/action.php
Merge branch 'uiredesign' of ../evan into uiredesign
[quix0rs-gnu-social.git] / lib / action.php
1 <?php
2 /**
3  * Laconica, the distributed open-source microblogging tool
4  *
5  * Base class for all actions (~views)
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  Action
23  * @package   Laconica
24  * @author    Evan Prodromou <evan@controlyourself.ca>
25  * @author    Sarven Capadisli <csarven@controlyourself.ca>
26  * @copyright 2008 Control Yourself, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://laconi.ca/
29  */
30
31 if (!defined('LACONICA')) {
32     exit(1);
33 }
34
35 require_once INSTALLDIR.'/lib/noticeform.php';
36 require_once INSTALLDIR.'/lib/htmloutputter.php';
37
38 /**
39  * Base class for all actions
40  *
41  * This is the base class for all actions in the package. An action is
42  * more or less a "view" in an MVC framework.
43  *
44  * Actions are responsible for extracting and validating parameters; using
45  * model classes to read and write to the database; and doing ouput.
46  *
47  * @category Output
48  * @package  Laconica
49  * @author   Evan Prodromou <evan@controlyourself.ca>
50  * @author   Sarven Capadisli <csarven@controlyourself.ca>
51  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
52  * @link     http://laconi.ca/
53  *
54  * @see      HTMLOutputter
55  */
56
57 class Action extends HTMLOutputter // lawsuit
58 {
59     var $args;
60
61     /**
62      * Constructor
63      *
64      * Just wraps the HTMLOutputter constructor.
65      *
66      * @param string  $output URI to output to, default = stdout
67      * @param boolean $indent Whether to indent output, default true
68      *
69      * @see XMLOutputter::__construct
70      * @see HTMLOutputter::__construct
71      */
72
73     function __construct($output='php://output', $indent=true)
74     {
75         parent::__construct($output, $indent);
76     }
77
78     // For initializing members of the class
79
80     function prepare($argarray)
81     {
82         $this->args =& common_copy_args($argarray);
83         return true;
84     }
85
86     function showPage()
87     {
88         $this->startHTML();
89         $this->showHead();
90         $this->showBody();
91         $this->endHTML();
92     }
93
94     function showHead()
95     {
96         // XXX: attributes (profile?)
97         $this->elementStart('head');
98         $this->showTitle();
99         $this->showStylesheets();
100         $this->showScripts();
101         $this->showOpenSearch();
102         $this->showFeeds();
103         $this->showDescription();
104         $this->extraHead();
105         $this->elementEnd('head');
106     }
107
108     function showTitle()
109     {
110         $this->element('title', null,
111                        sprintf(_("%s - %s"),
112                                $this->title(),
113                                common_config('site', 'name')));
114     }
115
116     // SHOULD overload
117
118     function title()
119     {
120         return _("Untitled page");
121     }
122
123     function showStylesheets()
124     {
125         $this->element('link', array('rel' => 'stylesheet',
126                                      'type' => 'text/css',
127                                      'href' => theme_path('css/display.css', 'base') . '?version=' . LACONICA_VERSION,
128                                      'media' => 'screen, projection, tv'));
129         $this->element('link', array('rel' => 'stylesheet',
130                                      'type' => 'text/css',
131                                      'href' => theme_path('css/thickbox.css', 'base') . '?version=' . LACONICA_VERSION,
132                                      'media' => 'screen, projection, tv'));
133         $this->element('link', array('rel' => 'stylesheet',
134                                      'type' => 'text/css',
135                                      'href' => theme_path('css/display.css', null) . '?version=' . LACONICA_VERSION,
136                                      'media' => 'screen, projection, tv'));
137         foreach (array(6,7) as $ver) {
138             if (file_exists(theme_file('ie'.$ver.'.css'))) {
139                 // Yes, IE people should be put in jail.
140                 $this->comment('[if lte IE '.$ver.']><link rel="stylesheet" type="text/css" '.
141                                'href="'.theme_path('ie'.$ver.'.css').'?version='.LACONICA_VERSION.'" /><![endif]');
142             }
143         }
144     }
145
146     function showScripts()
147     {
148         $this->element('script', array('type' => 'text/javascript',
149                                        'src' => common_path('js/jquery.min.js')),
150                        ' ');
151         $this->element('script', array('type' => 'text/javascript',
152                                        'src' => common_path('js/jquery.form.js')),
153                        ' ');
154         $this->element('script', array('type' => 'text/javascript',
155                                        'src' => common_path('js/xbImportNode.js')),
156                        ' ');
157         $this->element('script', array('type' => 'text/javascript',
158                                        'src' => common_path('js/util.js?version='.LACONICA_VERSION)),
159                        ' ');
160     }
161
162     function showOpenSearch()
163     {
164         $this->element('link', array('rel' => 'search', 'type' => 'application/opensearchdescription+xml',
165                                      'href' =>  common_local_url('opensearch', array('type' => 'people')),
166                                      'title' => common_config('site', 'name').' People Search'));
167
168         $this->element('link', array('rel' => 'search', 'type' => 'application/opensearchdescription+xml',
169                                      'href' =>  common_local_url('opensearch', array('type' => 'notice')),
170                                      'title' => common_config('site', 'name').' Notice Search'));
171     }
172
173     // MAY overload
174
175     function showFeeds()
176     {
177         // does nothing by default
178     }
179
180     // SHOULD overload
181
182     function showDescription()
183     {
184         // does nothing by default
185     }
186
187     // MAY overload
188
189     function extraHead()
190     {
191         // does nothing by default
192     }
193
194     function showBody()
195     {
196         $this->elementStart('body');
197         $this->elementStart('div', 'wrap');
198         $this->showHeader();
199         $this->showCore();
200         $this->showFooter();
201         $this->elementEnd('div', 'wrap');
202         $this->elementEnd('body');
203     }
204
205     function showHeader()
206     {
207         $this->elementStart('div', array('id' => 'header'));
208         $this->showLogo();
209         $this->showPrimaryNav();
210         $this->showSiteNotice();
211         if (common_logged_in()) {
212             $this->showNoticeForm();
213         } else {
214             $this->showAnonymousMessage();
215         }
216         $this->elementEnd('div');
217     }
218
219     function showLogo()
220     {
221         $this->elementStart('address', array('id' => 'site_contact',
222                                               'class' => 'vcard'));
223         $this->elementStart('a', array('class' => 'url home bookmark',
224                                         'href' => common_local_url('public')));
225         if ((isset($config['site']['logo']) && is_string($config['site']['logo']) && (strlen($config['site']['logo']) > 0))
226             || file_exists(theme_file('logo.png')))
227         {
228             $this->element('img', array('class' => 'logo photo',
229                                         'src' => isset($config['site']['logo']) ?
230                                         ($config['site']['logo']) : theme_path('logo.png'),
231                                         'alt' => $config['site']['name']));
232         }
233         $this->element('span', array('class' => 'fn org'), $config['site']['name']);
234         $this->elementEnd('a');
235         $this->elementEnd('address');
236     }
237
238     function showPrimaryNav()
239     {
240         $this->elementStart('dl', array('id' => 'site_nav_global_primary'));
241         $this->element('dt', null, _('Primary site navigation'));
242         $this->elementStart('dd');
243         $user = common_current_user();
244         $this->elementStart('ul', array('class' => 'nav'));
245         if ($user) {
246             $this->menuItem(common_local_url('all', array('nickname' => $user->nickname)),
247                              _('Home'));
248         }
249         $this->menuItem(common_local_url('peoplesearch'), _('Search'));
250         if ($user) {
251             $this->menuItem(common_local_url('profilesettings'),
252                              _('Settings'));
253             $this->menuItem(common_local_url('invite'),
254                              _('Invite'));
255             $this->menuItem(common_local_url('logout'),
256                              _('Logout'));
257         } else {
258             $this->menuItem(common_local_url('login'), _('Login'));
259             if (!common_config('site', 'closed')) {
260                 $this->menuItem(common_local_url('register'), _('Register'));
261             }
262             $this->menuItem(common_local_url('openidlogin'), _('OpenID'));
263         }
264         $this->menuItem(common_local_url('doc', array('title' => 'help')),
265                          _('Help'));
266         $this->elementEnd('ul');
267         $this->elementEnd('dd');        
268         $this->elementEnd('dl');
269     }
270
271     // Revist. Should probably do an hAtom pattern here
272     function showSiteNotice()
273     {
274         $text = common_config('site', 'notice');
275         if ($text) {
276             $this->elementStart('dl', array('id' => 'site_notice',
277                                             'class' => 'system_notice'));
278             $this->element('dt', null, _('Site notice'));
279             $this->element('dd', null, $text);
280             $this->elementEnd('dl');
281         }
282     }
283     
284     // MAY overload if no notice form needed... or direct message box????
285
286     function showNoticeForm()
287     {
288         $notice_form = new NoticeForm($this);
289         $notice_form->show();
290     }
291
292     function showAnonymousMessage()
293     {
294         // needs to be defined by the class
295     }
296     
297     function showCore()
298     {
299         $this->elementStart('div', array('id' => 'core'));
300         $this->showLocalNav();
301         $this->showContentBlock();
302         $this->showAside();
303         $this->elementEnd('div');
304     }
305
306     // SHOULD overload
307
308     function showLocalNav()
309     {
310         // does nothing by default
311     }
312
313     function showContentBlock()
314     {
315         $this->elementStart('div', array('id' => 'content'));
316         $this->showPageTitle();
317         $this->showPageNoticeBlock();
318         $this->elementStart('div', array('id' => 'content_inner'));
319         // show the actual content (forms, lists, whatever)
320         $this->showContent();
321         $this->elementEnd('div');
322         $this->elementEnd('div');
323     }
324
325     function showPageTitle() {
326         $this->element('h1', NULL, $this->title());
327     }
328
329     function showPageNoticeBlock()
330     {
331         $this->elementStart('dl', array('id' => 'page_notice',
332                                         'class' => 'system_notice'));
333         $this->element('dt', null, _('Page notice'));
334         $this->elementStart('dd', null);
335         $this->showPageNotice();
336         $this->elementEnd('dd');
337         $this->elementEnd('dl');
338         }
339
340     // SHOULD overload (unless there's not a notice)
341
342     function showPageNotice()
343     {
344     }
345     
346     // MUST overload
347
348     function showContent()
349     {
350     }
351
352     function showAside()
353     {
354         $this->elementStart('div', array('id' => 'aside_primary',
355                                          'class' => 'aside'));
356         $this->showExportData();
357         $this->showSections();
358         $this->elementEnd('div');
359     }
360
361     // MAY overload if there are feeds
362
363     function showExportData()
364     {
365         // is there structure to this?
366         // list of (visible!) feed links
367         // can we reuse list of feeds from showFeeds() ?
368     }
369
370     // SHOULD overload
371
372     function showSections() {
373         // for each section, show it
374     }
375
376     function showFooter()
377     {
378         $this->elementStart('div', array('id' => 'footer'));
379         $this->showSecondaryNav();
380         $this->showLicenses();
381         $this->elementEnd('div');
382     }
383
384     function showSecondaryNav()
385     {
386         $this->elementStart('dl', array('id' => 'site_nav_global_secondary'));
387         $this->element('dt', null, _('Secondary site navigation'));
388         $this->elementStart('dd', null);
389         $this->elementStart('ul', array('class' => 'nav'));
390         $this->menuItem(common_local_url('doc', array('title' => 'help')),
391                          _('Help'));
392         $this->menuItem(common_local_url('doc', array('title' => 'about')),
393                          _('About'));
394         $this->menuItem(common_local_url('doc', array('title' => 'faq')),
395                          _('FAQ'));
396         $this->menuItem(common_local_url('doc', array('title' => 'privacy')),
397                          _('Privacy'));
398         $this->menuItem(common_local_url('doc', array('title' => 'source')),
399                          _('Source'));
400         $this->menuItem(common_local_url('doc', array('title' => 'contact')),
401                          _('Contact'));
402         $this->elementEnd('ul');
403         $this->elementEnd('dd');
404         $this->elementEnd('dl');
405     }
406
407     function showLicenses()
408     {
409         $this->elementStart('dl', array('id' => 'licenses'));
410         $this->showLaconicaLicense();
411         $this->showContentLicense();
412         $this->elementEnd('dl');
413     }
414
415     function showLaconicaLicense()
416     {
417         $this->element('dt', array('id' => 'site_laconica_license'), _('Laconica software license'));
418         $this->elementStart('dd', null);
419         if (common_config('site', 'broughtby')) {
420             $instr = _('**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). ');
421         } else {
422             $instr = _('**%%site.name%%** is a microblogging service. ');
423         }
424         $instr .= sprintf(_('It runs the [Laconica](http://laconi.ca/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html).'), LACONICA_VERSION);
425         $output = common_markup_to_html($instr);
426         $this->raw($output);
427         $this->elementEnd('dd');
428         // do it
429     }
430
431     function showContentLicense()
432     {
433         $this->element('dt', array('id' => 'site_content_license'), _('Laconica software license'));
434         $this->elementStart('dd', array('id' => 'site_content_license_cc'));
435         $this->elementStart('p');
436         $this->text(_('Unless otherwise specified, contents of this site are copyright by the contributors and available under the '));
437         $this->element('a', array('class' => 'license',
438                                   'rel' => 'external license',
439                                   'href' => common_config('license', 'url')),
440                        common_config('license', 'title'));
441         $this->text(_('. Contributors should be attributed by full name or nickname.'));
442         $this->elementEnd('p');
443         $this->element('img', array('id' => 'license_cc',
444                                     'src' => common_config('license', 'image'),
445                                     'alt' => common_config('license', 'title')));
446         $this->elementEnd('dd');
447     }
448
449     // For comparison with If-Last-Modified
450     // If not applicable, return null
451
452     function last_modified()
453     {
454         return null;
455     }
456
457     function etag()
458     {
459         return null;
460     }
461
462     function isReadOnly()
463     {
464         return false;
465     }
466
467     function arg($key, $def=null)
468     {
469         if (array_key_exists($key, $this->args)) {
470             return $this->args[$key];
471         } else {
472             return $def;
473         }
474     }
475
476     function trimmed($key, $def=null)
477     {
478         $arg = $this->arg($key, $def);
479         return (is_string($arg)) ? trim($arg) : $arg;
480     }
481
482     // Note: argarray ignored, since it's now passed in in prepare()
483
484     function handle($argarray=null)
485     {
486
487         $lm = $this->last_modified();
488         $etag = $this->etag();
489
490         if ($etag) {
491             header('ETag: ' . $etag);
492         }
493
494         if ($lm) {
495             header('Last-Modified: ' . date(DATE_RFC1123, $lm));
496             $if_modified_since = $_SERVER['HTTP_IF_MODIFIED_SINCE'];
497             if ($if_modified_since) {
498                 $ims = strtotime($if_modified_since);
499                 if ($lm <= $ims) {
500                     if (!$etag ||
501                         $this->_has_etag($etag, $_SERVER['HTTP_IF_NONE_MATCH'])) {
502                         header('HTTP/1.1 304 Not Modified');
503                         // Better way to do this?
504                         exit(0);
505                     }
506                 }
507             }
508         }
509     }
510
511     function _has_etag($etag, $if_none_match)
512     {
513         return ($if_none_match) && in_array($etag, explode(',', $if_none_match));
514     }
515
516     function boolean($key, $def=false)
517     {
518         $arg = strtolower($this->trimmed($key));
519
520         if (is_null($arg)) {
521             return $def;
522         } else if (in_array($arg, array('true', 'yes', '1'))) {
523             return true;
524         } else if (in_array($arg, array('false', 'no', '0'))) {
525             return false;
526         } else {
527             return $def;
528         }
529     }
530
531     function serverError($msg, $code=500)
532     {
533         $action = $this->trimmed('action');
534         common_debug("Server error '$code' on '$action': $msg", __FILE__);
535         common_server_error($msg, $code);
536     }
537
538     function clientError($msg, $code=400)
539     {
540         $action = $this->trimmed('action');
541         common_debug("User error '$code' on '$action': $msg", __FILE__);
542         common_user_error($msg, $code);
543     }
544
545     function self_url()
546     {
547         $action = $this->trimmed('action');
548         $args = $this->args;
549         unset($args['action']);
550         foreach (array_keys($_COOKIE) as $cookie) {
551             unset($args[$cookie]);
552         }
553         return common_local_url($action, $args);
554     }
555
556     function nav_menu($menu)
557     {
558         $action = $this->trimmed('action');
559         $this->elementStart('ul', array('id' => 'nav_views'));
560         foreach ($menu as $menuaction => $menudesc) {
561             $this->menuItem(common_local_url($menuaction,
562                                               isset($menudesc[2]) ? $menudesc[2] : null),
563                              $menudesc[0],
564                              $menudesc[1],
565                              $action == $menuaction);
566         }
567         $this->elementEnd('ul');
568     }
569
570     function common_show_header($pagetitle, $callable=null, $data=null, $headercall=null)
571     {
572         global $config, $xw;
573         global $action; /* XXX: kind of cheating here. */
574
575         common_start_html();
576
577         $this->elementStart('head');
578
579         if ($callable) {
580             if ($data) {
581                 call_user_func($callable, $data);
582             } else {
583                 call_user_func($callable);
584             }
585         }
586         $this->elementEnd('head');
587         $this->elementStart('body', $action);
588         $this->elementStart('div', array('id' => 'wrap'));
589         $this->elementStart('div', array('id' => 'content'));
590     }
591
592     // Added @id to li for some control.
593     // XXX: We might want to move this to htmloutputter.php
594
595     function menuItem($url, $text, $title=null, $is_selected=false, $id=null)
596     {
597         $lattrs = array();
598         if ($is_selected) {
599             $lattrs['class'] = 'current';
600         }
601
602         $this->elementStart('li', (is_null($id)) ? null : array('id' => $id),  $lattrs);
603         $attrs['href'] = $url;
604         if ($title) {
605             $attrs['title'] = $title;
606         }
607         $this->element('a', $attrs, $text);
608         $this->elementEnd('li');
609     }
610
611     // Does a little before-after block for next/prev page
612
613     function pagination($have_before, $have_after, $page, $action, $args=null)
614     {
615         if ($have_before || $have_after) {
616             $this->elementStart('div', array('class' => 'pagination'));
617             $this->elementStart('dl', null);
618             $this->element('dt', null, _('Pagination'));
619             $this->elementStart('dd', null);
620             $this->elementStart('ul', array('class' => 'nav'));
621         }
622
623         if ($have_before) {
624             $pargs = array('page' => $page-1);
625             $newargs = ($args) ? array_merge($args,$pargs) : $pargs;
626
627             $this->elementStart('li', array('class' => 'nav_prev'));
628             $this->element('a', array('href' => common_local_url($action, $newargs), 'rel' => 'prev'),
629                            _('After'));
630             $this->elementEnd('li');
631         }
632
633         if ($have_after) {
634             $pargs = array('page' => $page+1);
635             $newargs = ($args) ? array_merge($args,$pargs) : $pargs;
636             $this->elementStart('li', array('class' => 'nav_next'));
637             $this->element('a', array('href' => common_local_url($action, $newargs), 'rel' => 'next'),
638                            _('Before'));
639             $this->elementEnd('li');
640         }
641
642         if ($have_before || $have_after) {
643             $this->elementEnd('ul');
644             $this->elementEnd('dd');
645             $this->elementEnd('dl');
646             $this->elementEnd('div');
647         }
648     }
649 }