2008-05-06 16:17:29 +01:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, Inc.
|
|
|
|
*
|
|
|
|
* 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
|
2008-12-23 19:19:07 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2008-05-06 16:17:29 +01:00
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
2008-12-23 19:19:07 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2008-05-06 16:17:29 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
|
|
|
|
|
|
|
require_once(INSTALLDIR.'/lib/stream.php');
|
|
|
|
require_once(INSTALLDIR.'/lib/profilelist.php');
|
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
class FeaturedAction extends StreamAction
|
|
|
|
{
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function handle($args)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
parent::handle($args);
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
common_show_header(_('Featured users'),
|
2008-12-23 19:21:29 +00:00
|
|
|
array($this, 'show_header'), null,
|
2008-12-23 19:19:07 +00:00
|
|
|
array($this, 'show_top'));
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$this->show_notices($page);
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
common_show_footer();
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function show_top()
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$instr = $this->get_instructions();
|
|
|
|
$output = common_markup_to_html($instr);
|
|
|
|
common_element_start('div', 'instructions');
|
|
|
|
common_raw($output);
|
|
|
|
common_element_end('div');
|
|
|
|
$this->public_views_menu();
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function show_header()
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function get_instructions()
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
return _('Featured users');
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function show_notices($page)
|
|
|
|
{
|
2008-05-06 16:17:29 +01: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-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$featured_nicks = common_config('nickname', 'featured');
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (count($featured_nicks) > 0) {
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$quoted = array();
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
foreach ($featured_nicks as $nick) {
|
|
|
|
$quoted[] = "'$nick'";
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$user = new User;
|
|
|
|
$user->whereAdd(sprintf('nickname IN (%s)', implode(',', $quoted)));
|
|
|
|
$user->limit(($page - 1) * PROFILES_PER_PAGE, PROFILES_PER_PAGE + 1);
|
|
|
|
$user->orderBy('user.nickname ASC');
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$user->find();
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$profile_ids = array();
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
while ($user->fetch()) {
|
|
|
|
$profile_ids[] = $user->id;
|
|
|
|
}
|
2008-05-06 16:17:29 +01: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-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$cnt = $profile->find();
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($cnt > 0) {
|
|
|
|
$featured = new ProfileList($profile);
|
|
|
|
$featured->show_list();
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$profile->free();
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
common_pagination($page > 1, $cnt > PROFILES_PER_PAGE, $page, 'featured');
|
|
|
|
}
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
|
|
|
}
|