]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/all.php
Merge commit 'upstream/0.7.x' into 0.7.x
[quix0rs-gnu-social.git] / actions / all.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/personalgroupnav.php';
23 require_once INSTALLDIR.'/lib/noticelist.php';
24 require_once INSTALLDIR.'/lib/feedlist.php';
25
26 class AllAction extends Action
27 {
28     var $user = null;
29     var $page = null;
30
31     function isReadOnly()
32     {
33         return true;
34     }
35
36     function prepare($args)
37     {
38         parent::prepare($args);
39         $nickname = common_canonical_nickname($this->arg('nickname'));
40         $this->user = User::staticGet('nickname', $nickname);
41         $this->page = $this->trimmed('page');
42         if (!$this->page) {
43             $this->page = 1;
44         }
45         
46         common_set_returnto($this->selfUrl());
47         
48         return true;
49     }
50
51     function handle($args)
52     {
53         parent::handle($args);
54
55         if (!$this->user) {
56             $this->clientError(_('No such user.'));
57             return;
58         }
59
60         $this->showPage();
61     }
62
63     function title()
64     {
65         if ($this->page > 1) {
66             return sprintf(_("%s and friends, page %d"), $this->user->nickname, $this->page);
67         } else {
68             return sprintf(_("%s and friends"), $this->user->nickname);
69         }
70     }
71
72     function showFeeds()
73     {
74         $this->element('link', array('rel' => 'alternate',
75                                      'href' => common_local_url('allrss', array('nickname' =>
76                                                                                 $this->user->nickname)),
77                                      'type' => 'application/rss+xml',
78                                      'title' => sprintf(_('Feed for friends of %s'), $this->user->nickname)));
79     }
80
81     function showLocalNav()
82     {
83         $nav = new PersonalGroupNav($this);
84         $nav->show();
85     }
86
87     function showExportData()
88     {
89         $fl = new FeedList($this);
90         $fl->show(array(0=>array('href'=>common_local_url('allrss', array('nickname' => $this->user->nickname)),
91                                  'type' => 'rss',
92                                  'version' => 'RSS 1.0',
93                                  'item' => 'allrss')));
94     }
95
96     function showContent()
97     {
98         $notice = $this->user->noticesWithFriends(($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
99
100         $nl = new NoticeList($notice, $this);
101
102         $cnt = $nl->show();
103
104         $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
105                           $this->page, 'all', array('nickname' => $this->user->nickname));
106     }
107
108     function showPageTitle()
109     {
110         $user =& common_current_user();
111         if ($user && ($user->id == $this->user->id)) {
112             $this->element('h1', NULL, _("You and friends"));
113         } else { 
114             $this->element('h1', NULL, sprintf(_('%s and friends'), $this->user->nickname));
115         }
116     }
117
118 }