]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/public.php
change function headers to K&R style
[quix0rs-gnu-social.git] / actions / public.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 require_once(INSTALLDIR.'/lib/stream.php');
23
24 class PublicAction extends StreamAction {
25
26     function handle($args)
27     {
28         parent::handle($args);
29
30         $page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
31
32         header('X-XRDS-Location: '. common_local_url('publicxrds'));
33
34         common_show_header(_('Public timeline'),
35                            array($this, 'show_header'), null,
36                            array($this, 'show_top'));
37
38         # XXX: Public sidebar here?
39
40         $this->show_notices($page);
41
42         common_show_footer();
43     }
44
45     function show_top()
46     {
47         if (common_logged_in()) {
48             common_notice_form('public');
49         } else {
50             $instr = $this->get_instructions();
51             $output = common_markup_to_html($instr);
52             common_element_start('div', 'instructions');
53             common_raw($output);
54             common_element_end('div');
55         }
56
57         $this->public_views_menu();
58
59         $this->show_feeds_list(array(0=>array('href'=>common_local_url('publicrss'),
60                                               'type' => 'rss',
61                                               'version' => 'RSS 1.0',
62                                               'item' => 'publicrss'),
63                                      1=>array('href'=>common_local_url('publicatom'),
64                                               'type' => 'atom',
65                                               'version' => 'Atom 1.0',
66                                               'item' => 'publicatom')));
67     }
68
69     function get_instructions()
70     {
71         return _('This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
72                  'based on the Free Software [Laconica](http://laconi.ca/) tool. ' .
73                  '[Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ([Read more](%%doc.help%%))');
74     }
75
76     function show_header()
77     {
78         common_element('link', array('rel' => 'alternate',
79                                      'href' => common_local_url('publicrss'),
80                                      'type' => 'application/rss+xml',
81                                      'title' => _('Public Stream Feed')));
82         # for client side of OpenID authentication
83         common_element('meta', array('http-equiv' => 'X-XRDS-Location',
84                                      'content' => common_local_url('publicxrds')));
85     }
86
87     function show_notices($page)
88     {
89
90         $cnt = 0;
91         $notice = Notice::publicStream(($page-1)*NOTICES_PER_PAGE,
92                                        NOTICES_PER_PAGE + 1);
93
94         if (!$notice) {
95             $this->server_error(_('Could not retrieve public stream.'));
96             return;
97         }
98
99         $cnt = $this->show_notice_list($notice);
100
101         common_pagination($page > 1, $cnt > NOTICES_PER_PAGE,
102                           $page, 'public');
103     }
104 }