2022-09-13 13:14:49 +00:00
|
|
|
<?php
|
|
|
|
namespace Misuzu;
|
|
|
|
|
|
|
|
use Misuzu\Pagination;
|
|
|
|
use Misuzu\Users\User;
|
|
|
|
|
|
|
|
require_once '../../../misuzu.php';
|
|
|
|
|
|
|
|
if(!User::hasCurrent() || !perms_check_user(MSZ_PERMS_GENERAL, User::getCurrent()->getId(), MSZ_PERM_GENERAL_VIEW_LOGS)) {
|
|
|
|
echo render_error(403);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-07-17 17:43:17 +00:00
|
|
|
$auditLog = $msz->getAuditLog();
|
|
|
|
$pagination = new Pagination($auditLog->countLogs(), 50);
|
2022-09-13 13:14:49 +00:00
|
|
|
|
|
|
|
if(!$pagination->hasValidOffset()) {
|
|
|
|
echo render_error(404);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-07-17 17:43:17 +00:00
|
|
|
$logs = $auditLog->getLogs(pagination: $pagination);
|
|
|
|
$userInfos = [];
|
|
|
|
foreach($logs as $log)
|
|
|
|
if($log->hasUserId()) {
|
|
|
|
$userId = $log->getUserId();
|
|
|
|
if(!array_key_exists($userId, $userInfos))
|
|
|
|
$userInfos[$userId] = User::byId($userId);
|
|
|
|
}
|
2022-09-13 13:14:49 +00:00
|
|
|
|
|
|
|
Template::render('manage.general.logs', [
|
|
|
|
'global_logs' => $logs,
|
|
|
|
'global_logs_pagination' => $pagination,
|
2023-07-17 17:43:17 +00:00
|
|
|
'global_logs_users' => $userInfos,
|
2022-09-13 13:14:49 +00:00
|
|
|
]);
|