. /** * List of popular notices * * @category Public * @package GNUsocial * @author Zach Copley * @author Evan Prodromou * @copyright 2008-2009 StatusNet, Inc. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ defined('GNUSOCIAL') || die(); class FavoritedSliceAction extends FavoritedAction { private $includeUsers = []; private $excludeUsers = []; /** * Take arguments for running * * @param array $args $_REQUEST args * * @return boolean success flag * * @todo move queries from showContent() to here */ public function prepare(array $args = []) { parent::prepare($args); $this->slice = $this->arg('slice', 'default'); $data = array(); if (Event::handle('SlicedFavoritesGetSettings', array($this->slice, &$data))) { // TRANS: Client exception. throw new ClientException(_m('Unknown favorites slice.')); } if (isset($data['include'])) { $this->includeUsers = $data['include']; } if (isset($data['exclude'])) { $this->excludeUsers = $data['exclude']; } return true; } /** * Content area * * Shows the list of popular notices * * @return void */ public function showContent() { $slice = $this->sliceWhereClause(); if (!$slice) { return parent::showContent(); } $weightexpr = common_sql_weight('fave.modified', common_config('popular', 'dropoff')); $cutoff = sprintf( "fave.modified > CURRENT_TIMESTAMP - INTERVAL '%d' SECOND", common_config('popular', 'cutoff') ); $offset = ($this->page - 1) * NOTICES_PER_PAGE; $limit = NOTICES_PER_PAGE + 1; $qry = <<show(); if ($cnt == 0) { $this->showEmptyList(); } $this->pagination( $this->page > 1, $cnt > NOTICES_PER_PAGE, $this->page, 'favorited' ); } private function sliceWhereClause() { $include = $this->nicknamesToIds($this->includeUsers); $exclude = $this->nicknamesToIds($this->excludeUsers); $sql = []; if (count($include) > 0) { $sql[] = 'notice.profile_id IN (' . implode(',', $include) . ')'; } if (count($exclude) > 0) { $sql[] = 'notice.profile_id NOT IN (' . implode(',', $exclude) . ')'; } return implode(' AND ', $sql) ?: false; } /** * * @param array $nicks array of user nicknames * @return array of profile/user IDs */ private function nicknamesToIds($nicks) { $ids = array(); foreach ($nicks as $nick) { // not the most efficient way for a big list! $user = User::getKV('nickname', $nick); if ($user) { $ids[] = intval($user->id); } } return $ids; } }