]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/all.php
Beginning to refactor document relationship links to reduce common code.
[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     /**
82      * Output document relationship links
83      *
84      * @return void
85      */
86     function showRelationshipLinks()
87     {
88         $this->sequenceRelationships($this->page > 1, $this->count > NOTICES_PER_PAGE, // FIXME
89                                      $this->page, 'all', array('nickname' => $this->user->nickname));
90     }
91
92     function showLocalNav()
93     {
94         $nav = new PersonalGroupNav($this);
95         $nav->show();
96     }
97
98     function showExportData()
99     {
100         $fl = new FeedList($this);
101         $fl->show(array(0=>array('href'=>common_local_url('allrss', array('nickname' => $this->user->nickname)),
102                                  'type' => 'rss',
103                                  'version' => 'RSS 1.0',
104                                  'item' => 'allrss')));
105     }
106
107     function showContent()
108     {
109         $notice = $this->user->noticesWithFriends(($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
110
111         $nl = new NoticeList($notice, $this);
112
113         $cnt = $nl->show();
114
115         $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
116                           $this->page, 'all', array('nickname' => $this->user->nickname));
117     }
118
119     function showPageTitle()
120     {
121         $user =& common_current_user();
122         if ($user && ($user->id == $this->user->id)) {
123             $this->element('h1', NULL, _("You and friends"));
124         } else { 
125             $this->element('h1', NULL, sprintf(_('%s and friends'), $this->user->nickname));
126         }
127     }
128
129 }