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');
|
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
class FavoritedAction 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(_('Popular notices'),
|
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-05-06 16:17:29 +01:00
|
|
|
return;
|
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 _('Showing recently popular notices');
|
|
|
|
}
|
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
|
|
|
$qry = 'SELECT notice.*, sum(exp(-(now() - fave.modified) / %s)) as weight ' .
|
|
|
|
'FROM notice JOIN fave ON notice.id = fave.notice_id ' .
|
|
|
|
'GROUP BY fave.notice_id ' .
|
|
|
|
'ORDER BY weight DESC';
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$offset = ($page - 1) * NOTICES_PER_PAGE;
|
|
|
|
$limit = NOTICES_PER_PAGE + 1;
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (common_config('db','type') == 'pgsql') {
|
|
|
|
$qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
|
|
|
|
} else {
|
|
|
|
$qry .= ' LIMIT ' . $offset . ', ' . $limit;
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# Figure out how to cache this query
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$notice = new Notice;
|
|
|
|
$notice->query(sprintf($qry, common_config('popular', 'dropoff')));
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
common_element_start('ul', array('id' => 'notices'));
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$cnt = 0;
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
while ($notice->fetch() && $cnt <= NOTICES_PER_PAGE) {
|
|
|
|
$cnt++;
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($cnt > NOTICES_PER_PAGE) {
|
|
|
|
break;
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
|
|
|
$item = new NoticeListItem($notice);
|
|
|
|
$item->show();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
common_element_end('ul');
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
common_pagination($page > 1, $cnt > NOTICES_PER_PAGE,
|
|
|
|
$page, 'favorited');
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
|
|
|
}
|