]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/public.php
add canonical rel
[quix0rs-gnu-social.git] / actions / public.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Action for displaying the public stream
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  Public
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @copyright 2008-2009 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
31     exit(1);
32 }
33
34 require_once INSTALLDIR.'/lib/publicgroupnav.php';
35 require_once INSTALLDIR.'/lib/noticelist.php';
36 require_once INSTALLDIR.'/lib/feedlist.php';
37
38 // Farther than any human will go
39
40 define('MAX_PUBLIC_PAGE', 100);
41
42 /**
43  * Action for displaying the public stream
44  *
45  * @category Public
46  * @package  StatusNet
47  * @author   Evan Prodromou <evan@status.net>
48  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
49  * @link     http://status.net/
50  *
51  * @see      PublicrssAction
52  * @see      PublicxrdsAction
53  */
54 class PublicAction extends Action
55 {
56     /**
57      * page of the stream we're on; default = 1
58      */
59
60     var $page = null;
61     var $notice;
62     var $userProfile = null;
63
64     function isReadOnly($args)
65     {
66         return true;
67     }
68
69     /**
70      * Read and validate arguments
71      *
72      * @param array $args URL parameters
73      *
74      * @return boolean success value
75      */
76     function prepare($args)
77     {
78         parent::prepare($args);
79         $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
80
81         if ($this->page > MAX_PUBLIC_PAGE) {
82             // TRANS: Client error displayed when requesting a public timeline page beyond the page limit.
83             // TRANS: %s is the page limit.
84             $this->clientError(sprintf(_('Beyond the page limit (%s).'), MAX_PUBLIC_PAGE));
85         }
86
87         common_set_returnto($this->selfUrl());
88
89         $this->userProfile = Profile::current();
90
91         $user = common_current_user();
92
93         if (!empty($user) && $user->streamModeOnly()) {
94             $stream = new PublicNoticeStream($this->userProfile);
95         } else {
96             $stream = new ThreadingPublicNoticeStream($this->userProfile);
97         }
98
99         $this->notice = $stream->getNotices(($this->page-1)*NOTICES_PER_PAGE,
100                                             NOTICES_PER_PAGE + 1);
101
102         if (!$this->notice) {
103             // TRANS: Server error displayed when a public timeline cannot be retrieved.
104             $this->serverError(_('Could not retrieve public timeline.'));
105             return;
106         }
107
108         if($this->page > 1 && $this->notice->N == 0){
109             // TRANS: Server error when page not found (404).
110             $this->serverError(_('No such page.'),$code=404);
111         }
112
113         return true;
114     }
115
116     /**
117      * handle request
118      *
119      * Show the public stream, using recipe method showPage()
120      *
121      * @param array $args arguments, mostly unused
122      *
123      * @return void
124      */
125     function handle($args)
126     {
127         parent::handle($args);
128
129         $this->showPage();
130     }
131
132     /**
133      * Title of the page
134      *
135      * @return page title, including page number if over 1
136      */
137     function title()
138     {
139         if ($this->page > 1) {
140             // TRANS: Title for all public timeline pages but the first.
141             // TRANS: %d is the page number.
142             return sprintf(_('Public timeline, page %d'), $this->page);
143         } else {
144             // TRANS: Title for the first public timeline page.
145             return _('Public timeline');
146         }
147     }
148
149     function extraHead()
150     {
151         parent::extraHead();
152         $this->element('meta', array('http-equiv' => 'X-XRDS-Location',
153                                            'content' => common_local_url('publicxrds')));
154
155         $rsd = common_local_url('rsd');
156
157         // RSD, http://tales.phrasewise.com/rfc/rsd
158
159         $this->element('link', array('rel' => 'EditURI',
160                                      'type' => 'application/rsd+xml',
161                                      'href' => $rsd));
162
163         if ($this->page != 1) {
164             $this->element('link', array('rel' => 'canonical',
165                                          'href' => common_local_url('public')));
166         }
167     }
168
169     /**
170      * Output <head> elements for RSS and Atom feeds
171      *
172      * @return void
173      */
174     function getFeeds()
175     {
176         return array(new Feed(Feed::JSON,
177                               common_local_url('ApiTimelinePublic',
178                                                array('format' => 'as')),
179                               // TRANS: Link description for public timeline feed.
180                               _('Public Timeline Feed (Activity Streams JSON)')),
181                     new Feed(Feed::RSS1, common_local_url('publicrss'),
182                               // TRANS: Link description for public timeline feed.
183                               _('Public Timeline Feed (RSS 1.0)')),
184                      new Feed(Feed::RSS2,
185                               common_local_url('ApiTimelinePublic',
186                                                array('format' => 'rss')),
187                               // TRANS: Link description for public timeline feed.
188                               _('Public Timeline Feed (RSS 2.0)')),
189                      new Feed(Feed::ATOM,
190                               common_local_url('ApiTimelinePublic',
191                                                array('format' => 'atom')),
192                               // TRANS: Link description for public timeline feed.
193                               _('Public Timeline Feed (Atom)')));
194     }
195
196     function showEmptyList()
197     {
198         // TRANS: Text displayed for public feed when there are no public notices.
199         $message = _('This is the public timeline for %%site.name%% but no one has posted anything yet.') . ' ';
200
201         if (common_logged_in()) {
202             // TRANS: Additional text displayed for public feed when there are no public notices for a logged in user.
203             $message .= _('Be the first to post!');
204         }
205         else {
206             if (! (common_config('site','closed') || common_config('site','inviteonly'))) {
207                 // TRANS: Additional text displayed for public feed when there are no public notices for a not logged in user.
208                 $message .= _('Why not [register an account](%%action.register%%) and be the first to post!');
209             }
210         }
211
212         $this->elementStart('div', 'guide');
213         $this->raw(common_markup_to_html($message));
214         $this->elementEnd('div');
215     }
216
217     /**
218      * Fill the content area
219      *
220      * Shows a list of the notices in the public stream, with some pagination
221      * controls.
222      *
223      * @return void
224      */
225     function showContent()
226     {
227         $user = common_current_user();
228
229         if (!empty($user) && $user->streamModeOnly()) {
230             $nl = new NoticeList($this->notice, $this);
231         } else {
232             $nl = new ThreadedNoticeList($this->notice, $this, $this->userProfile);
233         }
234
235         $cnt = $nl->show();
236
237         if ($cnt == 0) {
238             $this->showEmptyList();
239         }
240
241         $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
242                           $this->page, 'public');
243     }
244
245     function showSections()
246     {
247         // Show invite button, as long as site isn't closed, and
248         // we have a logged in user.
249         if (!common_config('site', 'closed') && common_logged_in()) {
250             if (!common_config('site', 'private')) {
251                 $ibs = new InviteButtonSection(
252                     $this,
253                     // TRANS: Button text for inviting more users to the StatusNet instance.
254                     // TRANS: Less business/enterprise-oriented language for public sites.
255                     _m('BUTTON', 'Send invite')
256                 );
257             } else {
258                 $ibs = new InviteButtonSection($this);
259             }
260             $ibs->show();
261         }
262
263         $p = Profile::current();
264
265         $pop = new PopularNoticeSection($this, $p);
266         $pop->show();
267         if (!common_config('performance', 'high')) {
268             $cloud = new PublicTagCloudSection($this);
269             $cloud->show();
270         }
271         $feat = new FeaturedUsersSection($this);
272         $feat->show();
273     }
274
275     function showAnonymousMessage()
276     {
277         if (! (common_config('site','closed') || common_config('site','inviteonly'))) {
278             // TRANS: Message for not logged in users at an invite-only site trying to view the public feed of notices.
279             // TRANS: This message contains Markdown links. Please mind the formatting.
280             $m = _('This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
281                    'based on the Free Software [StatusNet](http://status.net/) tool. ' .
282                    '[Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ' .
283                    '([Read more](%%doc.help%%))');
284         } else {
285             // TRANS: Message for not logged in users at a closed site trying to view the public feed of notices.
286             // TRANS: This message contains Markdown links. Please mind the formatting.
287             $m = _('This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
288                    'based on the Free Software [StatusNet](http://status.net/) tool.');
289         }
290         $this->elementStart('div', array('id' => 'anon_notice'));
291         $this->raw(common_markup_to_html($m));
292         $this->elementEnd('div');
293     }
294 }
295
296 class ThreadingPublicNoticeStream extends ThreadingNoticeStream
297 {
298     function __construct($profile)
299     {
300         parent::__construct(new PublicNoticeStream($profile));
301     }
302 }