misuzu/public-legacy/settings/logs.php

27 lines
934 B
PHP
Raw Normal View History

2019-06-06 20:09:27 +00:00
<?php
namespace Misuzu;
2020-05-21 15:05:30 +00:00
use Misuzu\Pagination;
2020-05-25 14:15:17 +00:00
$authInfo = $msz->getAuthInfo();
$currentUser = $authInfo->getUserInfo();
if($currentUser === null)
Template::throwError(401);
2019-06-06 20:09:27 +00:00
2023-09-08 00:43:00 +00:00
$authCtx = $msz->getAuthContext();
$loginAttempts = $authCtx->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);
2019-06-06 20:09:27 +00:00
Template::render('settings.logs', [
'login_history_list' => $loginHistory,
2019-06-06 20:09:27 +00:00
'login_history_pagination' => $loginHistoryPagination,
'account_log_list' => $auditLogs,
2019-06-06 20:09:27 +00:00
'account_log_pagination' => $accountLogPagination,
]);