HTTP status codes have specific meanings, and your application should use the appropriate code in its responses. The following is a list of the most commonly encountered HTTP status codes in UserFrosting:
The default status code used by the Response
object. You should use this code when, indeed, the client request was "successful" - however you define that.
You should use this whenever you permanently rename a route - especially for pages! You want the old route to automatically resolve to your new URL, otherwise this could hurt your search engine rankings.
Recommended practice is to create a new route file in your Sprinkle, routes/redirects.php
, and keep your redirect routes there:
<?php
$app->get('/old/dumb/url', function (Request $request, Response $response) {
$target = $this->router->pathFor('newUrl');
return $response->withRedirect($target, 301);
});
...
Note that most major browsers perform the redirect automatically.
This is typically used for temporary redirects; for example, to redirect your users after they log out of the site. The logout route returns a 302 status code along with a Location
header, to tell the client's browser where to redirect:
public function logout(Request $request, Response $response, array $args)
{
// Destroy the session
$this->ci->authenticator->logout();
// Return to home page
$config = $this->ci->config;
return $response->withStatus(302)->withHeader('Location', $config['site.uri.public']);
}
Note that most major browsers perform the redirect automatically when they receive a 302 response.
Respond with this code when the client has submitted an "invalid" request. In most cases where the user's request has failed validation, 400
is the appropriate code to return.
Technically, this code is meant to be used with HTTP Basic and HTTP Digest Authentication, which UserFrosting doesn't use.
However in lieu of a better alternative, UserFrosting has co-opted this code for its own authentication checks. If an AJAX request fails because the user is not logged in, UserFrosting's AuthGuard
middleware will return a 401 status code.
For non-AJAX requests (i.e., when visiting a page), if a request fails because the user is not logged in, a 302 status code will be returned instead, and the user will be redirected to the login page.
This code is almost always returned because a user has failed a checkAccess
call. Controller methods will commonly have a check like:
if (!$authorizer->checkAccess($currentUser, 'uri_users')) {
throw new ForbiddenException();
}
The default ForbiddenExceptionHandler
that handles ForbiddenException
s will automatically generate an error message/page response with a 403 response code.
In some cases, you may not want to disclose to unauthorized users that the resource even exists. In this case, you can override the ForbiddenExceptionHandler
with your own handler and have it return a 404 error instead.
This code is your classic "could not find the thing you're looking for" error. To trigger this code manually in UserFrosting, you'll need to throw a NotFoundException
:
use Slim\Exception\NotFoundException;
...
public function updateField(Request $request, Response $response, array $args)
{
$user = $this->getUserFromParams($args);
// Will cause a 404 response
if (!$user) {
throw new NotFoundException($request, $response);
}
...
}
This code is automatically returned by Slim, when a route exists for a given URL, but not for the requested method. For example, if someone tries to POST
to a URL, but there is only a GET
route defined.
This code is returned by the throttler, when a request's rate limit has been exceeded.
This code is a generic "something didn't work right, but it's not your fault" error. UserFrosting uses this code whenever we want to let the client know that something went wrong, but don't want to provide any further details.
For example, the client probably doesn't care whether your database is down, your mail server stopped working, or there is a missing semicolon in your last commit.
By default when an exception is thrown and no registered exception handler is found, UserFrosting invokes the base ExceptionHandler
. This handler returns a 500 status code.
You should return this code, for example, if you absolutely need to have your application down for a period of time (for example, for maintenance).