Add getRequestUser() function

master
Skylar Ittner 5 lat temu
rodzic d36b340692
commit f1c36fdeb1

@ -75,6 +75,18 @@ function authenticate(): bool {
return true;
}
/**
* Get the User whose credentials were used to make the request.
*/
function getRequestUser(): User {
global $VARS;
if (!empty($_SERVER['PHP_AUTH_USER'])) {
return User::byUsername($_SERVER['PHP_AUTH_USER']);
} else {
return User::byUsername($VARS['username']);
}
}
function checkVars($vars, $or = false) {
global $VARS;
$ok = [];

Ładowanie…
Anuluj
Zapisz