123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 |
- <?php
- /**
- * StatusNet, the distributed open-source microblogging tool
- *
- * Lists by a user
- *
- * PHP version 5
- *
- * LICENCE: This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @category Personal
- * @package StatusNet
- * @author Shashi Gowda <connect2shashi@gmail.com>
- * @copyright 2008-2011 StatusNet, Inc.
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link http://status.net/
- */
- if (!defined('STATUSNET') && !defined('LACONICA')) {
- exit(1);
- }
- require_once INSTALLDIR.'/lib/peopletaglist.php';
- class PeopletagsbyuserAction extends Action
- {
- var $page = null;
- var $tagger = null;
- var $tags = null;
- function isReadOnly($args)
- {
- return true;
- }
- function title()
- {
- if ($this->page == 1) {
- if ($this->isOwner()) {
- if ($this->arg('private')) {
- // TRANS: Title for lists by a user page for a private tag.
- return _('Private lists by you');
- } else if ($this->arg('public')) {
- // TRANS: Title for lists by a user page for a public tag.
- return _('Public lists by you');
- }
- // TRANS: Title for lists by a user page.
- return _('Lists by you');
- }
- // TRANS: Title for lists by a user page.
- // TRANS: %s is a user nickname.
- return sprintf(_('Lists by %s'), $this->tagger->nickname);
- } else {
- // TRANS: Title for lists by a user page.
- // TRANS: %1$s is a user nickname, %2$d is a page number.
- return sprintf(_('Lists by %1$s, page %2$d'), $this->tagger->nickname, $this->page);
- }
- }
- function prepare(array $args = array())
- {
- parent::prepare($args);
- if ($this->arg('public') && $this->arg('private')) {
- $this->args['public'] = $this->args['private'] = false;
- }
- if (common_config('singleuser', 'enabled')) {
- $nickname_arg = User::singleUserNickname();
- } else {
- $nickname_arg = $this->arg('nickname');
- }
- $nickname = common_canonical_nickname($nickname_arg);
- // Permanent redirect on non-canonical nickname
- if ($nickname_arg != $nickname) {
- $args = $this->getSelfUrlArgs();
- if ($this->arg('page') && $this->arg('page') != 1) {
- $args['page'] = $this->arg['page'];
- }
- common_redirect(common_local_url('peopletagsbyuser', $args), 301);
- }
- $this->user = User::getKV('nickname', $nickname);
- if (!$this->user) {
- // TRANS: Client error displayed trying to perform an action related to a non-existing user.
- $this->clientError(_('No such user.'), 404);
- }
- $this->tagger = $this->user->getProfile();
- if (!$this->tagger) {
- // TRANS: Error message displayed when referring to a user without a profile.
- $this->serverError(_('User has no profile.'));
- }
- $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
- $offset = ($this->page-1) * PEOPLETAGS_PER_PAGE;
- $limit = PEOPLETAGS_PER_PAGE + 1;
- $user = common_current_user();
- if ($this->arg('public')) {
- $this->tags = $this->tagger->getLists(null, $offset, $limit);
- } else if ($this->arg('private')) {
- if (empty($user)) {
- // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
- $this->clientError(_('Not logged in.'), 403);
- }
- if ($this->isOwner()) {
- $this->tags = $this->tagger->getPrivateTags($offset, $limit);
- } else {
- // TRANS: Client error displayed when trying view another user's private lists.
- $this->clientError(_('You cannot view others\' private lists'), 403);
- }
- } else {
- $this->tags = $this->tagger->getLists($this->scoped, $offset, $limit);
- }
- return true;
- }
- function handle()
- {
- parent::handle();
- # Post from the tag dropdown; redirect to a GET
- if ($_SERVER['REQUEST_METHOD'] == 'POST') {
- common_redirect(common_local_url('peopletagsbyuser', $this->getSelfUrlArgs()), 303);
- }
- $this->showPage();
- }
- function showModeSelector()
- {
- $this->elementStart('dl', array('id'=>'filter_tags'));
- // TRANS: Mode selector label.
- $this->element('dt', null, _('Mode'));
- $this->elementStart('dd');
- $this->elementStart('ul');
- $this->elementStart('li', array('id' => 'filter_tags_for',
- 'class' => 'child_1'));
- $this->element('a',
- array('href' =>
- common_local_url('peopletagsforuser',
- array('nickname' => $this->user->nickname))),
- // TRANS: Link text to show lists for user %s.
- sprintf(_('Lists for %s'), $this->tagger->nickname));
- $this->elementEnd('li');
- if ($this->isOwner()) {
- $this->elementStart('li', array('id'=>'filter_tags_item'));
- $this->elementStart('form', array('name' => 'modeselector',
- 'id' => 'form_filter_bymode',
- 'action' => common_local_url('peopletagsbyuser',
- array('nickname' => $this->tagger->nickname)),
- 'method' => 'post'));
- $this->elementStart('fieldset');
- // TRANS: Fieldset legend.
- $this->element('legend', null, _('Select tag to filter'));
- $priv = $this->arg('private');
- $pub = $this->arg('public');
- if (!$priv && !$pub) {
- $priv = $pub = true;
- }
- // TRANS: Checkbox label to show private tags.
- $this->checkbox('private', _m('LABEL','Private'), $priv,
- // TRANS: Checkbox title.
- _('Show private tags.'));
- // TRANS: Checkbox label to show public tags.
- $this->checkbox('public', _m('LABEL','Public'), $pub,
- // TRANS: Checkbox title.
- _('Show public tags.'));
- $this->hidden('nickname', $this->user->nickname);
- // TRANS: Submit button text for tag filter form.
- $this->submit('submit', _m('BUTTON','Go'));
- $this->elementEnd('fieldset');
- $this->elementEnd('form');
- $this->elementEnd('li');
- }
- $this->elementEnd('ul');
- $this->elementEnd('dd');
- $this->elementEnd('dl');
- }
- function showAnonymousMessage()
- {
- $notice =
- // TRANS: Message displayed for anonymous users on page that displays lists by a user.
- // TRANS: This message contains Markdown links in the form [description](links).
- // TRANS: %s is a tagger nickname.
- sprintf(_('These are lists created by **%s**. ' .
- 'Lists are how you sort similar ' .
- 'people on %%%%site.name%%%%, a [micro-blogging]' .
- '(http://en.wikipedia.org/wiki/Micro-blogging) service ' .
- 'based on the Free Software [StatusNet](http://status.net/) tool. ' .
- 'You can easily keep track of what they ' .
- 'are doing by subscribing to the list\'s timeline.' ), $this->tagger->nickname);
- $this->elementStart('div', array('id' => 'anon_notice'));
- $this->raw(common_markup_to_html($notice));
- $this->elementEnd('div');
- }
- function showPageNotice()
- {
- $this->elementStart('div', 'instructions');
- $this->showModeSelector();
- $this->elementEnd('div');
- }
- function showContent()
- {
- #TODO: controls here.
- $pl = new PeopletagList($this->tags, $this);
- $cnt = $pl->show();
- if ($cnt == 0) {
- $this->showEmptyListMessage();
- }
- $this->pagination($this->page > 1, $cnt > PEOPLETAGS_PER_PAGE,
- $this->page, 'peopletagsbyuser', $this->getSelfUrlArgs());
- }
- function getSelfUrlArgs()
- {
- $args = array();
- if ($this->arg('private')) {
- $args['private'] = 1;
- } else if ($this->arg('public')) {
- $args['public'] = 1;
- }
- $args['nickname'] = $this->trimmed('nickname');
- return $args;
- }
- function isOwner()
- {
- $user = common_current_user();
- return !empty($user) && $user->id == $this->tagger->id;
- }
- function showObjectNav()
- {
- $nav = new PeopletagNav($this, $this->tagger);
- $nav->show();
- }
- function showEmptyListMessage()
- {
- // TRANS: Message displayed on page that displays lists by a user when there are none.
- // TRANS: This message contains Markdown links in the form [description](links).
- // TRANS: %s is a tagger nickname.
- $message = sprintf(_('%s has not created any [lists](%%%%doc.lists%%%%) yet.'), $this->tagger->nickname);
- $this->elementStart('div', 'guide');
- $this->raw(common_markup_to_html($message));
- $this->elementEnd('div');
- }
- function showProfileBlock()
- {
- $block = new AccountProfileBlock($this, $this->tagger);
- $block->show();
- }
- function showSections()
- {
- #TODO: tags with most subscribers
- #TODO: tags with most "members"
- }
- }
|