gnu-social/plugins/Directory/actions/userdirectory.php

292 lines
6.7 KiB
PHP
Raw Normal View History

2011-03-02 03:35:20 +00:00
<?php
/**
* StatusNet, the distributed open-source microblogging tool
*
* Output a user directory
*
* 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 Public
* @package StatusNet
* @author Zach Copley <zach@status.net>
* @copyright 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'))
{
exit(1);
}
require_once INSTALLDIR . '/lib/publicgroupnav.php';
/**
* User directory
*
* @category Personal
* @package StatusNet
* @author Zach Copley <zach@status.net>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
class UserdirectoryAction extends Action
{
/**
2011-03-05 01:55:56 +00:00
* The page we're on
*
* @var integer
*/
2011-03-02 03:35:20 +00:00
protected $page = null;
/**
2011-03-05 01:55:56 +00:00
* what to filter the search results by
*
* @var string
*/
2011-03-02 03:35:20 +00:00
protected $filter = null;
/**
* Title of the page
*
* @return string Title of the page
*/
function title()
{
// @fixme: This looks kinda gross
if ($this->filter == 'all') {
2011-03-02 03:35:20 +00:00
if ($this->page != 1) {
return(sprintf(_m('All users, page %d'), $this->page));
}
return _m('All users');
}
if ($this->page == 1) {
return sprintf(
_m('Users with nicknames beginning with %s'),
$this->filter
);
} else {
return sprintf(
_m('Users with nicknames starting with %s, page %d'),
$this->filter,
$this->page
);
}
}
/**
* Instructions for use
*
* @return instructions for use
*/
function getInstructions()
{
return _('User directory');
}
/**
* Is this page read-only?
*
* @return boolean true
*/
function isReadOnly($args)
{
return true;
}
/**
* Take arguments for running
*
* @param array $args $_REQUEST args
*
* @return boolean success flag
*/
function prepare($args)
{
parent::prepare($args);
$this->page = ($this->arg('page')) ? ($this->arg('page') + 0) : 1;
2011-03-05 01:25:58 +00:00
$filter = $this->arg('filter');
$this->filter = isset($filter) ? $filter : 'all';
$this->sort = $this->arg('sort');
$this->order = $this->boolean('asc'); // ascending or decending
2011-03-02 03:35:20 +00:00
common_set_returnto($this->selfUrl());
return true;
}
/**
* Handle request
*
* Shows the page
*
* @param array $args $_REQUEST args; handled in prepare()
*
* @return void
*/
function handle($args)
{
parent::handle($args);
$this->showPage();
}
/**
* Show the page notice
*
* Shows instructions for the page
*
* @return void
*/
function showPageNotice()
{
$instr = $this->getInstructions();
$output = common_markup_to_html($instr);
$this->elementStart('div', 'instructions');
$this->raw($output);
$this->elementEnd('div');
}
/**
* Local navigation
*
* This page is part of the public group, so show that.
*
* @return void
*/
function showLocalNav()
{
$nav = new PublicGroupNav($this);
$nav->show();
}
/**
* Content area
*
* Shows the list of popular notices
*
* @return void
*/
function showContent()
{
// XXX Need search bar
$this->elementStart('div', array('id' => 'user_directory'));
2011-03-02 03:35:20 +00:00
$alphaNav = new AlphaNav($this, true, array('All'));
$alphaNav->show();
// XXX Maybe use a more specialized version of ProfileList here
$profile = $this->getUsers();
$cnt = 0;
if (!empty($profile)) {
$profileList = new SortableSubscriptionList(
2011-03-02 03:35:20 +00:00
$profile,
common_current_user(),
$this
);
$cnt = $profileList->show();
if (0 == $cnt) {
$this->showEmptyListMessage();
}
}
$this->pagination(
$this->page > 1,
$cnt > PROFILES_PER_PAGE,
$this->page,
'userdirectory',
array('filter' => $this->filter)
);
$this->elementEnd('div');
2011-03-02 03:35:20 +00:00
}
/*
2011-03-05 01:55:56 +00:00
* Get users filtered by the current filter, sort key,
* sort order, and page
2011-03-02 03:35:20 +00:00
*/
function getUsers()
{
$profile = new Profile();
2011-03-05 01:25:58 +00:00
$offset = ($this->page - 1) * PROFILES_PER_PAGE;
$limit = PROFILES_PER_PAGE + 1;
$sort = $this->getSortKey();
$sql = 'SELECT profile.* FROM profile, user WHERE profile.id = user.id';
if ($this->filter != 'all') {
2011-03-05 01:25:58 +00:00
$sql .= sprintf(
' AND LEFT(LOWER(profile.nickname), 1) = \'%s\'',
$this->filter
2011-03-02 03:35:20 +00:00
);
}
2011-03-05 01:25:58 +00:00
$sql .= sprintf(
' ORDER BY profile.%s %s, profile.nickname DESC LIMIT %d, %d',
$sort,
($this->order) ? 'ASC' : 'DESC',
$offset,
$limit
);
2011-03-05 01:25:58 +00:00
$profile->query($sql);
2011-03-02 03:35:20 +00:00
return $profile;
}
/**
* Filter the sort parameter
*
* @return string a column name for sorting
*/
function getSortKey()
{
switch ($this->sort) {
case 'nickname':
return $this->sort;
break;
case 'created':
return $this->sort;
break;
default:
return 'nickname';
}
}
2011-03-02 03:35:20 +00:00
/**
* Show a nice message when there's no search results
*/
function showEmptyListMessage()
{
2011-03-05 01:55:56 +00:00
$message = sprintf(_m('No users starting with **%s**'), $this->filter);
2011-03-02 03:35:20 +00:00
$this->elementStart('div', 'guide');
$this->raw(common_markup_to_html($message));
$this->elementEnd('div');
}
}