]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/action.php
3e43ffe3e3ee1427d53c571ee4fb52b639b31aa6
[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 class Action extends HTMLOutputter // lawsuit
57 {
58     var $args;
59
60     /**
61      * Constructor
62      *
63      * Just wraps the HTMLOutputter constructor.
64      *
65      * @param string  $output URI to output to, default = stdout
66      * @param boolean $indent Whether to indent output, default true
67      *
68      * @see XMLOutputter::__construct
69      * @see HTMLOutputter::__construct
70      */
71     function __construct($output='php://output', $indent=true)
72     {
73         parent::__construct($output, $indent);
74     }
75
76     /**
77      * For initializing members of the class.
78      *
79      * @param array $argarray misc. arguments
80      *
81      * @return boolean true
82      */
83     function prepare($argarray)
84     {
85         $this->args =& common_copy_args($argarray);
86         return true;
87     }
88
89     /**
90      * Show page, a template method.
91      *
92      * @return nothing
93      */
94     function showPage()
95     {
96         if (Event::handle('StartShowHTML', array($this))) {
97             $this->startHTML();
98             Event::handle('EndShowHTML', array($this));
99         }
100         if (Event::handle('StartShowHead', array($this))) {
101         $this->showHead();
102             Event::handle('EndShowHead', array($this));
103         }
104         if (Event::handle('StartShowBody', array($this))) {
105         $this->showBody();
106             Event::handle('EndShowBody', array($this));
107         }
108         if (Event::handle('StartEndHTML', array($this))) {
109         $this->endHTML();
110             Event::handle('EndEndHTML', array($this));
111         }
112     }
113
114     /**
115      * Show head, a template method.
116      *
117      * @return nothing
118      */
119     function showHead()
120     {
121         // XXX: attributes (profile?)
122         $this->elementStart('head');
123         $this->showTitle();
124         $this->showShortcutIcon();
125         $this->showStylesheets();
126         $this->showScripts();
127         $this->showRelationshipLinks();
128         $this->showOpenSearch();
129         $this->showFeeds();
130         $this->showDescription();
131         $this->extraHead();
132         $this->elementEnd('head');
133     }
134
135     /**
136      * Show title, a template method.
137      *
138      * @return nothing
139      */
140     function showTitle()
141     {
142         $this->element('title', null,
143                        sprintf(_("%s - %s"),
144                                $this->title(),
145                                common_config('site', 'name')));
146     }
147
148     /**
149      * Returns the page title
150      *
151      * SHOULD overload
152      *
153      * @return string page title
154      */
155
156     function title()
157     {
158         return _("Untitled page");
159     }
160
161     /**
162      * Show themed shortcut icon
163      *
164      * @return nothing
165      */
166     function showShortcutIcon()
167     {
168         if (is_readable(INSTALLDIR . '/theme/' . common_config('site', 'theme') . '/favicon.ico')) {
169             $this->element('link', array('rel' => 'shortcut icon',
170                                          'href' => theme_path('favicon.ico')));
171         } else {
172             $this->element('link', array('rel' => 'shortcut icon',
173                                          'href' => common_path('favicon.ico')));
174         }
175
176         if (common_config('site', 'mobile')) {
177             if (is_readable(INSTALLDIR . '/theme/' . common_config('site', 'theme') . '/apple-touch-icon.png')) {
178                 $this->element('link', array('rel' => 'apple-touch-icon',
179                                              'href' => theme_path('apple-touch-icon.png')));
180             } else {
181                 $this->element('link', array('rel' => 'apple-touch-icon',
182                                              'href' => common_path('apple-touch-icon.png')));
183             }
184         }
185     }
186
187     /**
188      * Show stylesheets
189      *
190      * @return nothing
191      */
192     function showStylesheets()
193     {
194         if (Event::handle('StartShowStyles', array($this))) {
195             if (Event::handle('StartShowLaconicaStyles', array($this))) {
196                 $this->element('link', array('rel' => 'stylesheet',
197                                              'type' => 'text/css',
198                                              'href' => theme_path('css/display.css', null) . '?version=' . LACONICA_VERSION,
199                                              'media' => 'screen, projection, tv'));
200                 if (common_config('site', 'mobile')) {
201                     $this->element('link', array('rel' => 'stylesheet',
202                                                  'type' => 'text/css',
203                                                  'href' => theme_path('css/mobile.css', 'base') . '?version=' . LACONICA_VERSION,
204                                                  // TODO: "handheld" CSS for other mobile devices
205                                                  'media' => 'only screen and (max-device-width: 480px)')); // Mobile WebKit
206                 }
207                 $this->element('link', array('rel' => 'stylesheet',
208                                              'type' => 'text/css',
209                                              'href' => theme_path('css/print.css', 'base') . '?version=' . LACONICA_VERSION,
210                                              'media' => 'print'));
211                 Event::handle('EndShowLaconicaStyles', array($this));
212             }
213             if (Event::handle('StartShowUAStyles', array($this))) {
214                 $this->comment('[if IE]><link rel="stylesheet" type="text/css" '.
215                                'href="'.theme_path('css/ie.css', 'base').'?version='.LACONICA_VERSION.'" /><![endif]');
216                 foreach (array(6,7) as $ver) {
217                     if (file_exists(theme_file('css/ie'.$ver.'.css', 'base'))) {
218                         // Yes, IE people should be put in jail.
219                         $this->comment('[if lte IE '.$ver.']><link rel="stylesheet" type="text/css" '.
220                                        'href="'.theme_path('css/ie'.$ver.'.css', 'base').'?version='.LACONICA_VERSION.'" /><![endif]');
221                     }
222                 }
223                 $this->comment('[if IE]><link rel="stylesheet" type="text/css" '.
224                                'href="'.theme_path('css/ie.css', null).'?version='.LACONICA_VERSION.'" /><![endif]');
225                 Event::handle('EndShowUAStyles', array($this));
226             }
227             Event::handle('EndShowStyles', array($this));
228         }
229     }
230
231     /**
232      * Show javascript headers
233      *
234      * @return nothing
235      */
236     function showScripts()
237     {
238         if (Event::handle('StartShowScripts', array($this))) {
239             if (Event::handle('StartShowJQueryScripts', array($this))) {
240                 $this->element('script', array('type' => 'text/javascript',
241                                                'src' => common_path('js/jquery.min.js')),
242                                ' ');
243                 $this->element('script', array('type' => 'text/javascript',
244                                                'src' => common_path('js/jquery.form.js')),
245                                ' ');
246                 Event::handle('EndShowJQueryScripts', array($this));
247             }
248             if (Event::handle('StartShowLaconicaScripts', array($this))) {
249                 $this->element('script', array('type' => 'text/javascript',
250                                                'src' => common_path('js/xbImportNode.js')),
251                                ' ');
252                 $this->element('script', array('type' => 'text/javascript',
253                                                'src' => common_path('js/util.js?version='.LACONICA_VERSION)),
254                                ' ');
255                 // Frame-busting code to avoid clickjacking attacks.
256                 $this->element('script', array('type' => 'text/javascript'),
257                                'if (window.top !== window.self) { window.top.location.href = window.self.location.href; }');
258                 Event::handle('EndShowLaconicaScripts', array($this));
259             }
260             Event::handle('EndShowScripts', array($this));
261         }
262     }
263
264     /**
265      * Show document relationship links
266      *
267      * SHOULD overload
268      *
269      * @return nothing
270      */
271     function showRelationshipLinks()
272     {
273         // output <link> elements with appropriate HTML4.01 link types:
274         // http://www.w3.org/TR/html401/types.html#type-links
275     }
276
277     /**
278      * Show OpenSearch headers
279      *
280      * @return nothing
281      */
282     function showOpenSearch()
283     {
284         $this->element('link', array('rel' => 'search',
285                                      'type' => 'application/opensearchdescription+xml',
286                                      'href' =>  common_local_url('opensearch', array('type' => 'people')),
287                                      'title' => common_config('site', 'name').' People Search'));
288         $this->element('link', array('rel' => 'search', 'type' => 'application/opensearchdescription+xml',
289                                      'href' =>  common_local_url('opensearch', array('type' => 'notice')),
290                                      'title' => common_config('site', 'name').' Notice Search'));
291     }
292
293     /**
294      * Show feed headers
295      *
296      * MAY overload
297      *
298      * @return nothing
299      */
300
301     function showFeeds()
302     {
303         $feeds = $this->getFeeds();
304
305         if ($feeds) {
306             foreach ($feeds as $feed) {
307                 $this->element('link', array('rel' => $feed->rel(),
308                                              'href' => $feed->url,
309                                              'type' => $feed->mimeType(),
310                                              'title' => $feed->title));
311             }
312         }
313     }
314
315     /**
316      * Show description.
317      *
318      * SHOULD overload
319      *
320      * @return nothing
321      */
322     function showDescription()
323     {
324         // does nothing by default
325     }
326
327     /**
328      * Show extra stuff in <head>.
329      *
330      * MAY overload
331      *
332      * @return nothing
333      */
334     function extraHead()
335     {
336         // does nothing by default
337     }
338
339     /**
340      * Show body.
341      *
342      * Calls template methods
343      *
344      * @return nothing
345      */
346     function showBody()
347     {
348         $this->elementStart('body', (common_current_user()) ? array('id' => $this->trimmed('action'),
349                                                                     'class' => 'user_in')
350                                                             : array('id' => $this->trimmed('action')));
351         $this->elementStart('div', array('id' => 'wrap'));
352         if (Event::handle('StartShowHeader', array($this))) {
353             $this->showHeader();
354             Event::handle('EndShowHeader', array($this));
355         }
356         $this->showCore();
357         if (Event::handle('StartShowFooter', array($this))) {
358             $this->showFooter();
359             Event::handle('EndShowFooter', array($this));
360         }
361         $this->elementEnd('div');
362         $this->elementEnd('body');
363     }
364
365     /**
366      * Show header of the page.
367      *
368      * Calls template methods
369      *
370      * @return nothing
371      */
372     function showHeader()
373     {
374         $this->elementStart('div', array('id' => 'header'));
375         $this->showLogo();
376         $this->showPrimaryNav();
377         $this->showSiteNotice();
378         if (common_logged_in()) {
379             $this->showNoticeForm();
380         } else {
381             $this->showAnonymousMessage();
382         }
383         $this->elementEnd('div');
384     }
385
386     /**
387      * Show configured logo.
388      *
389      * @return nothing
390      */
391     function showLogo()
392     {
393         $this->elementStart('address', array('id' => 'site_contact',
394                                              'class' => 'vcard'));
395         $this->elementStart('a', array('class' => 'url home bookmark',
396                                        'href' => common_local_url('public')));
397         if (common_config('site', 'logo') || file_exists(theme_file('logo.png'))) {
398             $this->element('img', array('class' => 'logo photo',
399                                         'src' => (common_config('site', 'logo')) ? common_config('site', 'logo') : theme_path('logo.png'),
400                                         'alt' => common_config('site', 'name')));
401         }
402         $this->element('span', array('class' => 'fn org'), common_config('site', 'name'));
403         $this->elementEnd('a');
404         $this->elementEnd('address');
405     }
406
407     /**
408      * Show primary navigation.
409      *
410      * @return nothing
411      */
412     function showPrimaryNav()
413     {
414         $user = common_current_user();
415
416         $this->elementStart('dl', array('id' => 'site_nav_global_primary'));
417         $this->element('dt', null, _('Primary site navigation'));
418         $this->elementStart('dd');
419         $this->elementStart('ul', array('class' => 'nav'));
420         if (Event::handle('StartPrimaryNav', array($this))) {
421             if ($user) {
422                 $this->menuItem(common_local_url('all', array('nickname' => $user->nickname)),
423                                 _('Home'), _('Personal profile and friends timeline'), false, 'nav_home');
424                 $this->menuItem(common_local_url('profilesettings'),
425                                 _('Account'), _('Change your email, avatar, password, profile'), false, 'nav_account');
426                 if (common_config('xmpp', 'enabled')) {
427                     $this->menuItem(common_local_url('imsettings'),
428                                     _('Connect'), _('Connect to IM, SMS, Twitter'), false, 'nav_connect');
429                 } else {
430                     $this->menuItem(common_local_url('smssettings'),
431                                     _('Connect'), _('Connect to SMS, Twitter'), false, 'nav_connect');
432                 }
433                 $this->menuItem(common_local_url('invite'),
434                                  _('Invite'),
435                                  sprintf(_('Invite friends and colleagues to join you on %s'),
436                                  common_config('site', 'name')),
437                                  false, 'nav_invitecontact');
438                 $this->menuItem(common_local_url('logout'),
439                                 _('Logout'), _('Logout from the site'), false, 'nav_logout');
440             }
441             else {
442                 if (!common_config('site', 'closed')) {
443                     $this->menuItem(common_local_url('register'),
444                                     _('Register'), _('Create an account'), false, 'nav_register');
445                 }
446                 $this->menuItem(common_local_url('openidlogin'),
447                                 _('OpenID'), _('Login with OpenID'), false, 'nav_openid');
448                 $this->menuItem(common_local_url('login'),
449                                 _('Login'), _('Login to the site'), false, 'nav_login');
450             }
451             $this->menuItem(common_local_url('doc', array('title' => 'help')),
452                             _('Help'), _('Help me!'), false, 'nav_help');
453             $this->menuItem(common_local_url('peoplesearch'),
454                             _('Search'), _('Search for people or text'), false, 'nav_search');
455             Event::handle('EndPrimaryNav', array($this));
456         }
457         $this->elementEnd('ul');
458         $this->elementEnd('dd');
459         $this->elementEnd('dl');
460     }
461
462     /**
463      * Show site notice.
464      *
465      * @return nothing
466      */
467     function showSiteNotice()
468     {
469         // Revist. Should probably do an hAtom pattern here
470         $text = common_config('site', 'notice');
471         if ($text) {
472             $this->elementStart('dl', array('id' => 'site_notice',
473                                             'class' => 'system_notice'));
474             $this->element('dt', null, _('Site notice'));
475             $this->elementStart('dd', null);
476             $this->raw($text);
477             $this->elementEnd('dd');
478             $this->elementEnd('dl');
479         }
480     }
481
482     /**
483      * Show notice form.
484      *
485      * MAY overload if no notice form needed... or direct message box????
486      *
487      * @return nothing
488      */
489     function showNoticeForm()
490     {
491         $notice_form = new NoticeForm($this);
492         $notice_form->show();
493     }
494
495     /**
496      * Show anonymous message.
497      *
498      * SHOULD overload
499      *
500      * @return nothing
501      */
502     function showAnonymousMessage()
503     {
504         // needs to be defined by the class
505     }
506
507     /**
508      * Show core.
509      *
510      * Shows local navigation, content block and aside.
511      *
512      * @return nothing
513      */
514     function showCore()
515     {
516         $this->elementStart('div', array('id' => 'core'));
517         if (Event::handle('StartShowLocalNavBlock', array($this))) {
518             $this->showLocalNavBlock();
519             Event::handle('EndShowLocalNavBlock', array($this));
520         }
521         if (Event::handle('StartShowContentBlock', array($this))) {
522             $this->showContentBlock();
523             Event::handle('EndShowContentBlock', array($this));
524         }
525         $this->showAside();
526         $this->elementEnd('div');
527     }
528
529     /**
530      * Show local navigation block.
531      *
532      * @return nothing
533      */
534     function showLocalNavBlock()
535     {
536         $this->elementStart('dl', array('id' => 'site_nav_local_views'));
537         $this->element('dt', null, _('Local views'));
538         $this->elementStart('dd');
539         $this->showLocalNav();
540         $this->elementEnd('dd');
541         $this->elementEnd('dl');
542     }
543
544     /**
545      * Show local navigation.
546      *
547      * SHOULD overload
548      *
549      * @return nothing
550      */
551     function showLocalNav()
552     {
553         // does nothing by default
554     }
555
556     /**
557      * Show content block.
558      *
559      * @return nothing
560      */
561     function showContentBlock()
562     {
563         $this->elementStart('div', array('id' => 'content'));
564         $this->showPageTitle();
565         $this->showPageNoticeBlock();
566         $this->elementStart('div', array('id' => 'content_inner'));
567         // show the actual content (forms, lists, whatever)
568         $this->showContent();
569         $this->elementEnd('div');
570         $this->elementEnd('div');
571     }
572
573     /**
574      * Show page title.
575      *
576      * @return nothing
577      */
578     function showPageTitle()
579     {
580         $this->element('h1', null, $this->title());
581     }
582
583     /**
584      * Show page notice block.
585      *
586      * @return nothing
587      */
588     function showPageNoticeBlock()
589     {
590         $this->elementStart('dl', array('id' => 'page_notice',
591                                         'class' => 'system_notice'));
592         $this->element('dt', null, _('Page notice'));
593         $this->elementStart('dd');
594         $this->showPageNotice();
595         $this->elementEnd('dd');
596         $this->elementEnd('dl');
597     }
598
599     /**
600      * Show page notice.
601      *
602      * SHOULD overload (unless there's not a notice)
603      *
604      * @return nothing
605      */
606     function showPageNotice()
607     {
608     }
609
610     /**
611      * Show content.
612      *
613      * MUST overload (unless there's not a notice)
614      *
615      * @return nothing
616      */
617     function showContent()
618     {
619     }
620
621     /**
622      * Show Aside.
623      *
624      * @return nothing
625      */
626
627     function showAside()
628     {
629         $this->elementStart('div', array('id' => 'aside_primary',
630                                          'class' => 'aside'));
631         if (Event::handle('StartShowExportData', array($this))) {
632         $this->showExportData();
633             Event::handle('EndShowExportData', array($this));
634         }
635         if (Event::handle('StartShowSections', array($this))) {
636             $this->showSections();
637             Event::handle('EndShowSections', array($this));
638         }
639         $this->elementEnd('div');
640     }
641
642     /**
643      * Show export data feeds.
644      *
645      * @return void
646      */
647
648     function showExportData()
649     {
650         $feeds = $this->getFeeds();
651         if ($feeds) {
652             $fl = new FeedList($this);
653             $fl->show($feeds);
654         }
655     }
656
657     /**
658      * Show sections.
659      *
660      * SHOULD overload
661      *
662      * @return nothing
663      */
664     function showSections()
665     {
666         // for each section, show it
667     }
668
669     /**
670      * Show footer.
671      *
672      * @return nothing
673      */
674     function showFooter()
675     {
676         $this->elementStart('div', array('id' => 'footer'));
677         $this->showSecondaryNav();
678         $this->showLicenses();
679         $this->elementEnd('div');
680     }
681
682     /**
683      * Show secondary navigation.
684      *
685      * @return nothing
686      */
687     function showSecondaryNav()
688     {
689         $this->elementStart('dl', array('id' => 'site_nav_global_secondary'));
690         $this->element('dt', null, _('Secondary site navigation'));
691         $this->elementStart('dd', null);
692         $this->elementStart('ul', array('class' => 'nav'));
693         if (Event::handle('StartSecondaryNav', array($this))) {
694             $this->menuItem(common_local_url('doc', array('title' => 'help')),
695                             _('Help'));
696             $this->menuItem(common_local_url('doc', array('title' => 'about')),
697                             _('About'));
698             $this->menuItem(common_local_url('doc', array('title' => 'faq')),
699                             _('FAQ'));
700             $this->menuItem(common_local_url('doc', array('title' => 'privacy')),
701                             _('Privacy'));
702             $this->menuItem(common_local_url('doc', array('title' => 'source')),
703                             _('Source'));
704             $this->menuItem(common_local_url('doc', array('title' => 'contact')),
705                             _('Contact'));
706             $this->menuItem(common_local_url('doc', array('title' => 'badge')),
707                             _('Badge'));
708             Event::handle('EndSecondaryNav', array($this));
709         }
710         $this->elementEnd('ul');
711         $this->elementEnd('dd');
712         $this->elementEnd('dl');
713     }
714
715     /**
716      * Show licenses.
717      *
718      * @return nothing
719      */
720     function showLicenses()
721     {
722         $this->elementStart('dl', array('id' => 'licenses'));
723         $this->showLaconicaLicense();
724         $this->showContentLicense();
725         $this->elementEnd('dl');
726     }
727
728     /**
729      * Show Laconica license.
730      *
731      * @return nothing
732      */
733     function showLaconicaLicense()
734     {
735         $this->element('dt', array('id' => 'site_laconica_license'), _('Laconica software license'));
736         $this->elementStart('dd', null);
737         if (common_config('site', 'broughtby')) {
738             $instr = _('**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). ');
739         } else {
740             $instr = _('**%%site.name%%** is a microblogging service. ');
741         }
742         $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);
743         $output = common_markup_to_html($instr);
744         $this->raw($output);
745         $this->elementEnd('dd');
746         // do it
747     }
748
749     /**
750      * Show content license.
751      *
752      * @return nothing
753      */
754     function showContentLicense()
755     {
756         $this->element('dt', array('id' => 'site_content_license'), _('Laconica software license'));
757         $this->elementStart('dd', array('id' => 'site_content_license_cc'));
758         $this->elementStart('p');
759         $this->element('img', array('id' => 'license_cc',
760                                     'src' => common_config('license', 'image'),
761                                     'alt' => common_config('license', 'title')));
762         //TODO: This is dirty: i18n
763         $this->text(_('All '.common_config('site', 'name').' content and data are available under the '));
764         $this->element('a', array('class' => 'license',
765                                   'rel' => 'external license',
766                                   'href' => common_config('license', 'url')),
767                        common_config('license', 'title'));
768         $this->text(_('license.'));
769         $this->elementEnd('p');
770         $this->elementEnd('dd');
771     }
772
773     /**
774      * Return last modified, if applicable.
775      *
776      * MAY override
777      *
778      * @return string last modified http header
779      */
780     function lastModified()
781     {
782         // For comparison with If-Last-Modified
783         // If not applicable, return null
784         return null;
785     }
786
787     /**
788      * Return etag, if applicable.
789      *
790      * MAY override
791      *
792      * @return string etag http header
793      */
794     function etag()
795     {
796         return null;
797     }
798
799     /**
800      * Return true if read only.
801      *
802      * MAY override
803      *
804      * @param array $args other arguments
805      *
806      * @return boolean is read only action?
807      */
808
809     function isReadOnly($args)
810     {
811         return false;
812     }
813
814     /**
815      * Returns query argument or default value if not found
816      *
817      * @param string $key requested argument
818      * @param string $def default value to return if $key is not provided
819      *
820      * @return boolean is read only action?
821      */
822     function arg($key, $def=null)
823     {
824         if (array_key_exists($key, $this->args)) {
825             return $this->args[$key];
826         } else {
827             return $def;
828         }
829     }
830
831     /**
832      * Returns trimmed query argument or default value if not found
833      *
834      * @param string $key requested argument
835      * @param string $def default value to return if $key is not provided
836      *
837      * @return boolean is read only action?
838      */
839     function trimmed($key, $def=null)
840     {
841         $arg = $this->arg($key, $def);
842         return is_string($arg) ? trim($arg) : $arg;
843     }
844
845     /**
846      * Handler method
847      *
848      * @param array $argarray is ignored since it's now passed in in prepare()
849      *
850      * @return boolean is read only action?
851      */
852     function handle($argarray=null)
853     {
854         $lm   = $this->lastModified();
855         $etag = $this->etag();
856         if ($etag) {
857             header('ETag: ' . $etag);
858         }
859         if ($lm) {
860             header('Last-Modified: ' . date(DATE_RFC1123, $lm));
861             if (array_key_exists('HTTP_IF_MODIFIED_SINCE', $_SERVER)) {
862                 $if_modified_since = $_SERVER['HTTP_IF_MODIFIED_SINCE'];
863                 $ims = strtotime($if_modified_since);
864                 if ($lm <= $ims) {
865                     $if_none_match = (array_key_exists('HTTP_IF_NONE_MATCH', $_SERVER)) ?
866                       $_SERVER['HTTP_IF_NONE_MATCH'] : null;
867                     if (!$if_none_match ||
868                         !$etag ||
869                         $this->_hasEtag($etag, $if_none_match)) {
870                         header('HTTP/1.1 304 Not Modified');
871                         // Better way to do this?
872                         exit(0);
873                     }
874                 }
875             }
876         }
877     }
878
879     /**
880      * HasĀ etag? (private)
881      *
882      * @param string $etag          etag http header
883      * @param string $if_none_match ifNoneMatch http header
884      *
885      * @return boolean
886      */
887
888     function _hasEtag($etag, $if_none_match)
889     {
890         $etags = explode(',', $if_none_match);
891         return in_array($etag, $etags) || in_array('*', $etags);
892     }
893
894     /**
895      * Boolean understands english (yes, no, true, false)
896      *
897      * @param string $key query key we're interested in
898      * @param string $def default value
899      *
900      * @return boolean interprets yes/no strings as boolean
901      */
902     function boolean($key, $def=false)
903     {
904         $arg = strtolower($this->trimmed($key));
905
906         if (is_null($arg)) {
907             return $def;
908         } else if (in_array($arg, array('true', 'yes', '1'))) {
909             return true;
910         } else if (in_array($arg, array('false', 'no', '0'))) {
911             return false;
912         } else {
913             return $def;
914         }
915     }
916
917     /**
918      * Server error
919      *
920      * @param string  $msg  error message to display
921      * @param integer $code http error code, 500 by default
922      *
923      * @return nothing
924      */
925
926     function serverError($msg, $code=500)
927     {
928         $action = $this->trimmed('action');
929         common_debug("Server error '$code' on '$action': $msg", __FILE__);
930         throw new ServerException($msg, $code);
931     }
932
933     /**
934      * Client error
935      *
936      * @param string  $msg  error message to display
937      * @param integer $code http error code, 400 by default
938      *
939      * @return nothing
940      */
941
942     function clientError($msg, $code=400)
943     {
944         $action = $this->trimmed('action');
945         common_debug("User error '$code' on '$action': $msg", __FILE__);
946         throw new ClientException($msg, $code);
947     }
948
949     /**
950      * Returns the current URL
951      *
952      * @return string current URL
953      */
954
955     function selfUrl()
956     {
957         $action = $this->trimmed('action');
958         $args   = $this->args;
959         unset($args['action']);
960         if (array_key_exists('submit', $args)) {
961             unset($args['submit']);
962         }
963         foreach (array_keys($_COOKIE) as $cookie) {
964             unset($args[$cookie]);
965         }
966         return common_local_url($action, $args);
967     }
968
969     /**
970      * Generate a menu item
971      *
972      * @param string  $url         menu URL
973      * @param string  $text        menu name
974      * @param string  $title       title attribute, null by default
975      * @param boolean $is_selected current menu item, false by default
976      * @param string  $id          element id, null by default
977      *
978      * @return nothing
979      */
980     function menuItem($url, $text, $title=null, $is_selected=false, $id=null)
981     {
982         // Added @id to li for some control.
983         // XXX: We might want to move this to htmloutputter.php
984         $lattrs = array();
985         if ($is_selected) {
986             $lattrs['class'] = 'current';
987         }
988
989         (is_null($id)) ? $lattrs : $lattrs['id'] = $id;
990
991         $this->elementStart('li', $lattrs);
992         $attrs['href'] = $url;
993         if ($title) {
994             $attrs['title'] = $title;
995         }
996         $this->element('a', $attrs, $text);
997         $this->elementEnd('li');
998     }
999
1000     /**
1001      * Generate pagination links
1002      *
1003      * @param boolean $have_before is there something before?
1004      * @param boolean $have_after  is there something after?
1005      * @param integer $page        current page
1006      * @param string  $action      current action
1007      * @param array   $args        rest of query arguments
1008      *
1009      * @return nothing
1010      */
1011     function pagination($have_before, $have_after, $page, $action, $args=null)
1012     {
1013         // Does a little before-after block for next/prev page
1014         if ($have_before || $have_after) {
1015             $this->elementStart('div', array('class' => 'pagination'));
1016             $this->elementStart('dl', null);
1017             $this->element('dt', null, _('Pagination'));
1018             $this->elementStart('dd', null);
1019             $this->elementStart('ul', array('class' => 'nav'));
1020         }
1021         if ($have_before) {
1022             $pargs   = array('page' => $page-1);
1023             $this->elementStart('li', array('class' => 'nav_prev'));
1024             $this->element('a', array('href' => common_local_url($action, $args, $pargs),
1025                                       'rel' => 'prev'),
1026                            _('After'));
1027             $this->elementEnd('li');
1028         }
1029         if ($have_after) {
1030             $pargs   = array('page' => $page+1);
1031             $this->elementStart('li', array('class' => 'nav_next'));
1032             $this->element('a', array('href' => common_local_url($action, $args, $pargs),
1033                                       'rel' => 'next'),
1034                            _('Before'));
1035             $this->elementEnd('li');
1036         }
1037         if ($have_before || $have_after) {
1038             $this->elementEnd('ul');
1039             $this->elementEnd('dd');
1040             $this->elementEnd('dl');
1041             $this->elementEnd('div');
1042         }
1043     }
1044
1045     /**
1046      * An array of feeds for this action.
1047      *
1048      * Returns an array of potential feeds for this action.
1049      *
1050      * @return array Feed object to show in head and links
1051      */
1052
1053     function getFeeds()
1054     {
1055         return null;
1056     }
1057
1058     /**
1059      * Generate document metadata for sequential navigation
1060      *
1061      * @param boolean $have_before is there something before?
1062      * @param boolean $have_after  is there something after?
1063      * @param integer $page        current page
1064      * @param string  $action      current action
1065      * @param array   $args        rest of query arguments
1066      *
1067      * @return nothing
1068      */
1069     function sequenceRelationships($have_next, $have_previous, $page, $action, $args=null)
1070     {
1071         // Outputs machine-readable pagination in <link> elements.
1072         // Pattern taken from $this->pagination() method.
1073
1074         // "next" is equivalent to "after"
1075         if ($have_next) {
1076             $pargs   = array('page' => $page-1);
1077             $this->element('link', array('rel' => 'next',
1078                                          'href' => common_local_url($action, $args, $pargs),
1079                                          'title' => _('Next')));
1080         }
1081         // "previous" is equivalent to "before"
1082         if ($have_previous=true) { // FIXME
1083             $pargs   = array('page' => $page+1);
1084             $this->element('link', array('rel' => 'prev',
1085                                          'href' => common_local_url($action, $args, $pargs),
1086                                          'title' => _('Previous')));
1087         }
1088     }
1089 }