]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/peopletagsbyuser.php
Merge branch 'master' into 1.0.x
[quix0rs-gnu-social.git] / actions / peopletagsbyuser.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Lists 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 PeopletagsbyuserAction extends OwnerDesignAction
37 {
38     var $page = null;
39     var $tagger = null;
40     var $tags = null;
41
42     function isReadOnly($args)
43     {
44         return true;
45     }
46
47     function title()
48     {
49         if ($this->page == 1) {
50             if ($this->isOwner()) {
51                 if ($this->arg('private')) {
52                     // TRANS: Title for lists by a user page for a private tag.
53                     return _('Private lists by you');
54                 } else if ($this->arg('public')) {
55                     // TRANS: Title for lists by a user page for a public tag.
56                     return _('Public lists by you');
57                 }
58                 // TRANS: Title for lists by a user page.
59                 return _('Lists by you');
60             }
61             // TRANS: Title for lists by a user page.
62             // TRANS: %s is a user nickname.
63             return sprintf(_('Lists by %s'), $this->tagger->nickname);
64         } else {
65             // TRANS: Title for lists by a user page.
66             // TRANS: %1$s is a user nickname, %2$d is a page number.
67             return sprintf(_('Lists by %1$s, page %2$d'), $this->tagger->nickname, $this->page);
68         }
69     }
70
71     function prepare($args)
72     {
73         parent::prepare($args);
74
75         if ($this->arg('public') && $this->arg('private')) {
76             $this->args['public'] = $this->args['private'] = false;
77         }
78
79         $nickname_arg = $this->arg('nickname');
80         $nickname = common_canonical_nickname($nickname_arg);
81
82         // Permanent redirect on non-canonical nickname
83
84         if ($nickname_arg != $nickname) {
85             $args = $this->getSelfUrlArgs();
86             if ($this->arg('page') && $this->arg('page') != 1) {
87                 $args['page'] = $this->arg['page'];
88             }
89             common_redirect(common_local_url('peopletagsbyuser', $args), 301);
90             return false;
91         }
92
93         $this->user = User::staticGet('nickname', $nickname);
94
95         if (!$this->user) {
96             // TRANS: Client error displayed trying to perform an action related to a non-existing user.
97             $this->clientError(_('No such user.'), 404);
98             return false;
99         }
100
101         $this->tagger = $this->user->getProfile();
102
103         if (!$this->tagger) {
104             // TRANS: Error message displayed when referring to a user without a profile.
105             $this->serverError(_('User has no profile.'));
106             return false;
107         }
108
109         $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
110
111
112         $offset = ($this->page-1) * PEOPLETAGS_PER_PAGE;
113         $limit  = PEOPLETAGS_PER_PAGE + 1;
114
115         $user = common_current_user();
116         if ($this->arg('public')) {
117             $this->tags = $this->tagger->getLists(false, $offset, $limit);
118         } else if ($this->arg('private')) {
119             if (empty($user)) {
120                 // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
121                 $this->clientError(_('Not logged in.'), 403);
122             }
123
124             if ($this->isOwner()) {
125                 $this->tags = $this->tagger->getPrivateTags($offset, $limit);
126             } else {
127                 // TRANS: Client error displayed when trying view another user's private lists.
128                 $this->clientError(_('You cannot view others\' private lists'), 403);
129             }
130         } else {
131             $this->tags = $this->tagger->getLists(common_current_user(), $offset, $limit);
132         }
133         return true;
134     }
135
136     function handle($args)
137     {
138         parent::handle($args);
139
140                 # Post from the tag dropdown; redirect to a GET
141
142                 if ($_SERVER['REQUEST_METHOD'] == 'POST') {
143                     common_redirect(common_local_url('peopletagsbyuser', $this->getSelfUrlArgs()), 303);
144             return;
145                 }
146
147         $this->showPage();
148     }
149
150     function showModeSelector()
151     {
152         $this->elementStart('dl', array('id'=>'filter_tags'));
153         // TRANS: Mode selector label.
154         $this->element('dt', null, _('Mode'));
155         $this->elementStart('dd');
156         $this->elementStart('ul');
157         $this->elementStart('li', array('id' => 'filter_tags_for',
158                                          'class' => 'child_1'));
159         $this->element('a',
160                        array('href' =>
161                              common_local_url('peopletagsforuser',
162                                               array('nickname' => $this->user->nickname))),
163                        // TRANS: Link text to show lists for user %s.
164                        sprintf(_('Lists for %s'), $this->tagger->nickname));
165         $this->elementEnd('li');
166
167         if ($this->isOwner()) {
168             $this->elementStart('li', array('id'=>'filter_tags_item'));
169             $this->elementStart('form', array('name' => 'modeselector',
170                                                'id' => 'form_filter_bymode',
171                                                'action' => common_local_url('peopletagsbyuser',
172                                                     array('nickname' => $this->tagger->nickname)),
173                                                'method' => 'post'));
174             $this->elementStart('fieldset');
175             // TRANS: Fieldset legend.
176             $this->element('legend', null, _('Select tag to filter'));
177
178             $priv = $this->arg('private');
179             $pub  = $this->arg('public');
180
181             if (!$priv && !$pub) {
182                 $priv = $pub = true;
183             }
184             // TRANS: Checkbox label to show private tags.
185             $this->checkbox('private', _m('LABEL','Private'), $priv,
186                                 // TRANS: Checkbox title.
187                                 _('Show private tags.'));
188             // TRANS: Checkbox label to show public tags.
189             $this->checkbox('public', _m('LABEL','Public'), $pub,
190                                 // TRANS: Checkbox title.
191                                 _('Show public tags.'));
192             $this->hidden('nickname', $this->user->nickname);
193             // TRANS: Submit button text for tag filter form.
194             $this->submit('submit', _m('BUTTON','Go'));
195             $this->elementEnd('fieldset');
196             $this->elementEnd('form');
197             $this->elementEnd('li');
198         }
199         $this->elementEnd('ul');
200         $this->elementEnd('dd');
201         $this->elementEnd('dl');
202     }
203
204     function showAnonymousMessage()
205     {
206         $notice =
207           // TRANS: Message displayed for anonymous users on page that displays lists by a user.
208           // TRANS: This message contains Markdown links in the form [description](links).
209           // TRANS: %s is a tagger nickname.
210           sprintf(_('These are lists created by **%s**. ' .
211                     'Lists are how you sort similar ' .
212                     'people on %%%%site.name%%%%, a [micro-blogging]' .
213                     '(http://en.wikipedia.org/wiki/Micro-blogging) service ' .
214                     'based on the Free Software [StatusNet](http://status.net/) tool. ' .
215                     'You can easily keep track of what they ' .
216                     'are doing by subscribing to the tag\'s timeline.' ), $this->tagger->nickname);
217         $this->elementStart('div', array('id' => 'anon_notice'));
218         $this->raw(common_markup_to_html($notice));
219         $this->elementEnd('div');
220     }
221
222     function showPageNotice()
223     {
224         $this->elementStart('div', 'instructions');
225         $this->showModeSelector();
226         $this->elementEnd('div');
227     }
228
229     function showContent()
230     {
231         #TODO: controls here.
232
233         $pl = new PeopletagList($this->tags, $this);
234         $cnt = $pl->show();
235
236         if ($cnt == 0) {
237             $this->showEmptyListMessage();
238         }
239         $this->pagination($this->page > 1, $cnt > PEOPLETAGS_PER_PAGE,
240                           $this->page, 'peopletagsbyuser', $this->getSelfUrlArgs());
241     }
242
243     function getSelfUrlArgs()
244     {
245         $args = array();
246         if ($this->arg('private')) {
247             $args['private'] = 1;
248         } else if ($this->arg('public')) {
249             $args['public'] = 1;
250         }
251         $args['nickname'] = $this->trimmed('nickname');
252
253         return $args;
254     }
255
256     function isOwner()
257     {
258         $user = common_current_user();
259         return !empty($user) && $user->id == $this->tagger->id;
260     }
261
262     function showObjectNav()
263     {
264         $nav = new PeopletagNav($this, $this->tagger);
265         $nav->show();
266     }
267
268     function showEmptyListMessage()
269     {
270           // TRANS: Message displayed on page that displays lists by a user when there are none.
271           // TRANS: This message contains Markdown links in the form [description](links).
272           // TRANS: %s is a tagger nickname.
273         $message = sprintf(_('%s has not created any [lists](%%%%doc.lists%%%%) yet.'), $this->tagger->nickname);
274         $this->elementStart('div', 'guide');
275         $this->raw(common_markup_to_html($message));
276         $this->elementEnd('div');
277     }
278
279     function showProfileBlock()
280     {
281         $block = new AccountProfileBlock($this, $this->tagger);
282         $block->show();
283     }
284
285     function showSections()
286     {
287         #TODO: tags with most subscribers
288         #TODO: tags with most "members"
289     }
290 }