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