59 lines
1.7 KiB
PHP
59 lines
1.7 KiB
PHP
<?php
|
|
namespace Misuzu;
|
|
|
|
use RuntimeException;
|
|
use Misuzu\Users\User;
|
|
use Misuzu\Users\UserSession;
|
|
|
|
if(!User::hasCurrent()) {
|
|
echo render_error(401);
|
|
return;
|
|
}
|
|
|
|
$errors = [];
|
|
$currentUser = User::getCurrent();
|
|
$currentSession = UserSession::getCurrent();
|
|
$currentUserId = $currentUser->getId();
|
|
$sessionActive = $currentSession->getId();;
|
|
|
|
if(!empty($_POST['session']) && CSRF::validateRequest()) {
|
|
$currentSessionKilled = false;
|
|
|
|
if(is_array($_POST['session'])) {
|
|
foreach($_POST['session'] as $sessionId) {
|
|
$sessionId = (int)$sessionId;
|
|
|
|
try {
|
|
$sessionInfo = UserSession::byId($sessionId);
|
|
} catch(RuntimeException $ex) {}
|
|
|
|
if(empty($sessionInfo) || $sessionInfo->getUserId() !== $currentUser->getId()) {
|
|
$errors[] = "Session #{$sessionId} does not exist.";
|
|
continue;
|
|
} elseif($sessionInfo->getId() === $sessionActive) {
|
|
$currentSessionKilled = true;
|
|
}
|
|
|
|
$sessionInfo->delete();
|
|
$msz->createAuditLog('PERSONAL_SESSION_DESTROY', [$sessionInfo->getId()]);
|
|
}
|
|
} elseif($_POST['session'] === 'all') {
|
|
$currentSessionKilled = true;
|
|
UserSession::purgeUser($currentUser);
|
|
$msz->createAuditLog('PERSONAL_SESSION_DESTROY_ALL');
|
|
}
|
|
|
|
if($currentSessionKilled) {
|
|
url_redirect('index');
|
|
return;
|
|
}
|
|
}
|
|
|
|
$pagination = new Pagination(UserSession::countAll($currentUser), 15);
|
|
|
|
Template::render('settings.sessions', [
|
|
'errors' => $errors,
|
|
'session_list' => UserSession::all($pagination, $currentUser),
|
|
'session_current' => $currentSession,
|
|
'session_pagination' => $pagination,
|
|
]);
|