2018-06-06 17:37:04 +00:00
|
|
|
use std::rc::Rc;
|
2017-05-27 02:48:50 +00:00
|
|
|
use std::cell::{Cell, RefCell};
|
2017-12-24 22:12:21 +00:00
|
|
|
use std::net::{IpAddr, SocketAddr};
|
2016-08-27 01:37:28 +00:00
|
|
|
use std::fmt;
|
2017-03-11 01:42:09 +00:00
|
|
|
use std::str;
|
2016-08-27 01:37:28 +00:00
|
|
|
|
2017-06-02 04:44:31 +00:00
|
|
|
use yansi::Paint;
|
2017-04-13 09:36:51 +00:00
|
|
|
use state::{Container, Storage};
|
2017-01-21 03:31:46 +00:00
|
|
|
|
2017-05-19 10:29:08 +00:00
|
|
|
use super::{FromParam, FromSegments, FromRequest, Outcome};
|
2016-03-15 03:43:52 +00:00
|
|
|
|
2017-06-06 20:41:04 +00:00
|
|
|
use rocket::Rocket;
|
2016-08-26 08:55:11 +00:00
|
|
|
use router::Route;
|
2017-05-19 10:29:08 +00:00
|
|
|
use config::{Config, Limits};
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
use http::uri::{Origin, Segments};
|
2017-06-06 20:41:04 +00:00
|
|
|
use http::{Method, Header, HeaderMap, Cookies, CookieJar};
|
2017-03-31 07:18:58 +00:00
|
|
|
use http::{RawStr, ContentType, Accept, MediaType};
|
2016-12-16 00:34:19 +00:00
|
|
|
use http::hyper;
|
2016-08-26 08:55:11 +00:00
|
|
|
|
2017-06-06 20:41:04 +00:00
|
|
|
#[derive(Clone)]
|
|
|
|
struct RequestState<'r> {
|
2017-05-19 10:29:08 +00:00
|
|
|
config: &'r Config,
|
2017-12-27 04:27:47 +00:00
|
|
|
managed: &'r Container,
|
2017-03-28 10:10:18 +00:00
|
|
|
params: RefCell<Vec<(usize, usize)>>,
|
2017-05-27 02:48:50 +00:00
|
|
|
route: Cell<Option<&'r Route>>,
|
2017-03-28 10:10:18 +00:00
|
|
|
cookies: RefCell<CookieJar>,
|
2017-04-13 09:36:51 +00:00
|
|
|
accept: Storage<Option<Accept>>,
|
|
|
|
content_type: Storage<Option<ContentType>>,
|
2018-06-06 17:37:04 +00:00
|
|
|
cache: Rc<Container>,
|
2017-03-28 10:10:18 +00:00
|
|
|
}
|
|
|
|
|
2016-10-21 09:56:57 +00:00
|
|
|
/// The type of an incoming web request.
|
2016-10-01 03:22:06 +00:00
|
|
|
///
|
|
|
|
/// This should be used sparingly in Rocket applications. In particular, it
|
|
|
|
/// should likely only be used when writing
|
2017-02-04 00:56:29 +00:00
|
|
|
/// [FromRequest](/rocket/request/trait.FromRequest.html) implementations. It
|
2016-12-21 09:30:45 +00:00
|
|
|
/// 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.
|
2017-06-06 20:41:04 +00:00
|
|
|
#[derive(Clone)]
|
2016-12-16 11:07:23 +00:00
|
|
|
pub struct Request<'r> {
|
2018-02-04 10:07:28 +00:00
|
|
|
method: Cell<Method>,
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
uri: Origin<'r>,
|
2016-12-16 11:07:23 +00:00
|
|
|
headers: HeaderMap<'r>,
|
2017-01-13 15:50:51 +00:00
|
|
|
remote: Option<SocketAddr>,
|
2018-06-06 17:37:04 +00:00
|
|
|
state: RequestState<'r>,
|
2016-03-22 05:04:39 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 11:07:23 +00:00
|
|
|
impl<'r> Request<'r> {
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
/// Create a new `Request` with the given `method` and `uri`.
|
2017-03-28 10:10:18 +00:00
|
|
|
#[inline(always)]
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
crate fn new<'s: 'r>(
|
2018-04-08 23:14:15 +00:00
|
|
|
rocket: &'r Rocket,
|
|
|
|
method: Method,
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
uri: Origin<'s>
|
2018-04-08 23:14:15 +00:00
|
|
|
) -> Request<'r> {
|
2016-12-16 11:07:23 +00:00
|
|
|
Request {
|
2018-02-04 10:07:28 +00:00
|
|
|
method: Cell::new(method),
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
uri: uri,
|
2016-12-16 11:07:23 +00:00
|
|
|
headers: HeaderMap::new(),
|
2017-01-13 15:50:51 +00:00
|
|
|
remote: None,
|
2017-05-20 02:38:56 +00:00
|
|
|
state: RequestState {
|
2017-06-06 20:41:04 +00:00
|
|
|
config: &rocket.config,
|
2017-12-27 04:27:47 +00:00
|
|
|
managed: &rocket.state,
|
2017-05-27 02:48:50 +00:00
|
|
|
route: Cell::new(None),
|
2017-03-28 10:10:18 +00:00
|
|
|
params: RefCell::new(Vec::new()),
|
|
|
|
cookies: RefCell::new(CookieJar::new()),
|
2017-04-13 09:36:51 +00:00
|
|
|
accept: Storage::new(),
|
|
|
|
content_type: Storage::new(),
|
2018-06-06 17:37:04 +00:00
|
|
|
cache: Rc::new(Container::new()),
|
2017-03-28 10:10:18 +00:00
|
|
|
}
|
2016-12-16 11:07:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
// Only used by doc-tests!
|
2017-06-06 20:41:04 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn example<F: Fn(&mut Request)>(method: Method, uri: &str, f: F) {
|
2018-07-03 20:47:17 +00:00
|
|
|
let rocket = Rocket::custom(Config::development().unwrap());
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
let uri = Origin::parse(uri).expect("invalid URI in example");
|
2017-06-06 20:41:04 +00:00
|
|
|
let mut request = Request::new(&rocket, method, uri);
|
|
|
|
f(&mut request);
|
|
|
|
}
|
|
|
|
|
2016-12-21 09:30:45 +00:00
|
|
|
/// Retrieve the method from `self`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # use rocket::Request;
|
2016-12-21 09:30:45 +00:00
|
|
|
/// use rocket::http::Method;
|
|
|
|
///
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # Request::example(Method::Get, "/uri", |request| {
|
2017-06-25 04:00:50 +00:00
|
|
|
/// request.set_method(Method::Get);
|
2016-12-21 09:30:45 +00:00
|
|
|
/// assert_eq!(request.method(), Method::Get);
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # });
|
2016-12-21 09:30:45 +00:00
|
|
|
/// ```
|
2016-12-16 11:07:23 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn method(&self) -> Method {
|
2018-02-04 10:07:28 +00:00
|
|
|
self.method.get()
|
2016-12-16 11:07:23 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 09:30:45 +00:00
|
|
|
/// Set the method of `self`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # use rocket::Request;
|
2016-12-21 09:30:45 +00:00
|
|
|
/// use rocket::http::Method;
|
|
|
|
///
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # Request::example(Method::Get, "/uri", |request| {
|
2016-12-21 09:30:45 +00:00
|
|
|
/// assert_eq!(request.method(), Method::Get);
|
|
|
|
///
|
|
|
|
/// request.set_method(Method::Post);
|
|
|
|
/// assert_eq!(request.method(), Method::Post);
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # });
|
2016-12-21 09:30:45 +00:00
|
|
|
/// ```
|
2016-12-16 11:07:23 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn set_method(&mut self, method: Method) {
|
2018-04-08 23:14:15 +00:00
|
|
|
self._set_method(method);
|
2016-12-16 11:07:23 +00:00
|
|
|
}
|
|
|
|
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
/// Borrow the `Origin` URI from `self`.
|
2016-12-21 09:30:45 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # use rocket::Request;
|
|
|
|
/// # use rocket::http::Method;
|
|
|
|
/// # Request::example(Method::Get, "/uri", |request| {
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
/// assert_eq!(request.uri().path(), "/uri");
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # });
|
2016-12-21 09:30:45 +00:00
|
|
|
/// ```
|
2016-12-16 11:07:23 +00:00
|
|
|
#[inline(always)]
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
pub fn uri(&self) -> &Origin {
|
2016-12-21 08:09:22 +00:00
|
|
|
&self.uri
|
2016-12-16 11:07:23 +00:00
|
|
|
}
|
|
|
|
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
/// Set the URI in `self` to `uri`.
|
2016-12-21 09:30:45 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
/// use rocket::http::uri::Origin;
|
|
|
|
///
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # use rocket::Request;
|
|
|
|
/// # use rocket::http::Method;
|
|
|
|
/// # Request::example(Method::Get, "/uri", |mut request| {
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
/// let uri = Origin::parse("/hello/Sergio?type=greeting").unwrap();
|
|
|
|
///
|
|
|
|
/// request.set_uri(uri);
|
|
|
|
/// assert_eq!(request.uri().path(), "/hello/Sergio");
|
|
|
|
/// assert_eq!(request.uri().query(), Some("type=greeting"));
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # });
|
2016-12-21 09:30:45 +00:00
|
|
|
/// ```
|
2016-12-16 11:07:23 +00:00
|
|
|
#[inline(always)]
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
pub fn set_uri<'u: 'r>(&mut self, uri: Origin<'u>) {
|
|
|
|
self.uri = uri;
|
2017-05-20 02:38:56 +00:00
|
|
|
*self.state.params.borrow_mut() = Vec::new();
|
2016-12-16 11:07:23 +00:00
|
|
|
}
|
|
|
|
|
2017-01-13 15:50:51 +00:00
|
|
|
/// 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.
|
|
|
|
///
|
2017-12-29 07:50:59 +00:00
|
|
|
/// Because it is common for proxies to forward connections for clients, the
|
|
|
|
/// remote address may contain information about the proxy instead of the
|
|
|
|
/// client. For this reason, proxies typically set the "X-Real-IP" header
|
|
|
|
/// with the client's true IP. To extract this IP from the request, use the
|
|
|
|
/// [`real_ip()`] or [`client_ip()`] methods.
|
|
|
|
///
|
|
|
|
/// [`real_ip()`]: #method.real_ip
|
|
|
|
/// [`client_ip()`]: #method.client_ip
|
|
|
|
///
|
2017-01-13 15:50:51 +00:00
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # use rocket::Request;
|
|
|
|
/// # use rocket::http::Method;
|
|
|
|
/// # Request::example(Method::Get, "/uri", |request| {
|
2017-01-13 15:50:51 +00:00
|
|
|
/// assert!(request.remote().is_none());
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # });
|
2017-01-13 15:50:51 +00:00
|
|
|
/// ```
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn remote(&self) -> Option<SocketAddr> {
|
|
|
|
self.remote
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the remote address of `self` to `address`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// Set the remote address to be 127.0.0.1:8000:
|
|
|
|
///
|
|
|
|
/// ```rust
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # use rocket::Request;
|
|
|
|
/// # use rocket::http::Method;
|
2017-01-13 15:50:51 +00:00
|
|
|
/// use std::net::{SocketAddr, IpAddr, Ipv4Addr};
|
|
|
|
///
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # Request::example(Method::Get, "/uri", |mut request| {
|
2017-01-13 15:50:51 +00:00
|
|
|
/// 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));
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # });
|
2017-01-13 15:50:51 +00:00
|
|
|
/// ```
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn set_remote(&mut self, address: SocketAddr) {
|
|
|
|
self.remote = Some(address);
|
|
|
|
}
|
|
|
|
|
2017-12-29 07:50:59 +00:00
|
|
|
/// Returns the IP address in the "X-Real-IP" header of the request if such
|
|
|
|
/// a header exists and contains a valid IP address.
|
2017-12-24 22:12:21 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use rocket::Request;
|
|
|
|
/// # use rocket::http::{Header, Method};
|
|
|
|
/// # use std::net::{SocketAddr, IpAddr, Ipv4Addr};
|
|
|
|
///
|
|
|
|
/// # Request::example(Method::Get, "/uri", |mut request| {
|
|
|
|
/// request.add_header(Header::new("X-Real-IP", "8.8.8.8"));
|
2017-12-29 07:50:59 +00:00
|
|
|
/// assert_eq!(request.real_ip(), Some("8.8.8.8".parse().unwrap()));
|
2017-12-24 22:12:21 +00:00
|
|
|
/// # });
|
|
|
|
/// ```
|
|
|
|
pub fn real_ip(&self) -> Option<IpAddr> {
|
|
|
|
self.headers()
|
|
|
|
.get_one("X-Real-IP")
|
|
|
|
.and_then(|ip| {
|
|
|
|
ip.parse()
|
|
|
|
.map_err(|_| warn_!("'X-Real-IP' header is malformed: {}", ip))
|
|
|
|
.ok()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-12-29 07:50:59 +00:00
|
|
|
/// Attempts to return the client's IP address by first inspecting the
|
|
|
|
/// "X-Real-IP" header and then using the remote connection's IP address.
|
|
|
|
///
|
|
|
|
/// If the "X-Real-IP" header exists and contains a valid IP address, that
|
|
|
|
/// address is returned. Otherwise, if the address of the remote connection
|
|
|
|
/// is known, that address is returned. Otherwise, `None` is returned.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use rocket::Request;
|
|
|
|
/// # use rocket::http::{Header, Method};
|
|
|
|
/// # use std::net::{SocketAddr, IpAddr, Ipv4Addr};
|
|
|
|
///
|
|
|
|
/// # Request::example(Method::Get, "/uri", |mut request| {
|
|
|
|
/// // starting without an "X-Real-IP" header or remote addresss
|
|
|
|
/// assert!(request.client_ip().is_none());
|
|
|
|
///
|
|
|
|
/// // add a remote address; this is done by Rocket automatically
|
|
|
|
/// request.set_remote("127.0.0.1:8000".parse().unwrap());
|
|
|
|
/// assert_eq!(request.client_ip(), Some("127.0.0.1".parse().unwrap()));
|
|
|
|
///
|
|
|
|
/// // now with an X-Real-IP header
|
|
|
|
/// request.add_header(Header::new("X-Real-IP", "8.8.8.8"));
|
|
|
|
/// assert_eq!(request.client_ip(), Some("8.8.8.8".parse().unwrap()));
|
|
|
|
/// # });
|
|
|
|
/// ```
|
|
|
|
#[inline]
|
|
|
|
pub fn client_ip(&self) -> Option<IpAddr> {
|
|
|
|
self.real_ip().or_else(|| self.remote().map(|r| r.ip()))
|
|
|
|
}
|
|
|
|
|
2017-06-25 04:00:50 +00:00
|
|
|
/// Returns a [`HeaderMap`](/rocket/http/struct.HeaderMap.html) of all of
|
|
|
|
/// the headers in `self`.
|
2016-12-21 09:30:45 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # use rocket::Request;
|
|
|
|
/// # use rocket::http::Method;
|
|
|
|
/// # Request::example(Method::Get, "/uri", |request| {
|
2016-12-21 09:30:45 +00:00
|
|
|
/// let header_map = request.headers();
|
|
|
|
/// assert!(header_map.is_empty());
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # });
|
2016-12-21 09:30:45 +00:00
|
|
|
/// ```
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn headers(&self) -> &HeaderMap<'r> {
|
|
|
|
&self.headers
|
|
|
|
}
|
|
|
|
|
2017-06-25 04:00:50 +00:00
|
|
|
/// 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`](/rocket/http/struct.ContentType.html) and
|
|
|
|
/// [`Accept`](/rocket/http/struct.Accept.html).
|
2016-12-21 09:30:45 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # use rocket::Request;
|
|
|
|
/// # use rocket::http::Method;
|
|
|
|
/// use rocket::http::ContentType;
|
2016-12-21 09:30:45 +00:00
|
|
|
///
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # Request::example(Method::Get, "/uri", |mut request| {
|
2016-12-21 09:30:45 +00:00
|
|
|
/// assert!(request.headers().is_empty());
|
|
|
|
///
|
2017-02-01 11:12:24 +00:00
|
|
|
/// request.add_header(ContentType::HTML);
|
2016-12-21 09:30:45 +00:00
|
|
|
/// assert!(request.headers().contains("Content-Type"));
|
|
|
|
/// assert_eq!(request.headers().len(), 1);
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # });
|
2016-12-21 09:30:45 +00:00
|
|
|
/// ```
|
2016-12-16 11:07:23 +00:00
|
|
|
#[inline(always)]
|
2017-06-06 20:41:04 +00:00
|
|
|
pub fn add_header<'h: 'r, H: Into<Header<'h>>>(&mut self, header: H) {
|
2017-02-01 11:12:24 +00:00
|
|
|
self.headers.add(header.into());
|
2016-12-16 11:07:23 +00:00
|
|
|
}
|
|
|
|
|
2017-06-25 04:00:50 +00:00
|
|
|
/// 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`.
|
2016-12-21 09:30:45 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # use rocket::Request;
|
|
|
|
/// # use rocket::http::Method;
|
|
|
|
/// use rocket::http::ContentType;
|
2016-12-21 09:30:45 +00:00
|
|
|
///
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # Request::example(Method::Get, "/uri", |mut request| {
|
2016-12-21 09:30:45 +00:00
|
|
|
/// assert!(request.headers().is_empty());
|
|
|
|
///
|
2017-04-13 09:36:51 +00:00
|
|
|
/// request.add_header(ContentType::Any);
|
|
|
|
/// assert_eq!(request.headers().get_one("Content-Type"), Some("*/*"));
|
2016-12-21 09:30:45 +00:00
|
|
|
///
|
2017-04-13 09:36:51 +00:00
|
|
|
/// request.replace_header(ContentType::PNG);
|
|
|
|
/// assert_eq!(request.headers().get_one("Content-Type"), Some("image/png"));
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # });
|
2016-12-21 09:30:45 +00:00
|
|
|
/// ```
|
2016-12-16 11:07:23 +00:00
|
|
|
#[inline(always)]
|
2017-06-06 20:41:04 +00:00
|
|
|
pub fn replace_header<'h: 'r, H: Into<Header<'h>>>(&mut self, header: H) {
|
2017-02-01 11:12:24 +00:00
|
|
|
self.headers.replace(header.into());
|
2016-12-16 11:07:23 +00:00
|
|
|
}
|
|
|
|
|
2017-06-06 20:41:04 +00:00
|
|
|
/// Returns a wrapped borrow to the cookies in `self`.
|
2016-12-21 09:30:45 +00:00
|
|
|
///
|
2017-06-25 04:00:50 +00:00
|
|
|
/// [`Cookies`](/rocket/http/enum.Cookies.html) implements internal
|
|
|
|
/// mutability, so this method allows you to get _and_ add/remove cookies in
|
|
|
|
/// `self`.
|
2016-12-21 09:30:45 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// Add a new cookie to a request's cookies:
|
|
|
|
///
|
|
|
|
/// ```rust
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # use rocket::Request;
|
|
|
|
/// # use rocket::http::Method;
|
|
|
|
/// use rocket::http::Cookie;
|
2016-12-21 09:30:45 +00:00
|
|
|
///
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # Request::example(Method::Get, "/uri", |mut request| {
|
2017-01-27 07:08:15 +00:00
|
|
|
/// request.cookies().add(Cookie::new("key", "val"));
|
|
|
|
/// request.cookies().add(Cookie::new("ans", format!("life: {}", 38 + 4)));
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # });
|
2016-12-21 09:30:45 +00:00
|
|
|
/// ```
|
2017-03-07 09:19:06 +00:00
|
|
|
pub fn cookies(&self) -> Cookies {
|
2017-06-24 09:49:16 +00:00
|
|
|
// FIXME: Can we do better? This is disappointing.
|
2017-05-20 02:38:56 +00:00
|
|
|
match self.state.cookies.try_borrow_mut() {
|
2017-06-06 20:41:04 +00:00
|
|
|
Ok(jar) => Cookies::new(jar, self.state.config.secret_key()),
|
2017-03-07 09:19:06 +00:00
|
|
|
Err(_) => {
|
|
|
|
error_!("Multiple `Cookies` instances are active at once.");
|
|
|
|
info_!("An instance of `Cookies` must be dropped before another \
|
|
|
|
can be retrieved.");
|
|
|
|
warn_!("The retrieved `Cookies` instance will be empty.");
|
|
|
|
Cookies::empty()
|
|
|
|
}
|
|
|
|
}
|
2016-12-16 11:07:23 +00:00
|
|
|
}
|
|
|
|
|
2017-04-14 21:35:22 +00:00
|
|
|
/// 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.
|
2016-12-21 09:30:45 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # use rocket::Request;
|
|
|
|
/// # use rocket::http::Method;
|
|
|
|
/// use rocket::http::ContentType;
|
2017-04-13 09:36:51 +00:00
|
|
|
///
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # Request::example(Method::Get, "/uri", |mut request| {
|
2017-04-13 09:36:51 +00:00
|
|
|
/// request.add_header(ContentType::JSON);
|
|
|
|
/// assert_eq!(request.content_type(), Some(&ContentType::JSON));
|
2017-06-25 04:00:50 +00:00
|
|
|
///
|
|
|
|
/// // The header is cached; it cannot be replaced after first access.
|
|
|
|
/// request.replace_header(ContentType::HTML);
|
|
|
|
/// assert_eq!(request.content_type(), Some(&ContentType::JSON));
|
2017-06-06 20:41:04 +00:00
|
|
|
/// # });
|
2016-12-21 09:30:45 +00:00
|
|
|
/// ```
|
2016-12-16 11:07:23 +00:00
|
|
|
#[inline(always)]
|
2017-04-13 09:36:51 +00:00
|
|
|
pub fn content_type(&self) -> Option<&ContentType> {
|
2017-05-20 02:38:56 +00:00
|
|
|
self.state.content_type.get_or_set(|| {
|
2017-04-13 09:36:51 +00:00
|
|
|
self.headers().get_one("Content-Type").and_then(|v| v.parse().ok())
|
|
|
|
}).as_ref()
|
2017-03-28 10:10:18 +00:00
|
|
|
}
|
|
|
|
|
2017-06-25 04:00:50 +00:00
|
|
|
/// 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.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use rocket::Request;
|
|
|
|
/// # use rocket::http::Method;
|
|
|
|
/// use rocket::http::Accept;
|
|
|
|
///
|
|
|
|
/// # Request::example(Method::Get, "/uri", |mut request| {
|
|
|
|
/// request.add_header(Accept::JSON);
|
|
|
|
/// assert_eq!(request.accept(), Some(&Accept::JSON));
|
|
|
|
///
|
|
|
|
/// // The header is cached; it cannot be replaced after first access.
|
|
|
|
/// request.replace_header(Accept::HTML);
|
|
|
|
/// assert_eq!(request.accept(), Some(&Accept::JSON));
|
|
|
|
/// # });
|
|
|
|
/// ```
|
2017-03-28 10:10:18 +00:00
|
|
|
#[inline(always)]
|
2017-04-13 09:36:51 +00:00
|
|
|
pub fn accept(&self) -> Option<&Accept> {
|
2017-05-20 02:38:56 +00:00
|
|
|
self.state.accept.get_or_set(|| {
|
2017-04-13 09:36:51 +00:00
|
|
|
self.headers().get_one("Accept").and_then(|v| v.parse().ok())
|
|
|
|
}).as_ref()
|
2017-03-28 10:10:18 +00:00
|
|
|
}
|
|
|
|
|
2017-06-25 04:00:50 +00:00
|
|
|
/// 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.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use rocket::Request;
|
|
|
|
/// use rocket::http::{Method, Accept, ContentType, MediaType};
|
|
|
|
///
|
|
|
|
/// # Request::example(Method::Get, "/uri", |mut request| {
|
|
|
|
/// 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));
|
|
|
|
/// # });
|
|
|
|
/// ```
|
2017-04-13 09:36:51 +00:00
|
|
|
pub fn format(&self) -> Option<&MediaType> {
|
|
|
|
static ANY: MediaType = MediaType::Any;
|
2018-02-04 10:07:28 +00:00
|
|
|
if self.method().supports_payload() {
|
2017-04-13 09:36:51 +00:00
|
|
|
self.content_type().map(|ct| ct.media_type())
|
2017-03-29 11:08:53 +00:00
|
|
|
} else {
|
|
|
|
// FIXME: Should we be using `accept_first` or `preferred`? Or
|
|
|
|
// should we be checking neither and instead pass things through
|
|
|
|
// where the client accepts the thing at all?
|
|
|
|
self.accept()
|
2017-04-13 09:36:51 +00:00
|
|
|
.map(|accept| accept.preferred().media_type())
|
|
|
|
.or(Some(&ANY))
|
2017-03-29 11:08:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-25 04:00:50 +00:00
|
|
|
/// Returns the configured application receive limits.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use rocket::Request;
|
|
|
|
/// # use rocket::http::Method;
|
|
|
|
/// # Request::example(Method::Get, "/uri", |mut request| {
|
|
|
|
/// let json_limit = request.limits().get("json");
|
|
|
|
/// # });
|
|
|
|
/// ```
|
2017-05-27 02:48:50 +00:00
|
|
|
pub fn limits(&self) -> &'r Limits {
|
2017-06-06 20:41:04 +00:00
|
|
|
&self.state.config.limits
|
2017-05-27 02:48:50 +00:00
|
|
|
}
|
|
|
|
|
2017-06-25 04:00:50 +00:00
|
|
|
/// 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.
|
|
|
|
///
|
|
|
|
/// # Example
|
2017-05-27 02:48:50 +00:00
|
|
|
///
|
2017-06-25 04:00:50 +00:00
|
|
|
/// ```rust
|
|
|
|
/// # use rocket::Request;
|
|
|
|
/// # use rocket::http::Method;
|
|
|
|
/// # Request::example(Method::Get, "/uri", |mut request| {
|
|
|
|
/// let route = request.route();
|
|
|
|
/// # });
|
|
|
|
/// ```
|
2017-05-27 02:48:50 +00:00
|
|
|
pub fn route(&self) -> Option<&'r Route> {
|
|
|
|
self.state.route.get()
|
|
|
|
}
|
|
|
|
|
2018-07-12 03:44:09 +00:00
|
|
|
/// Invokes the request guard implementation for `T`, returning its outcome.
|
2017-06-25 04:00:50 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2017-08-13 10:13:20 +00:00
|
|
|
/// Assuming a `User` request guard exists, invoke it:
|
2017-06-25 04:00:50 +00:00
|
|
|
///
|
|
|
|
/// ```rust,ignore
|
2017-08-13 10:13:20 +00:00
|
|
|
/// let outcome = request.guard::<User>();
|
2017-06-25 04:00:50 +00:00
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Retrieve managed state inside of a guard implementation:
|
|
|
|
///
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// use rocket::State;
|
|
|
|
///
|
|
|
|
/// let pool = request.guard::<State<Pool>>()?;
|
|
|
|
/// ```
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn guard<'a, T: FromRequest<'a, 'r>>(&'a self) -> Outcome<T, T::Error> {
|
|
|
|
T::from_request(self)
|
|
|
|
}
|
|
|
|
|
2018-08-13 07:45:18 +00:00
|
|
|
/// Retrieves the cached value for type `T` from the request-local cached
|
|
|
|
/// state of `self`. If no such value has previously been cached for this
|
|
|
|
/// request, `f` is called to produce the value which is subsequently
|
|
|
|
/// returned.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use rocket::http::Method;
|
|
|
|
/// # use rocket::Request;
|
|
|
|
/// # struct User;
|
|
|
|
/// fn current_user(request: &Request) -> User {
|
|
|
|
/// // Validate request for a given user, load from database, etc.
|
|
|
|
/// # User
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// # Request::example(Method::Get, "/uri", |request| {
|
|
|
|
/// let user = request.local_cache(|| current_user(request));
|
|
|
|
/// # });
|
|
|
|
/// ```
|
|
|
|
pub fn local_cache<T, F>(&self, f: F) -> &T
|
|
|
|
where F: FnOnce() -> T,
|
|
|
|
T: Send + Sync + 'static
|
|
|
|
{
|
|
|
|
self.state.cache.try_get()
|
|
|
|
.unwrap_or_else(|| {
|
|
|
|
self.state.cache.set(f());
|
|
|
|
self.state.cache.get()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-12-31 05:51:23 +00:00
|
|
|
/// Retrieves and parses into `T` the 0-indexed `n`th dynamic parameter from
|
2018-09-16 10:07:50 +00:00
|
|
|
/// the request. Returns `None` if `n` is greater than the number of params.
|
|
|
|
/// Returns `Some(Err(T::Error))` if the parameter type `T` failed to be
|
|
|
|
/// parsed from the `n`th dynamic parameter.
|
2016-10-01 03:22:06 +00:00
|
|
|
///
|
2016-12-21 09:30:45 +00:00
|
|
|
/// This method exists only to be used by manual routing. To retrieve
|
|
|
|
/// parameters from a request, use Rocket's code generation facilities.
|
|
|
|
///
|
2016-10-01 03:22:06 +00:00
|
|
|
/// # Example
|
|
|
|
///
|
2017-03-31 07:18:58 +00:00
|
|
|
/// Retrieve parameter `0`, which is expected to be a `String`, in a manual
|
2016-12-21 09:30:45 +00:00
|
|
|
/// route:
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::{Request, Data};
|
|
|
|
/// use rocket::handler::Outcome;
|
2016-10-01 03:22:06 +00:00
|
|
|
///
|
2017-02-02 10:16:21 +00:00
|
|
|
/// # #[allow(dead_code)]
|
2016-12-21 09:30:45 +00:00
|
|
|
/// fn name<'a>(req: &'a Request, _: Data) -> Outcome<'a> {
|
2018-09-16 10:07:50 +00:00
|
|
|
/// let string = req.get_param::<String>(0)
|
|
|
|
/// .and_then(|res| res.ok())
|
|
|
|
/// .unwrap_or_else(|| "unnamed".into());
|
|
|
|
///
|
|
|
|
/// Outcome::from(req, string)
|
2016-10-01 03:22:06 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
2018-09-16 10:07:50 +00:00
|
|
|
pub fn get_param<'a, T>(&'a self, n: usize) -> Option<Result<T, T::Error>>
|
|
|
|
where T: FromParam<'a>
|
|
|
|
{
|
|
|
|
Some(T::from_param(self.get_param_str(n)?))
|
2016-10-31 17:51:19 +00:00
|
|
|
}
|
|
|
|
|
2017-02-04 00:56:29 +00:00
|
|
|
/// Get the `n`th path parameter as a string, if it exists. This is used by
|
|
|
|
/// codegen.
|
2016-10-31 17:51:19 +00:00
|
|
|
#[doc(hidden)]
|
2017-03-31 07:18:58 +00:00
|
|
|
pub fn get_param_str(&self, n: usize) -> Option<&RawStr> {
|
2017-05-20 02:38:56 +00:00
|
|
|
let params = self.state.params.borrow();
|
2016-10-07 03:57:17 +00:00
|
|
|
if n >= params.len() {
|
|
|
|
debug!("{} is >= param count {}", n, params.len());
|
2016-12-16 11:07:23 +00:00
|
|
|
return None;
|
2016-08-26 08:55:11 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 11:07:23 +00:00
|
|
|
let (i, j) = params[n];
|
2016-12-31 05:51:23 +00:00
|
|
|
let path = self.uri.path();
|
|
|
|
if j > path.len() {
|
2016-12-16 11:07:23 +00:00
|
|
|
error!("Couldn't retrieve parameter: internal count incorrect.");
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2017-03-31 07:18:58 +00:00
|
|
|
Some(path[i..j].into())
|
2016-09-12 01:57:04 +00:00
|
|
|
}
|
|
|
|
|
2016-10-01 03:22:06 +00:00
|
|
|
/// Retrieves and parses into `T` all of the path segments in the request
|
2016-12-31 05:51:23 +00:00
|
|
|
/// URI beginning at the 0-indexed `n`th dynamic parameter. `T` must
|
|
|
|
/// implement [FromSegments](/rocket/request/trait.FromSegments.html), 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.
|
2016-12-21 09:30:45 +00:00
|
|
|
///
|
|
|
|
/// # Error
|
|
|
|
///
|
2018-09-16 10:07:50 +00:00
|
|
|
/// If there are less than `n` segments, returns `None`. If parsing the
|
|
|
|
/// segments failed, returns `Some(Err(T:Error))`.
|
2016-12-21 09:30:45 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
2016-10-01 03:22:06 +00:00
|
|
|
///
|
2016-12-31 05:51:23 +00:00
|
|
|
/// If the request URI is `"/hello/there/i/am/here"`, and the matched route
|
|
|
|
/// path for this request is `"/hello/<name>/i/<segs..>"`, then
|
2016-10-01 03:22:06 +00:00
|
|
|
/// `request.get_segments::<T>(1)` will attempt to parse the segments
|
2016-12-31 05:51:23 +00:00
|
|
|
/// `"am/here"` as type `T`.
|
2018-09-16 10:07:50 +00:00
|
|
|
pub fn get_segments<'a, T>(&'a self, n: usize) -> Option<Result<T, T::Error>>
|
|
|
|
where T: FromSegments<'a>
|
|
|
|
{
|
|
|
|
Some(T::from_segments(self.get_raw_segments(n)?))
|
2016-10-31 17:51:19 +00:00
|
|
|
}
|
|
|
|
|
2016-12-31 05:51:23 +00:00
|
|
|
/// Get the segments beginning at the `n`th dynamic parameter, if they
|
2017-02-04 00:56:29 +00:00
|
|
|
/// exist. Used by codegen.
|
2016-10-31 17:51:19 +00:00
|
|
|
#[doc(hidden)]
|
2016-12-31 05:51:23 +00:00
|
|
|
pub fn get_raw_segments(&self, n: usize) -> Option<Segments> {
|
2017-05-20 02:38:56 +00:00
|
|
|
let params = self.state.params.borrow();
|
2016-12-31 05:51:23 +00:00
|
|
|
if n >= params.len() {
|
|
|
|
debug!("{} is >= param (segments) count {}", n, params.len());
|
|
|
|
return None;
|
2016-09-08 07:02:17 +00:00
|
|
|
}
|
2016-12-31 05:51:23 +00:00
|
|
|
|
|
|
|
let (i, j) = params[n];
|
|
|
|
let path = self.uri.path();
|
|
|
|
if j > path.len() {
|
|
|
|
error!("Couldn't retrieve segments: internal count incorrect.");
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(Segments(&path[i..j]))
|
2016-09-08 07:02:17 +00:00
|
|
|
}
|
|
|
|
|
2017-05-19 10:29:08 +00:00
|
|
|
/// Set `self`'s parameters given that the route used to reach this request
|
|
|
|
/// was `route`. This should only be used internally by `Rocket` as improper
|
|
|
|
/// use may result in out of bounds indexing.
|
|
|
|
/// TODO: Figure out the mount path from here.
|
|
|
|
#[inline]
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
crate fn set_route(&self, route: &'r Route) {
|
2017-05-27 02:48:50 +00:00
|
|
|
self.state.route.set(Some(route));
|
2017-05-20 02:38:56 +00:00
|
|
|
*self.state.params.borrow_mut() = route.get_param_indexes(self.uri());
|
2017-05-19 10:29:08 +00:00
|
|
|
}
|
|
|
|
|
2018-04-08 23:14:15 +00:00
|
|
|
/// Set the method of `self`, even when `self` is a shared reference.
|
2018-02-04 10:07:28 +00:00
|
|
|
#[inline(always)]
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
crate fn _set_method(&self, method: Method) {
|
2018-02-04 10:07:28 +00:00
|
|
|
self.method.set(method);
|
|
|
|
}
|
|
|
|
|
2017-05-19 10:29:08 +00:00
|
|
|
/// Replace all of the cookies in `self` with those in `jar`.
|
|
|
|
#[inline]
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
crate fn set_cookies(&mut self, jar: CookieJar) {
|
2017-05-20 02:38:56 +00:00
|
|
|
self.state.cookies = RefCell::new(jar);
|
2017-05-19 10:29:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the managed state T, if it exists. For internal use only!
|
|
|
|
#[inline(always)]
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
crate fn get_state<T: Send + Sync + 'static>(&self) -> Option<&'r T> {
|
2017-12-27 04:27:47 +00:00
|
|
|
self.state.managed.try_get()
|
2017-03-08 11:28:12 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 09:30:45 +00:00
|
|
|
/// Convert from Hyper types into a Rocket Request.
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
crate fn from_hyp(
|
|
|
|
rocket: &'r Rocket,
|
|
|
|
h_method: hyper::Method,
|
|
|
|
h_headers: hyper::header::Headers,
|
|
|
|
h_uri: hyper::RequestUri,
|
|
|
|
h_addr: SocketAddr,
|
|
|
|
) -> Result<Request<'r>, String> {
|
2016-12-16 11:07:23 +00:00
|
|
|
// Get a copy of the URI for later use.
|
2016-08-26 08:55:11 +00:00
|
|
|
let uri = match h_uri {
|
2016-12-21 08:09:22 +00:00
|
|
|
hyper::RequestUri::AbsolutePath(s) => s,
|
2016-09-30 22:20:11 +00:00
|
|
|
_ => return Err(format!("Bad URI: {}", h_uri)),
|
2016-08-27 01:37:28 +00:00
|
|
|
};
|
|
|
|
|
2016-12-16 11:07:23 +00:00
|
|
|
// Ensure that the method is known. TODO: Allow made-up methods?
|
2016-08-27 01:37:28 +00:00
|
|
|
let method = match Method::from_hyp(&h_method) {
|
2016-10-09 04:37:28 +00:00
|
|
|
Some(method) => method,
|
2016-12-16 11:07:23 +00:00
|
|
|
None => return Err(format!("Invalid method: {}", h_method))
|
2016-08-26 08:55:11 +00:00
|
|
|
};
|
|
|
|
|
Overhaul URI types.
This is fairly large commit with several entangled logical changes.
The primary change in this commit is to completely overhaul how URI
handling in Rocket works. Prior to this commit, the `Uri` type acted as
an origin API. Its parser was minimal and lenient, allowing URIs that
were invalid according to RFC 7230. By contrast, the new `Uri` type
brings with it a strict RFC 7230 compliant parser. The `Uri` type now
represents any kind of valid URI, not simply `Origin` types. Three new
URI types were introduced:
* `Origin` - represents valid origin URIs
* `Absolute` - represents valid absolute URIs
* `Authority` - represents valid authority URIs
The `Origin` type replaces `Uri` in many cases:
* As fields and method inputs of `Route`
* The `&Uri` request guard is now `&Origin`
* The `uri!` macro produces an `Origin` instead of a `Uri`
The strict nature of URI parsing cascaded into the following changes:
* Several `Route` methods now `panic!` on invalid URIs
* The `Rocket::mount()` method is (correctly) stricter with URIs
* The `Redirect` constructors take a `TryInto<Uri>` type
* Dispatching of a `LocalRequest` correctly validates URIs
Overall, URIs are now properly and uniformly handled throughout Rocket's
codebase, resulting in a more reliable and correct system.
In addition to these URI changes, the following changes are also part of
this commit:
* The `LocalRequest::cloned_dispatch()` method was removed in favor of
chaining `.clone().dispatch()`.
* The entire Rocket codebase uses `crate` instead of `pub(crate)` as a
visibility modifier.
* Rocket uses the `crate_visibility_modifier` and `try_from` features.
A note on unsafety: this commit introduces many uses of `unsafe` in the
URI parser. All of these uses are a result of unsafely transforming byte
slices (`&[u8]` or similar) into strings (`&str`). The parser ensures
that these casts are safe, but of course, we must label their use
`unsafe`. The parser was written to be as generic and efficient as
possible and thus can parse directly from byte sources. Rocket, however,
does not make use of this fact and so would be able to remove all uses
of `unsafe` by parsing from an existing `&str`. This should be
considered in the future.
Fixes #443.
Resolves #263.
2018-07-29 01:26:15 +00:00
|
|
|
// We need to re-parse the URI since we don't trust Hyper... :(
|
|
|
|
let uri = Origin::parse_owned(uri).map_err(|e| e.to_string())?;
|
|
|
|
|
2016-12-16 11:07:23 +00:00
|
|
|
// Construct the request object.
|
2017-06-06 20:41:04 +00:00
|
|
|
let mut request = Request::new(rocket, method, uri);
|
2017-03-28 10:10:18 +00:00
|
|
|
request.set_remote(h_addr);
|
2016-09-12 01:57:04 +00:00
|
|
|
|
2017-03-08 11:28:12 +00:00
|
|
|
// Set the request cookies, if they exist.
|
2017-01-27 07:08:15 +00:00
|
|
|
if let Some(cookie_headers) = h_headers.get_raw("Cookie") {
|
2017-03-08 11:28:12 +00:00
|
|
|
let mut cookie_jar = CookieJar::new();
|
2017-01-27 07:08:15 +00:00
|
|
|
for header in cookie_headers {
|
|
|
|
let raw_str = match ::std::str::from_utf8(header) {
|
|
|
|
Ok(string) => string,
|
|
|
|
Err(_) => continue
|
|
|
|
};
|
|
|
|
|
2018-07-18 16:45:20 +00:00
|
|
|
for cookie_str in raw_str.split(';').map(|s| s.trim()) {
|
2017-06-06 20:41:04 +00:00
|
|
|
if let Some(cookie) = Cookies::parse_cookie(cookie_str) {
|
2017-03-08 11:28:12 +00:00
|
|
|
cookie_jar.add_original(cookie);
|
|
|
|
}
|
2017-01-27 07:08:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-08 11:28:12 +00:00
|
|
|
request.set_cookies(cookie_jar);
|
2016-12-16 00:34:19 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 11:07:23 +00:00
|
|
|
// Set the rest of the headers.
|
|
|
|
for hyp in h_headers.iter() {
|
2017-03-11 01:42:09 +00:00
|
|
|
if let Some(header_values) = h_headers.get_raw(hyp.name()) {
|
|
|
|
for value in header_values {
|
2017-03-16 02:20:20 +00:00
|
|
|
// This is not totally correct since values needn't be UTF8.
|
|
|
|
let value_str = String::from_utf8_lossy(value).into_owned();
|
|
|
|
let header = Header::new(hyp.name().to_string(), value_str);
|
2017-03-11 01:42:09 +00:00
|
|
|
request.add_header(header);
|
|
|
|
}
|
|
|
|
}
|
2016-12-16 11:07:23 +00:00
|
|
|
}
|
2016-08-27 01:37:28 +00:00
|
|
|
|
|
|
|
Ok(request)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-06 20:41:04 +00:00
|
|
|
impl<'r> fmt::Debug for Request<'r> {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt.debug_struct("Request")
|
|
|
|
.field("method", &self.method)
|
|
|
|
.field("uri", &self.uri)
|
|
|
|
.field("headers", &self.headers())
|
|
|
|
.field("remote", &self.remote())
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-16 11:07:23 +00:00
|
|
|
impl<'r> fmt::Display for Request<'r> {
|
2016-10-01 03:22:06 +00:00
|
|
|
/// Pretty prints a Request. This is primarily used by Rocket's logging
|
|
|
|
/// infrastructure.
|
2016-08-27 01:37:28 +00:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2018-02-04 10:07:28 +00:00
|
|
|
write!(f, "{} {}", Paint::green(self.method()), Paint::blue(&self.uri))?;
|
2017-07-11 11:35:05 +00:00
|
|
|
|
|
|
|
// Print the requests media type when the route specifies a format.
|
|
|
|
if let Some(media_type) = self.format() {
|
|
|
|
if !media_type.is_any() {
|
|
|
|
write!(f, " {}", Paint::yellow(media_type))?;
|
2017-02-01 11:12:24 +00:00
|
|
|
}
|
2016-10-13 02:08:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
2016-03-15 03:43:52 +00:00
|
|
|
}
|
|
|
|
}
|