The type of an incoming web request.
This should be used sparingly in Rocket applications. In particular, it
should likely only be used when writing
FromRequest implementations. It
contains all of the information for a given web request except for the body
data. This includes the HTTP method, URI, cookies, headers, and more.
Retrieve the method from self
.
use rocket::http::Method;
request.set_method(Method::Get);
assert_eq!(request.method(), Method::Get);
Set the method of self
.
use rocket::http::Method;
assert_eq!(request.method(), Method::Get);
request.set_method(Method::Post);
assert_eq!(request.method(), Method::Post);
Borrow the URI from self
, which is guaranteed to be an absolute URI.
assert_eq!(request.uri().as_str(), "/uri");
Set the URI in self
. The uri
parameter can be of any type that
implements Into<URI>
including &str
and String
; it must be a
valid, absolute URI.
request.set_uri("/hello/Sergio?type=greeting");
assert_eq!(request.uri().as_str(), "/hello/Sergio?type=greeting");
Returns the address of the remote connection that initiated this
request if the address is known. If the address is not known, None
is
returned.
assert!(request.remote().is_none());
Sets the remote address of self
to address
.
Set the remote address to be 127.0.0.1:8000:
use std::net::{SocketAddr, IpAddr, Ipv4Addr};
let (ip, port) = (IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)), 8000);
let localhost = SocketAddr::new(ip, port);
request.set_remote(localhost);
assert_eq!(request.remote(), Some(localhost));
Returns a HeaderMap
of all of
the headers in self
.
let header_map = request.headers();
assert!(header_map.is_empty());
Add header
to self
's headers. The type of header
can be any type
that implements the Into<Header>
trait. This includes common types
such as ContentType
and
Accept
.
use rocket::http::ContentType;
assert!(request.headers().is_empty());
request.add_header(ContentType::HTML);
assert!(request.headers().contains("Content-Type"));
assert_eq!(request.headers().len(), 1);
Replaces the value of the header with name header.name
with
header.value
. If no such header exists, header
is added as a header
to self
.
use rocket::http::ContentType;
assert!(request.headers().is_empty());
request.add_header(ContentType::Any);
assert_eq!(request.headers().get_one("Content-Type"), Some("*/*"));
request.replace_header(ContentType::PNG);
assert_eq!(request.headers().get_one("Content-Type"), Some("image/png"));
Returns a wrapped borrow to the cookies in self
.
Cookies
implements internal
mutability, so this method allows you to get and add/remove cookies in
self
.
Add a new cookie to a request's cookies:
use rocket::http::Cookie;
request.cookies().add(Cookie::new("key", "val"));
request.cookies().add(Cookie::new("ans", format!("life: {}", 38 + 4)));
Returns the Content-Type header of self
. If the header is not present,
returns None
. The Content-Type header is cached after the first call
to this function. As a result, subsequent calls will always return the
same value.
use rocket::http::ContentType;
request.add_header(ContentType::JSON);
assert_eq!(request.content_type(), Some(&ContentType::JSON));
request.replace_header(ContentType::HTML);
assert_eq!(request.content_type(), Some(&ContentType::JSON));
Returns the Accept header of self
. If the header is not present,
returns None
. The Accept header is cached after the first call to this
function. As a result, subsequent calls will always return the same
value.
use rocket::http::Accept;
request.add_header(Accept::JSON);
assert_eq!(request.accept(), Some(&Accept::JSON));
request.replace_header(Accept::HTML);
assert_eq!(request.accept(), Some(&Accept::JSON));
Returns the media type "format" of the request.
The "format" of a request is either the Content-Type, if the request
methods indicates support for a payload, or the preferred media type in
the Accept header otherwise. If the method indicates no payload and no
Accept header is specified, a media type of Any
is returned.
The media type returned from this method is used to match against the
format
route attribute.
use rocket::http::{Method, Accept, ContentType, MediaType};
request.add_header(ContentType::JSON);
request.add_header(Accept::HTML);
request.set_method(Method::Get);
assert_eq!(request.format(), Some(&MediaType::HTML));
request.set_method(Method::Post);
assert_eq!(request.format(), Some(&MediaType::JSON));
Returns the configured application receive limits.
let json_limit = request.limits().get("json");
Get the presently matched route, if any.
This method returns Some
any time a handler or its guards are being
invoked. This method returns None
before routing has commenced; this
includes during request fairing callbacks.
let route = request.route();
Invokes the request guard implemention for T
, returning its outcome.
Assuming a User
request guard exists, invoke it:
let outcome = request.guard::<User>();
Retrieve managed state inside of a guard implementation:
use rocket::State;
let pool = request.guard::<State<Pool>>()?;
Retrieves and parses into T
the 0-indexed n
th dynamic parameter from
the request. Returns Error::NoKey
if n
is greater than the number of
params. Returns Error::BadParse
if the parameter type T
can't be
parsed from the parameter.
This method exists only to be used by manual routing. To retrieve
parameters from a request, use Rocket's code generation facilities.
Retrieve parameter 0
, which is expected to be a String
, in a manual
route:
use rocket::{Request, Data};
use rocket::handler::Outcome;
fn name<'a>(req: &'a Request, _: Data) -> Outcome<'a> {
Outcome::from(req, req.get_param::<String>(0).unwrap_or("unnamed".into()))
}
Retrieves and parses into T
all of the path segments in the request
URI beginning at the 0-indexed n
th dynamic parameter. T
must
implement FromSegments, which
is used to parse the segments.
This method exists only to be used by manual routing. To retrieve
segments from a request, use Rocket's code generation facilities.
If there are less than n
segments, returns an Err
of NoKey
. If
parsing the segments failed, returns an Err
of BadParse
.
If the request URI is "/hello/there/i/am/here"
, and the matched route
path for this request is "/hello/<name>/i/<segs..>"
, then
request.get_segments::<T>(1)
will attempt to parse the segments
"am/here"
as type T
.