]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/action.php
Add a menuItem method to Action
[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/form.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('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('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('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('wrap');
198         $this->showHeader();
199         $this->showCore();
200         $this->showFooter();
201         $this->elementEnd('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         $this->showNoticeForm();
212         $this->elementEnd('div');
213     }
214
215     function showLogo()
216     {
217         $this->elementStart('address', array('id' => 'site_contact',
218                                               'class' => 'vcard'));
219         $this->elementStart('a', array('class' => 'url home bookmark',
220                                         'href' => common_local_url('public')));
221         if ((isset($config['site']['logo']) && is_string($config['site']['logo']) && (strlen($config['site']['logo']) > 0))
222             || file_exists(theme_file('logo.png')))
223         {
224             $this->element('img', array('class' => 'logo photo',
225                                         'src' => isset($config['site']['logo']) ?
226                                         ($config['site']['logo']) : theme_path('logo.png'),
227                                         'alt' => $config['site']['name']));
228         }
229         $this->element('span', array('class' => 'fn org'), $config['site']['name']);
230         $this->elementEnd('a');
231         $this->elementEnd('address');
232     }
233
234     function showPrimaryNav()
235     {
236         $this->elementStart('dl', array('id' => 'site_nav_global_primary'));
237         $this->element('dt', null, _('Primary site navigation'));
238         $user = common_current_user();
239         $this->elementStart('ul', array('id' => 'nav'));
240         if ($user) {
241             $this->menuItem(common_local_url('all', array('nickname' => $user->nickname)),
242                              _('Home'));
243         }
244         $this->menuItem(common_local_url('peoplesearch'), _('Search'));
245         if ($user) {
246             $this->menuItem(common_local_url('profilesettings'),
247                              _('Settings'));
248             $this->menuItem(common_local_url('invite'),
249                              _('Invite'));
250             $this->menuItem(common_local_url('logout'),
251                              _('Logout'));
252         } else {
253             $this->menuItem(common_local_url('login'), _('Login'));
254             if (!common_config('site', 'closed')) {
255                 $this->menuItem(common_local_url('register'), _('Register'));
256             }
257             $this->menuItem(common_local_url('openidlogin'), _('OpenID'));
258         }
259         $this->menuItem(common_local_url('doc', array('title' => 'help')),
260                          _('Help'));
261         $this->elementEnd('ul');
262         $this->elementEnd('dl');
263     }
264
265     // Revist. Should probably do an hAtom pattern here
266     function showSiteNotice()
267     {
268         $this->elementStart('dl', array('id' => 'site_notice',
269                                         'class' => 'system_notice'));
270         $this->element('dt', null, _('Site notice'));
271         $this->elementStart('dd', null);
272         // Output a bunch of paragraphs here
273         $this->elementEnd('dd');
274     }
275
276     // MAY overload if no notice form needed... or direct message box????
277
278     function showNoticeForm()
279     {
280         $notice_form = new NoticeForm();
281         $notice_form->show();
282     }
283
284     function showCore()
285     {
286         $this->elementStart('div', array('class' => 'core'));
287         $this->showLocalNav();
288         $this->showContentBlock();
289         $this->showAside();
290         $this->elementEnd('div');
291     }
292
293     // SHOULD overload (perhaps this should be a MUST because sometimes it is not used)
294
295     function showLocalNav($menu)
296     {
297         $action = $this->trimmed('action');
298
299         $this->elementStart('dl', array('id' => 'site_nav_local_views'));
300         $this->element('dt', null, _('Local views'));
301         $this->elementStart('ul', array('id' => 'nav'));
302         foreach ($menu as $menuaction => $menudesc) {
303             $this->menuItem(common_local_url($menuaction,
304                                               isset($menudesc[2]) ? $menudesc[2] : null),
305                              $menudesc[0],
306                              $menudesc[1],
307                              $action == $menuaction);
308         }
309         $this->elementEnd('ul');
310         $this->elementEnd('dd');
311         $this->elementEnd('dl');
312     }
313
314     function showContentBlock()
315     {
316         $this->elementStart('div', array('id' => 'content'));
317         $this->showPageTitle();
318         $this->showPageNotice();
319         $this->showContent();
320         $this->elementEnd('div');
321     }
322
323     function showPageTitle() {
324         $this->element('h1', NULL, $this->title());
325     }
326
327     // SHOULD overload (unless there's not a notice)
328
329     function showPageNotice()
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         // Output a bunch of paragraphs here
336         $this->elementEnd('dd');
337     }
338
339     // MUST overload
340
341     function showContent()
342     {
343         // show the actual content (forms, lists, whatever)
344         $this->elementStart('div', array('id' => 'content_inner'));
345         $this->elementEnd('div');
346     }
347
348     function showAside()
349     {
350         $this->showExportData();
351         $this->showSections();
352     }
353
354     // MAY overload if there are feeds
355
356     function showExportData()
357     {
358         // is there structure to this?
359         // list of (visible!) feed links
360         // can we reuse list of feeds from showFeeds() ?
361     }
362
363     // SHOULD overload
364
365     function showSections() {
366         // for each section, show it
367     }
368
369     function showFooter()
370     {
371         $this->elementStart('div', array('id' => 'footer'));
372         $this->showSecondaryNav();
373         $this->showLicenses();
374         $this->elementEnd('div');
375     }
376
377     function showSecondaryNav()
378     {
379         $this->elementStart('ul', array('id' => 'nav_sub'));
380         $this->menuItem(common_local_url('doc', array('title' => 'help')),
381                          _('Help'));
382         $this->menuItem(common_local_url('doc', array('title' => 'about')),
383                          _('About'));
384         $this->menuItem(common_local_url('doc', array('title' => 'faq')),
385                          _('FAQ'));
386         $this->menuItem(common_local_url('doc', array('title' => 'privacy')),
387                          _('Privacy'));
388         $this->menuItem(common_local_url('doc', array('title' => 'source')),
389                          _('Source'));
390         $this->menuItem(common_local_url('doc', array('title' => 'contact')),
391                          _('Contact'));
392         $this->elementEnd('ul');
393     }
394
395     function showLicenses()
396     {
397         $this->elementStart('dl', array('id' => 'licenses'));
398         $this->showLaconicaLicense();
399         $this->showContentLicense();
400         $this->elementEnd('dl');
401     }
402
403     function showLaconicaLicense()
404     {
405         $this->element('dt', array('id' => 'site_laconica_license'), _('Laconica software license'));
406         $this->elementStart('dd', null);
407         if (common_config('site', 'broughtby')) {
408             $instr = _('**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). ');
409         } else {
410             $instr = _('**%%site.name%%** is a microblogging service. ');
411         }
412         $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);
413         $output = common_markup_to_html($instr);
414         common_raw($output);
415         $this->elementEnd('dd');
416         // do it
417     }
418
419     function showContentLicense()
420     {
421         $this->element('dt', array('id' => 'site_content_license'), _('Laconica software license'));
422         $this->elementStart('dd', array('id' => 'site_content_license_cc'));
423         $this->elementStart('p');
424         common_text(_('Unless otherwise specified, contents of this site are copyright by the contributors and available under the '));
425         $this->element('a', array('class' => 'license',
426                                   'rel' => 'external license',
427                                   'href' => $config['license']['url']),
428                        $config['license']['title']);
429         common_text(_('. Contributors should be attributed by full name or nickname.'));
430         $this->elementEnd('p');
431         $this->element('img', array('id' => 'license_cc',
432                                     'src' => $config['license']['image'],
433                                     'alt' => $config['license']['title']));
434         $this->elementEnd('dd');
435     }
436
437     // For comparison with If-Last-Modified
438     // If not applicable, return null
439
440     function last_modified()
441     {
442         return null;
443     }
444
445     function etag()
446     {
447         return null;
448     }
449
450     function is_readonly()
451     {
452         return false;
453     }
454
455     function arg($key, $def=null)
456     {
457         if (array_key_exists($key, $this->args)) {
458             return $this->args[$key];
459         } else {
460             return $def;
461         }
462     }
463
464     function trimmed($key, $def=null)
465     {
466         $arg = $this->arg($key, $def);
467         return (is_string($arg)) ? trim($arg) : $arg;
468     }
469
470     // Note: argarray ignored, since it's now passed in in prepare()
471
472     function handle($argarray=null)
473     {
474
475         $lm = $this->last_modified();
476         $etag = $this->etag();
477
478         if ($etag) {
479             header('ETag: ' . $etag);
480         }
481
482         if ($lm) {
483             header('Last-Modified: ' . date(DATE_RFC1123, $lm));
484             $if_modified_since = $_SERVER['HTTP_IF_MODIFIED_SINCE'];
485             if ($if_modified_since) {
486                 $ims = strtotime($if_modified_since);
487                 if ($lm <= $ims) {
488                     if (!$etag ||
489                         $this->_has_etag($etag, $_SERVER['HTTP_IF_NONE_MATCH'])) {
490                         header('HTTP/1.1 304 Not Modified');
491                         // Better way to do this?
492                         exit(0);
493                     }
494                 }
495             }
496         }
497     }
498
499     function _has_etag($etag, $if_none_match)
500     {
501         return ($if_none_match) && in_array($etag, explode(',', $if_none_match));
502     }
503
504     function boolean($key, $def=false)
505     {
506         $arg = strtolower($this->trimmed($key));
507
508         if (is_null($arg)) {
509             return $def;
510         } else if (in_array($arg, array('true', 'yes', '1'))) {
511             return true;
512         } else if (in_array($arg, array('false', 'no', '0'))) {
513             return false;
514         } else {
515             return $def;
516         }
517     }
518
519     function server_error($msg, $code=500)
520     {
521         $action = $this->trimmed('action');
522         common_debug("Server error '$code' on '$action': $msg", __FILE__);
523         common_server_error($msg, $code);
524     }
525
526     function client_error($msg, $code=400)
527     {
528         $action = $this->trimmed('action');
529         common_debug("User error '$code' on '$action': $msg", __FILE__);
530         common_user_error($msg, $code);
531     }
532
533     function self_url()
534     {
535         $action = $this->trimmed('action');
536         $args = $this->args;
537         unset($args['action']);
538         foreach (array_keys($_COOKIE) as $cookie) {
539             unset($args[$cookie]);
540         }
541         return common_local_url($action, $args);
542     }
543
544     function nav_menu($menu)
545     {
546         $action = $this->trimmed('action');
547         $this->elementStart('ul', array('id' => 'nav_views'));
548         foreach ($menu as $menuaction => $menudesc) {
549             $this->menuItem(common_local_url($menuaction,
550                                               isset($menudesc[2]) ? $menudesc[2] : null),
551                              $menudesc[0],
552                              $menudesc[1],
553                              $action == $menuaction);
554         }
555         $this->elementEnd('ul');
556     }
557
558     function common_show_header($pagetitle, $callable=null, $data=null, $headercall=null)
559     {
560         global $config, $xw;
561         global $action; /* XXX: kind of cheating here. */
562
563         common_start_html();
564
565         $this->elementStart('head');
566
567         if ($callable) {
568             if ($data) {
569                 call_user_func($callable, $data);
570             } else {
571                 call_user_func($callable);
572             }
573         }
574         $this->elementEnd('head');
575         $this->elementStart('body', $action);
576         $this->elementStart('div', array('id' => 'wrap'));
577         $this->elementStart('div', array('id' => 'content'));
578     }
579
580     // Added @id to li for some control. We might want to move this to htmloutputter.php
581
582     function menuItem($id=null, $url, $text, $title=null, $is_selected=false)
583     {
584         $lattrs = array();
585         if ($is_selected) {
586             $lattrs['class'] = 'current';
587         }
588
589         $this->elementStart('li', (is_null($id)) ? null : array('id' => $id),  $lattrs);
590         $attrs['href'] = $url;
591         if ($title) {
592             $attrs['title'] = $title;
593         }
594         $this->element('a', $attrs, $text);
595         $this->elementEnd('li');
596     }
597
598     // Does a little before-after block for next/prev page
599
600     function pagination($have_before, $have_after, $page, $action, $args=null)
601     {
602         if ($have_before || $have_after) {
603             $this->elementStart('div', array('class' => 'pagination'));
604             $this->elementStart('dl', null);
605             $this->element('dt', null, _('Pagination'));
606             $this->elementStart('dd', null);
607             $this->elementStart('ul', array('class' => 'nav'));
608         }
609
610         if ($have_before) {
611             $pargs = array('page' => $page-1);
612             $newargs = ($args) ? array_merge($args,$pargs) : $pargs;
613
614             $this->elementStart('li', array('class' => 'nav_prev'));
615             $this->element('a', array('href' => common_local_url($action, $newargs), 'rel' => 'prev'),
616                            _('After'));
617             $this->elementEnd('li');
618         }
619
620         if ($have_after) {
621             $pargs = array('page' => $page+1);
622             $newargs = ($args) ? array_merge($args,$pargs) : $pargs;
623             $this->elementStart('li', array('class' => 'nav_next'));
624             $this->element('a', array('href' => common_local_url($action, $newargs), 'rel' => 'next'),
625                            _('Before'));
626             $this->elementEnd('li');
627         }
628
629         if ($have_before || $have_after) {
630             $this->elementEnd('ul');
631             $this->elementEnd('dd');
632             $this->elementEnd('dl');
633             $this->elementEnd('div');
634         }
635     }
636 }