Use HTTP code enums instead of ints

This commit is contained in:
Alex Cabal 2024-11-20 14:52:05 -06:00
parent 3f822b85c3
commit 3050ab7219
28 changed files with 56 additions and 56 deletions

View file

@ -14,18 +14,18 @@ $redirect = HttpInput::Str(SESSION, 'redirect') ?? HttpInput::Str(GET, 'redirect
$exception = $_SESSION['exception'] ?? null;
$passwordRequired = false;
http_response_code(401);
http_response_code(Enums\HttpCode::Unauthorized->value);
if($exception){
if($exception instanceof Exceptions\PasswordRequiredException){
// This login requires a password to proceed.
// Prompt the user for a password.
http_response_code(401);
http_response_code(Enums\HttpCode::Unauthorized->value);
$passwordRequired = true;
$exception = null; // Clear the exception so we don't show an error
}
else{
http_response_code(422);
http_response_code(Enums\HttpCode::UnprocessableContent->value);
}
session_unset();
}

View file

@ -22,12 +22,12 @@ try{
session_unset();
if($requestType == Enums\HttpRequestType::Web){
http_response_code(303);
http_response_code(Enums\HttpCode::SeeOther->value);
header('Location: ' . $redirect);
}
else{
// Access via Enums\HttpRequestType::Rest api; 201 CREATED with location
http_response_code(201);
http_response_code(Enums\HttpCode::Created->value);
header('Location: ' . $session->Url);
}
}
@ -38,11 +38,11 @@ catch(Exceptions\InvalidLoginException | Exceptions\PasswordRequiredException $e
$_SESSION['exception'] = $ex;
// Access via form; 303 redirect to the form, which will emit a 422 Unprocessable Entity
http_response_code(303);
http_response_code(Enums\HttpCode::SeeOther->value);
header('Location: /sessions/new');
}
else{
// Access via Enums\HttpRequestType::Rest api; 422 Unprocessable Entity
http_response_code(422);
http_response_code(Enums\HttpCode::UnprocessableContent->value);
}
}