'latest-videos', 12 => 'most-comments', 13 => 'missing-screenshots' ); private $page = ''; private $rss = false; private $feedData = []; public function __construct($pageCall, $pageParam) { $this->getCategoryFromUrl($pageParam); parent::__construct($pageCall, $pageParam); $this->page = $pageCall; $this->rss = isset($_GET['rss']); if ($this->page != 'random') $this->name = Lang::main('utilities', array_search($pageCall, $this->validPages)); if ($this->page == 'most-comments') { if ($this->category && in_array($this->category[0], [7, 30])) $this->name .= Lang::main('colon') . sprintf(Lang::main('mostComments', 1), $this->category[0]); else $this->name .= Lang::main('colon') . Lang::main('mostComments', 0); } $this->lvTabs = []; } public function display($override = '') { if ($this->rss) // this should not be cached { header('Content-Type: application/rss+xml; charset=UTF-8'); die($this->generateRSS()); } else return parent::display($override); } protected function generateContent() { /****************/ /* Main Content */ /****************/ if (in_array(array_search($this->page, $this->validPages), [0, 1, 2, 3, 11, 12])) $this->h1Links = ''.Lang::main('subscribe').''; switch ($this->page) { case 'random': $type = array_rand(array_filter(Util::$typeClasses)); $typeId = (new Util::$typeClasses[$type](null))->getRandomId(); header('Location: ?'.Util::$typeStrings[$type].'='.$typeId, true, 302); die(); case 'latest-comments': // rss $data = CommunityContent::getCommentPreviews(); if ($this->rss) { foreach ($data as $d) { // todo (low): preview should be html-formated $this->feedData[] = array( 'title' => [true, [], Util::ucFirst(Lang::game(Util::$typeStrings[$d['type']])).Lang::main('colon').htmlentities($d['subject'])], 'link' => [false, [], HOST_URL.'/?go-to-comment&id='.$d['id']], 'description' => [true, [], htmlentities($d['preview'])."

".sprintf(Lang::main('byUserTimeAgo'), $d['user'], Util::formatTime($d['elapsed'] * 1000, true))], 'pubDate' => [false, [], date(DATE_RSS, time() - $d['elapsed'])], 'guid' => [false, [], HOST_URL.'/?go-to-comment&id='.$d['id']] // 'domain' => [false, [], null] ); } } else $this->lvTabs[] = ['commentpreview', ['data' => $data]]; break; case 'latest-screenshots': // rss $data = CommunityContent::getScreenshots(); if ($this->rss) { foreach ($data as $d) { $desc = ''; if ($d['caption']) $desc .= '
'.$d['caption']; $desc .= "

".sprintf(Lang::main('byUserTimeAgo'), $d['user'], Util::formatTime($d['elapsed'] * 1000, true)); // enclosure/length => filesize('static/uploads/screenshots/thumb/'.$d['id'].'.jpg') .. always set to this placeholder value though $this->feedData[] = array( 'title' => [true, [], Util::ucFirst(Lang::game(Util::$typeStrings[$d['type']])).Lang::main('colon').htmlentities($d['subject'])], 'link' => [false, [], HOST_URL.'/?'.Util::$typeStrings[$d['type']].'='.$d['typeId'].'#screenshots:id='.$d['id']], 'description' => [true, [], $desc], 'pubDate' => [false, [], date(DATE_RSS, time() - $d['elapsed'])], 'enclosure' => [false, ['url' => STATIC_URL.'/uploads/screenshots/thumb/'.$d['id'].'.jpg', 'length' => 12345, 'type' => 'image/jpeg'], null], 'guid' => [false, [], HOST_URL.'/?'.Util::$typeStrings[$d['type']].'='.$d['typeId'].'#screenshots:id='.$d['id']], // 'domain' => [false, [], live|ptr] ); } } else $this->lvTabs[] = ['screenshot', ['data' => $data]]; break; case 'latest-videos': // rss $data = CommunityContent::getVideos(); if ($this->rss) { foreach ($data as $d) { $desc = ''; if ($d['caption']) $desc .= '
'.$d['caption']; $desc .= "

".sprintf(Lang::main('byUserTimeAgo'), $d['user'], Util::formatTime($d['elapsed'] * 1000, true)); // is enclosure/length .. is this even relevant..? $this->feedData[] = array( 'title' => [true, [], Util::ucFirst(Lang::game(Util::$typeStrings[$d['type']])).Lang::main('colon').htmlentities($row['subject'])], 'link' => [false, [], HOST_URL.'/?'.Util::$typeStrings[$d['type']].'='.$d['typeId'].'#videos:id='.$d['id']], 'description' => [true, [], $desc], 'pubDate' => [false, [], date(DATE_RSS, time() - $row['elapsed'])], 'enclosure' => [false, ['url' => '//i3.ytimg.com/vi/'.$d['videoId'].'/default.jpg', 'length' => 12345, 'type' => 'image/jpeg'], null], 'guid' => [false, [], HOST_URL.'/?'.Util::$typeStrings[$d['type']].'='.$d['typeId'].'#videos:id='.$d['id']], // 'domain' => [false, [], live|ptr] ); } } else $this->lvTabs[] = ['video', ['data' => $data]]; break; case 'latest-articles': // rss $this->lvTabs = []; break; case 'latest-additions': // rss $extraText = ''; break; case 'unrated-comments': $this->lvTabs[] = ['commentpreview', ['data' => []]]; break; case 'missing-screenshots': // limit to 200 entries each (it generates faster, consumes less memory and should be enough options) $cnd = [[['cuFlags', CUSTOM_HAS_SCREENSHOT, '&'], 0], 200]; if (!User::isInGroup(U_GROUP_EMPLOYEE)) $cnd[] = [['cuFlags', CUSTOM_EXCLUDE_FOR_LISTVIEW, '&'], 0]; foreach (Util::$typeClasses as $type => $classStr) { if (!$classStr) continue; if (!($classStr::$contribute & CONTRIBUTE_SS)) continue; $typeObj = new $classStr($cnd); if (!$typeObj->error) { $this->extendGlobalData($typeObj->getJSGlobals(GLOBALINFO_ANY)); $this->lvTabs[] = [$typeObj::$brickFile, ['data' => array_values($typeObj->getListviewData())]]; } } break; case 'most-comments': // rss if ($this->category && !in_array($this->category[0], [1, 7, 30])) header('Location: ?most-comments=1'.($this->rss ? '&rss' : null), true, 302); $tabBase = array( 'extraCols' => ["\$Listview.funcBox.createSimpleCol('ncomments', 'tab_comments', '10%', 'ncomments')"], 'sort' => ['-ncomments'] ); foreach (Util::$typeClasses as $type => $classStr) { if (!$classStr) continue; $comments = DB::Aowow()->selectCol(' SELECT `typeId` AS ARRAY_KEY, count(1) FROM ?_comments WHERE `replyTo` = 0 AND (`flags` & ?d) = 0 AND `type`= ?d AND `date` > (UNIX_TIMESTAMP() - ?d) GROUP BY `type`, `typeId` LIMIT 100', CC_FLAG_DELETED, $type, (isset($this->category[0]) ? $this->category[0] : 1) * DAY ); if (!$comments) continue; $typeClass = new $classStr(array(['id', array_keys($comments)])); if (!$typeClass->error) { $data = $typeClass->getListviewData(); if ($this->rss) { foreach ($data as $typeId => &$d) { $this->feedData[] = array( 'title' => [true, [], htmlentities(Util::$typeStrings[$type] == 'item' ? mb_substr($d['name'], 1) : $d['name'])], 'type' => [false, [], Util::$typeStrings[$type]], 'link' => [false, [], HOST_URL.'/?'.Util::$typeStrings[$type].'='.$d['id']], 'ncomments' => [false, [], $comments[$typeId]] ); } } else { foreach ($data as $typeId => &$d) $d['ncomments'] = $comments[$typeId]; $this->extendGlobalData($typeClass->getJSGlobals(GLOBALINFO_ANY)); $this->lvTabs[] = [$typeClass::$brickFile, array_merge($tabBase, ['data' => array_values($data)])]; } } } break; } // found nothing => set empty content // tpl: commentpreview - anything, doesn't matter what if (!$this->lvTabs && !$this->rss) $this->lvTabs[] = ['commentpreview', ['data' => []]]; } protected function generateRSS() { $this->generateContent(); $root = new SimpleXML(''); $root->addAttribute('version', '2.0'); $channel = $root->addChild('channel'); $channel->addChild('title', CFG_NAME_SHORT.' - '.$this->name); $channel->addChild('link', HOST_URL.'/?'.$this->page . ($this->category ? '='.$this->category[0] : null)); $channel->addChild('description', CFG_NAME); $channel->addChild('language', implode('-', str_split(User::$localeString, 2))); $channel->addChild('ttl', CFG_TTL_RSS); $channel->addChild('lastBuildDate', date(DATE_RSS)); foreach ($this->feedData as $row) { $item = $channel->addChild('item'); foreach ($row as $key => list($isCData, $attrib, $text)) { if ($isCData && $text) $child = $item->addChild($key)->addCData($text); else $child = $item->addChild($key, $text); foreach ($attrib as $k => $v) $child->addAttribute($k, $v); } } return $root->asXML(); } protected function generateTitle() { if ($this->page == 'most-comments') { if ($this->category && in_array($this->category[0], [7, 30])) array_unshift($this->title, sprintf(Lang::main('mostComments', 1), $this->category[0])); else array_unshift($this->title, Lang::main('mostComments', 0)); } array_unshift($this->title, $this->name); } protected function generatePath() { $this->path[] = array_search($this->page, $this->validPages); if ($this->page == 'most-comments') { if ($this->category && in_array($this->category[0], [7, 30])) $this->path[] = $this->category[0]; else $this->path[] = 1; } } } ?>