2008-11-20 07:19:30 +00:00
|
|
|
<?php
|
2009-01-19 17:49:12 +00:00
|
|
|
/**
|
2009-08-25 23:12:20 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2008-11-20 07:19:30 +00:00
|
|
|
*
|
2009-01-19 17:49:12 +00:00
|
|
|
* List of featured users
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
2008-11-20 07:19:30 +00:00
|
|
|
* 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
|
2009-01-19 17:49:12 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2008-11-20 07:19:30 +00:00
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
2009-01-19 17:49:12 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @category Public
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-08-25 23:12:20 +01:00
|
|
|
* @copyright 2008-2009 StatusNet, Inc.
|
2009-01-19 17:49:12 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2008-11-20 07:19:30 +00:00
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-01-19 17:49:12 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2009-06-17 16:21:53 +01:00
|
|
|
require_once INSTALLDIR.'/lib/profilelist.php';
|
2009-01-19 17:49:12 +00:00
|
|
|
require_once INSTALLDIR.'/lib/publicgroupnav.php';
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2009-01-19 17:49:12 +00:00
|
|
|
/**
|
|
|
|
* List of featured users
|
|
|
|
*
|
|
|
|
* @category Public
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-01-19 17:49:12 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-19 17:49:12 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class FeaturedAction extends Action
|
2008-12-23 19:49:23 +00:00
|
|
|
{
|
2009-01-19 17:49:12 +00:00
|
|
|
var $page = null;
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2009-04-13 20:49:26 +01:00
|
|
|
function isReadOnly($args)
|
2009-01-19 18:09:59 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-01-19 17:49:12 +00:00
|
|
|
function prepare($args)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-19 17:49:12 +00:00
|
|
|
parent::prepare($args);
|
|
|
|
$this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2009-01-19 17:49:12 +00:00
|
|
|
return true;
|
|
|
|
}
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2009-01-19 17:49:12 +00:00
|
|
|
function title()
|
|
|
|
{
|
|
|
|
if ($this->page == 1) {
|
|
|
|
return _('Featured users');
|
|
|
|
} else {
|
|
|
|
return sprintf(_('Featured users, page %d'), $this->page);
|
|
|
|
}
|
|
|
|
}
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2009-01-19 17:49:12 +00:00
|
|
|
function handle($args)
|
|
|
|
{
|
|
|
|
parent::handle($args);
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2009-01-19 17:49:12 +00:00
|
|
|
$this->showPage();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2009-01-19 17:49:12 +00:00
|
|
|
function showPageNotice()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-19 17:49:12 +00:00
|
|
|
$instr = $this->getInstructions();
|
2008-12-23 19:19:07 +00:00
|
|
|
$output = common_markup_to_html($instr);
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('div', 'instructions');
|
|
|
|
$this->raw($output);
|
|
|
|
$this->elementEnd('div');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2009-01-19 17:49:12 +00:00
|
|
|
function showLocalNav()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-19 17:49:12 +00:00
|
|
|
$nav = new PublicGroupNav($this);
|
|
|
|
$nav->show();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-11-21 00:53:38 +00:00
|
|
|
|
2009-01-19 17:49:12 +00:00
|
|
|
function getInstructions()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-12-20 19:20:35 +00:00
|
|
|
return sprintf(_('A selection of some great users on %s'),
|
2009-01-19 17:49:12 +00:00
|
|
|
common_config('site', 'name'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-11-20 21:45:57 +00:00
|
|
|
|
2009-01-19 17:49:12 +00:00
|
|
|
function showContent()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
// XXX: Note I'm doing it this two-stage way because a raw query
|
|
|
|
// with a JOIN was *not* working. --Zach
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$featured_nicks = common_config('nickname', 'featured');
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (count($featured_nicks) > 0) {
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$quoted = array();
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
foreach ($featured_nicks as $nick) {
|
|
|
|
$quoted[] = "'$nick'";
|
|
|
|
}
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$user = new User;
|
|
|
|
$user->whereAdd(sprintf('nickname IN (%s)', implode(',', $quoted)));
|
2009-01-19 17:49:12 +00:00
|
|
|
$user->limit(($this->page - 1) * PROFILES_PER_PAGE, PROFILES_PER_PAGE + 1);
|
2009-03-16 21:36:12 +00:00
|
|
|
$user->orderBy(common_database_tablename('user') .'.nickname ASC');
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$user->find();
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$profile_ids = array();
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
while ($user->fetch()) {
|
|
|
|
$profile_ids[] = $user->id;
|
|
|
|
}
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$profile = new Profile;
|
|
|
|
$profile->whereAdd(sprintf('profile.id IN (%s)', implode(',', $profile_ids)));
|
|
|
|
$profile->orderBy('nickname ASC');
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$cnt = $profile->find();
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($cnt > 0) {
|
2009-06-17 16:21:53 +01:00
|
|
|
$featured = new ProfileList($profile, $this);
|
2009-01-19 17:49:12 +00:00
|
|
|
$featured->show();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$profile->free();
|
2008-11-20 07:19:30 +00:00
|
|
|
|
2009-01-19 17:49:12 +00:00
|
|
|
$this->pagination($this->page > 1, $cnt > PROFILES_PER_PAGE,
|
|
|
|
$this->page, 'featured');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
2009-03-16 21:25:47 +00:00
|
|
|
}
|