]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/peopletagsubscriptions.php
Merge branch 'people_tag_fixes' into 1.0.x
[quix0rs-gnu-social.git] / actions / peopletagsubscriptions.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * People tags subscribed to by a user
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  Personal
23  * @package   StatusNet
24  * @author    Shashi Gowda <connect2shashi@gmail.com>
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/peopletaglist.php';
35
36 class PeopletagsubscriptionsAction extends OwnerDesignAction
37 {
38     var $page = null;
39     var $profile = null;
40
41     function isReadOnly($args)
42     {
43         return true;
44     }
45
46     function title()
47     {
48         if ($this->page == 1) {
49             // TRANS: Title for page that displays people tags subscribed to by a user.
50             // TRANS: %s is a profile nickname.
51             return sprintf(_('Lists subscribed to by %s'), $this->profile->nickname);
52         } else {
53             // TRANS: Title for page that displays people tags subscribed to by a user.
54             // TRANS: %1$s is a profile nickname, %2$d is a page number.
55             return sprintf(_('Lists subscribed to by %1$s, page %2$d'), $this->profile->nickname, $this->page);
56         }
57     }
58
59     function prepare($args)
60     {
61         parent::prepare($args);
62
63         $nickname_arg = $this->arg('nickname');
64         $nickname = common_canonical_nickname($nickname_arg);
65
66         // Permanent redirect on non-canonical nickname
67
68         if ($nickname_arg != $nickname) {
69             $args = array('nickname' => $nickname);
70             if ($this->arg('page') && $this->arg('page') != 1) {
71                 $args['page'] = $this->arg['page'];
72             }
73             common_redirect(common_local_url('peopletagsbyuser', $args), 301);
74             return false;
75         }
76
77         $user = User::staticGet('nickname', $nickname);
78
79         if (!$user) {
80             // TRANS: Client error displayed trying to perform an action related to a non-existing user.
81             $this->clientError(_('No such user.'), 404);
82             return false;
83         }
84
85         $this->profile = $user->getProfile();
86
87         if (!$this->profile) {
88             // TRANS: Server error displayed when a user has no profile.
89             $this->serverError(_('User has no profile.'));
90             return false;
91         }
92
93         $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
94
95         return true;
96     }
97
98     function handle($args)
99     {
100         parent::handle($args);
101         $this->showPage();
102     }
103
104     function showAnonymousMessage()
105     {
106         $notice =
107           // TRANS: Message displayed for anonymous users on page that displays people tags subscribed to by a user.
108           // TRANS: This message contains Markdown links in the form [description](links).
109           // TRANS: %s is a profile nickname.
110           sprintf(_('These are lists subscribed to by **%s**. ' .
111                     'Lists are how you sort similar ' .
112                     'people on %%%%site.name%%%%, a [micro-blogging]' .
113                     '(http://en.wikipedia.org/wiki/Micro-blogging) service ' .
114                     'based on the Free Software [StatusNet](http://status.net/) tool. ' .
115                     'You can easily keep track of what they ' .
116                     'are doing by subscribing to the list\'s timeline.' ), $this->profile->nickname);
117         $this->elementStart('div', array('id' => 'anon_notice'));
118         $this->raw(common_markup_to_html($notice));
119         $this->elementEnd('div');
120     }
121
122     function showContent()
123     {
124         $offset = ($this->page-1) * PEOPLETAGS_PER_PAGE;
125         $limit  = PEOPLETAGS_PER_PAGE + 1;
126
127         $ptags = $this->profile->getTagSubscriptions($offset, $limit);
128
129         $pl = new PeopletagList($ptags, $this);
130         $cnt = $pl->show();
131
132         $this->pagination($this->page > 1, $cnt > PEOPLETAGS_PER_PAGE,
133                           $this->page, 'peopletagsubscriptions', array('nickname' => $this->profile->id));
134     }
135
136     function showObjectNav()
137     {
138         $nav = new PeopletagNav($this, $this->profile);
139         $nav->show();
140     }
141
142     function showProfileBlock()
143     {
144         $block = new AccountProfileBlock($this, $this->profile);
145         $block->show();
146     }
147
148     function showSections()
149     {
150         #TODO: tags with most subscribers
151         #TODO: tags with most "members"
152     }
153 }