]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/all.php
f436fabd1becbc9458db39a35552c65b7c9524a0
[quix0rs-gnu-social.git] / actions / all.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Control Yourself, 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/personalgroupnav.php';
23 require_once INSTALLDIR.'/lib/noticelist.php';
24 require_once INSTALLDIR.'/lib/feedlist.php';
25
26 class AllAction extends ProfileAction
27 {
28     function isReadOnly($args)
29     {
30         return true;
31     }
32
33     function handle($args)
34     {
35         parent::handle($args);
36
37         if (!$this->user) {
38             $this->clientError(_('No such user.'));
39             return;
40         }
41
42         $this->showPage();
43     }
44
45     function title()
46     {
47         if ($this->page > 1) {
48             return sprintf(_("%s and friends, page %d"), $this->user->nickname, $this->page);
49         } else {
50             return sprintf(_("%s and friends"), $this->user->nickname);
51         }
52     }
53
54     function getFeeds()
55     {
56         return array(new Feed(Feed::RSS1,
57                               common_local_url('allrss', array('nickname' =>
58                                                                $this->user->nickname)),
59                               sprintf(_('Feed for friends of %s (RSS 1.0)'), $this->user->nickname)),
60                      new Feed(Feed::RSS2,
61                               common_local_url('api', array('apiaction' => 'statuses',
62                                                             'method' => 'friends_timeline',
63                                                             'argument' => $this->user->nickname.'.rss')),
64                               sprintf(_('Feed for friends of %s (RSS 2.0)'), $this->user->nickname)),
65                      new Feed(Feed::ATOM,
66                               common_local_url('api', array('apiaction' => 'statuses',
67                                                             'method' => 'friends_timeline',
68                                                             'argument' => $this->user->nickname.'.atom')),
69                               sprintf(_('Feed for friends of %s (Atom)'), $this->user->nickname)));
70     }
71
72     function showLocalNav()
73     {
74         $nav = new PersonalGroupNav($this);
75         $nav->show();
76     }
77
78     function showEmptyListMessage()
79     {
80         $message = sprintf(_('This is the timeline for %s and friends but no one has posted anything yet.'), $this->user->nickname) . ' ';
81
82         if (common_logged_in()) {
83             $current_user = common_current_user();
84             if ($this->user->id === $current_user->id) {
85                 $message .= _('Try subscribing to more people, [join a group](%%action.groups%%) or post something yourself.');
86             } else {
87                 $message .= sprintf(_('You can try to [nudge %s](../%s) from his profile or [post something to his or her attention](%%%%action.newnotice%%%%?status_textarea=%s).'), $this->user->nickname, $this->user->nickname, '@' . $this->user->nickname);
88             }
89         }
90         else {
91             $message .= sprintf(_('Why not [register an account](%%%%action.register%%%%) and then nudge %s or post a notice to his or her attention.'), $this->user->nickname);
92         }
93
94         $this->elementStart('div', 'guide');
95         $this->raw(common_markup_to_html($message));
96         $this->elementEnd('div');
97     }
98
99     function showContent()
100     {
101         $cur = common_current_user();
102
103         if (!empty($cur) && $cur->id == $this->user->id) {
104             $notice = $this->user->noticeInbox(($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
105         } else {
106             $notice = $this->user->noticesWithFriends(($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
107         }
108
109         $nl = new NoticeList($notice, $this);
110
111         $cnt = $nl->show();
112
113         if (0 == $cnt) {
114             $this->showEmptyListMessage();
115         }
116
117         $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
118                           $this->page, 'all', array('nickname' => $this->user->nickname));
119     }
120
121     function showPageTitle()
122     {
123         $user =& common_current_user();
124         if ($user && ($user->id == $this->user->id)) {
125             $this->element('h1', NULL, _("You and friends"));
126         } else {
127             $this->element('h1', NULL, sprintf(_('%s and friends'), $this->user->nickname));
128         }
129     }
130
131 }