X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=inline;f=actions%2Ffavorited.php;h=c902d80f5387e2e5c4f9f50a770864380c9cbd94;hb=b4e649fe906a793cd5e62d6390065ea5d41c40db;hp=71a9e026e5a7f863c6fa517de644b94449e704d1;hpb=02877224b20f87af304553f739b69544d7ac4cfa;p=quix0rs-gnu-social.git diff --git a/actions/favorited.php b/actions/favorited.php index 71a9e026e5..c902d80f53 100644 --- a/actions/favorited.php +++ b/actions/favorited.php @@ -1,105 +1,224 @@ . + * along with this program. If not, see . + * + * @category Public + * @package Laconica + * @author Zach Copley + * @author Evan Prodromou + * @copyright 2008-2009 Control Yourself, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://laconi.ca/ */ -if (!defined('LACONICA')) { exit(1); } +if (!defined('LACONICA')) { + exit(1); +} -require_once(INSTALLDIR.'/lib/stream.php'); +require_once INSTALLDIR.'/lib/publicgroupnav.php'; +require_once INSTALLDIR.'/lib/noticelist.php'; -class FavoritedAction extends StreamAction +/** + * List of popular notices + * + * We provide a list of the most popular notices. Popularity + * is measured by + * + * @category Personal + * @package Laconica + * @author Zach Copley + * @author Evan Prodromou + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://laconi.ca/ + */ + +class FavoritedAction extends Action { + var $page = null; - function handle($args) + /** + * Title of the page + * + * @return string Title of the page + */ + + function title() { - parent::handle($args); + if ($this->page == 1) { + return _('Popular notices'); + } else { + return sprintf(_('Popular notices, page %d'), $this->page); + } + } - $page = ($this->arg('page')) ? ($this->arg('page')+0) : 1; + /** + * Instructions for use + * + * @return instructions for use + */ - common_show_header(_('Popular notices'), - array($this, 'show_header'), null, - array($this, 'show_top')); + function getInstructions() + { + return _('The most popular notices on the site right now.'); + } - $this->show_notices($page); + /** + * Is this page read-only? + * + * @return boolean true + */ - common_show_footer(); + function isReadOnly($args) + { + return true; } - function show_top() + /** + * Take arguments for running + * + * @param array $args $_REQUEST args + * + * @return boolean success flag + * + * @todo move queries from showContent() to here + */ + + function prepare($args) { - $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(); + parent::prepare($args); + $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1; + + common_set_returnto($this->selfUrl()); + + return true; } - function show_header() + /** + * Handle request + * + * Shows a page with list of favorite notices + * + * @param array $args $_REQUEST args; handled in prepare() + * + * @return void + */ + + function handle($args) { - return; + parent::handle($args); + + $this->showPage(); } - function get_instructions() + /** + * Show the page notice + * + * Shows instructions for the page + * + * @return void + */ + + function showPageNotice() { - return _('Showing recently popular notices'); + $instr = $this->getInstructions(); + $output = common_markup_to_html($instr); + + $this->elementStart('div', 'instructions'); + $this->raw($output); + $this->elementEnd('div'); } - function show_notices($page) + function showEmptyList() { + $message = _('Favorite notices appear on this page but no one has favorited one yet.') . ' '; - $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'; + if (common_logged_in()) { + $message .= _('Be the first to add a notice to your favorites by clicking the fave button next to any notice you like.'); + } + else { + $message .= _('Why not [register an account](%%action.register%%) and be the first to add a notice to your favorites!'); + } - $offset = ($page - 1) * NOTICES_PER_PAGE; - $limit = NOTICES_PER_PAGE + 1; + $this->elementStart('div', 'guide'); + $this->raw(common_markup_to_html($message)); + $this->elementEnd('div'); + } - if (common_config('db','type') == 'pgsql') { - $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; + /** + * 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() + { + if (common_config('db', 'type') == 'pgsql') { + $weightexpr='sum(exp(-extract(epoch from (now() - fave.modified)) / %s))'; } else { - $qry .= ' LIMIT ' . $offset . ', ' . $limit; + $weightexpr='sum(exp(-(now() - fave.modified) / %s))'; } - # Figure out how to cache this query + $qry = 'SELECT notice.*, '. + $weightexpr . ' as weight ' . + 'FROM notice JOIN fave ON notice.id = fave.notice_id ' . + 'GROUP BY id,profile_id,uri,content,rendered,url,created,notice.modified,reply_to,is_local,source ' . + 'ORDER BY weight DESC'; - $notice = new Notice; - $notice->query(sprintf($qry, common_config('popular', 'dropoff'))); + $offset = ($this->page - 1) * NOTICES_PER_PAGE; + $limit = NOTICES_PER_PAGE + 1; - common_element_start('ul', array('id' => 'notices')); + if (common_config('db', 'type') == 'pgsql') { + $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; + } else { + $qry .= ' LIMIT ' . $offset . ', ' . $limit; + } - $cnt = 0; + $notice = Memcached_DataObject::cachedQuery('Notice', + sprintf($qry, common_config('popular', 'dropoff')), + 600); - while ($notice->fetch() && $cnt <= NOTICES_PER_PAGE) { - $cnt++; + $nl = new NoticeList($notice, $this); - if ($cnt > NOTICES_PER_PAGE) { - break; - } + $cnt = $nl->show(); - $item = new NoticeListItem($notice); - $item->show(); + if ($cnt == 0) { + $this->showEmptyList(); } - common_element_end('ul'); - - common_pagination($page > 1, $cnt > NOTICES_PER_PAGE, - $page, 'favorited'); + $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE, + $this->page, 'favorited'); } - }