getAuthInfo()->getPerms('global')->check(Perm::G_FORUM_LEADERBOARD_VIEW)) { echo render_error(403); return; } $forum = $msz->getForum(); $users = $msz->getUsers(); $config = $cfg->getValues([ ['forum_leader.first_year:i', 2018], ['forum_leader.first_month:i', 12], 'forum_leader.unranked.forum:a', 'forum_leader.unranked.topic:a', ]); $mode = (string)filter_input(INPUT_GET, 'mode'); $yearMonth = (string)filter_input(INPUT_GET, 'id'); $year = $month = 0; $currentYear = (int)date('Y'); $currentMonth = (int)date('m'); if(!empty($yearMonth)) { $yearMonthLength = strlen($yearMonth); if(($yearMonthLength !== 4 && $yearMonthLength !== 6) || !ctype_digit($yearMonth)) { echo render_error(404); return; } $year = (int)substr($yearMonth, 0, 4); if($year < $config['forum_leader.first_year'] || $year > $currentYear) { echo render_error(404); return; } if($yearMonthLength === 6) { $month = (int)substr($yearMonth, 4, 2); if($month < 1 || $month > 12 || ($year === $config['forum_leader.first_year'] && $month < $config['forum_leader.first_month'])) { echo render_error(404); return; } } } if(filter_has_var(INPUT_GET, 'allow_unranked')) { $unrankedForums = $unrankedTopics = []; } else { $unrankedForums = $config['forum_leader.unranked.forum']; $unrankedTopics = $config['forum_leader.unranked.topic']; } $years = $months = []; for($i = $currentYear; $i >= $config['forum_leader.first_year']; $i--) $years[(string)$i] = sprintf('Leaderboard %d', $i); for($i = $currentYear, $j = $currentMonth;;) { $months[sprintf('%d%02d', $i, $j)] = sprintf('Leaderboard %d-%02d', $i, $j); if($j <= 1) { $i--; $j = 12; } else $j--; if($i <= $config['forum_leader.first_year'] && $j < $config['forum_leader.first_month']) break; } $rankings = $forum->generatePostRankings($year, $month, $unrankedForums, $unrankedTopics); foreach($rankings as $ranking) { $ranking->user = $ranking->colour = null; if($ranking->userId !== '') try { $ranking->user = $users->getUser($ranking->userId); $ranking->colour = $users->getUserColour($ranking->user); } catch(RuntimeException $ex) {} } $name = 'All Time'; if($year > 0) { $name = sprintf("Leaderboard %04d", $year); if($month > 0) $name .= sprintf("-%02d", $month); } if($mode === 'markdown') { $markdown = <<postsCount; $markdown .= sprintf("| %s | [%s](%s%s) | %s |\r\n", $ranking->position, $ranking->user?->getName() ?? 'Deleted User', url_prefix(false), url('user-profile', ['user' => $ranking->userId]), number_format($ranking->postsCount)); } $markdown .= sprintf("\r\nIn total %s posts were made!\r\n", number_format($totalPostsCount)); Template::set('leaderboard_markdown', $markdown); } Template::render('forum.leaderboard', [ 'leaderboard_id' => $yearMonth, 'leaderboard_name' => $name, 'leaderboard_years' => $years, 'leaderboard_months' => $months, 'leaderboard_data' => $rankings, 'leaderboard_mode' => $mode, ]);