misuzu/public-legacy/manage/users/warnings.php

55 lines
1.6 KiB
PHP
Raw Normal View History

2022-09-13 13:14:49 +00:00
<?php
namespace Misuzu;
use RuntimeException;
2022-09-13 13:14:49 +00:00
2024-12-02 02:28:08 +00:00
if(!isset($msz) || !($msz instanceof \Misuzu\MisuzuContext))
die('Script must be called through the Misuzu route dispatcher.');
if(!$msz->authInfo->getPerms('user')->check(Perm::U_WARNINGS_MANAGE))
Template::throwError(403);
2022-09-13 13:14:49 +00:00
2023-07-26 22:43:50 +00:00
$filterUser = null;
if(filter_has_var(INPUT_GET, 'u')) {
$filterUserId = filter_input(INPUT_GET, 'u', FILTER_SANITIZE_NUMBER_INT);
2022-09-13 13:14:49 +00:00
try {
$filterUser = $msz->usersCtx->getUserInfo($filterUserId);
} catch(RuntimeException $ex) {
Template::throwError(404);
2022-09-13 13:14:49 +00:00
}
}
2024-12-19 01:22:26 +00:00
$pagination = Pagination::fromInput($msz->usersCtx->warnings->countWarnings(userInfo: $filterUser), 10);
if(!$pagination->validOffset)
Template::throwError(404);
2022-09-13 13:14:49 +00:00
2023-07-26 22:43:50 +00:00
$warnList = [];
$warnInfos = $msz->usersCtx->warnings->getWarnings(userInfo: $filterUser, pagination: $pagination);
2023-07-26 22:43:50 +00:00
foreach($warnInfos as $warnInfo) {
$userInfo = $msz->usersCtx->getUserInfo($warnInfo->userId);
$userColour = $msz->usersCtx->getUserColour($userInfo);
if($warnInfo->modId === null) {
$modInfo = null;
$modColour = null;
} else {
$modInfo = $msz->usersCtx->getUserInfo($warnInfo->modId);
$modColour = $msz->usersCtx->getUserColour($modInfo);
}
2023-07-26 22:43:50 +00:00
$warnList[] = [
'info' => $warnInfo,
'user' => $userInfo,
'user_colour' => $userColour,
2023-07-26 22:43:50 +00:00
'mod' => $modInfo,
'mod_colour' => $modColour,
2023-07-26 22:43:50 +00:00
];
}
2022-09-13 13:14:49 +00:00
Template::render('manage.users.warnings', [
2023-07-26 22:43:50 +00:00
'manage_warns' => $warnList,
'manage_warns_pagination' => $pagination,
'manage_warns_filter_user' => $filterUser,
2022-09-13 13:14:49 +00:00
]);