misuzu/public-legacy/settings/logs.php

27 lines
872 B
PHP
Raw Normal View History

2022-09-13 13:14:49 +00:00
<?php
namespace Misuzu;
use Misuzu\Pagination;
$currentUser = $msz->getActiveUser();
2022-09-13 13:14:49 +00:00
if($currentUser === null) {
echo render_error(401);
return;
}
$loginAttempts = $msz->getLoginAttempts();
$auditLog = $msz->getAuditLog();
$loginHistoryPagination = new Pagination($loginAttempts->countAttempts(userInfo: $currentUser), 5, 'hp');
$accountLogPagination = new Pagination($auditLog->countLogs(userInfo: $currentUser), 10, 'ap');
$loginHistory = $loginAttempts->getAttempts(userInfo: $currentUser, pagination: $loginHistoryPagination);
$auditLogs = $auditLog->getLogs(userInfo: $currentUser, pagination: $accountLogPagination);
2022-09-13 13:14:49 +00:00
Template::render('settings.logs', [
'login_history_list' => $loginHistory,
2022-09-13 13:14:49 +00:00
'login_history_pagination' => $loginHistoryPagination,
'account_log_list' => $auditLogs,
2022-09-13 13:14:49 +00:00
'account_log_pagination' => $accountLogPagination,
]);