ponepaste/public/admin/common.php

49 lines
1.3 KiB
PHP
Raw Normal View History

<?php
2021-08-09 04:21:39 -04:00
if (!defined('IN_PONEPASTE')) {
die('This file may not be accessed directly.');
}
2021-11-02 08:46:40 -04:00
2023-05-12 02:06:31 -04:00
require_once('../../includes/common.php');
2021-11-02 08:46:40 -04:00
use PonePaste\Models\User;
2023-05-13 21:19:35 -04:00
if ($current_user === null || $current_user->role < User::ROLE_MODERATOR) {
2021-11-02 08:46:40 -04:00
header('Location: ..');
die();
}
2021-11-02 08:46:40 -04:00
if (!isset($_SESSION['admin_login'])) {
// this is a hack, paste_id is set when POSTing to admin/paste_action.php, which we can only arrive at from a paste page
if (isset($_POST['paste_id'])) {
flashError('You must authenticate to perform that action.');
$_SESSION['redirect_back'] = urlForPaste($_POST['paste_id']);
} elseif (isset($_POST['user_id'])) {
flashError('You must authenticate to perform that action.');
$_SESSION['redirect_back'] = urlForMember($_POST['user_id']);
}
header('Location: .');
exit();
}
if (isset($_GET['logout'])) {
if (isset($_SESSION['login']))
unset($_SESSION['login']);
session_destroy();
header("Location: .");
exit();
}
2023-05-13 21:19:35 -04:00
function checkAdminAccess(int $role) {
global $current_user;
if ($current_user === null || $current_user->role < $role) {
flashError('You do not have access to this page.');
header('Location: /admin/');
die();
}
}
$flashes = getFlashes();