Struct rouille::Request

source ·
pub struct Request { /* private fields */ }
Expand description

Represents a request that your handler must answer to.

This can be either a real request (received by the HTTP server) or a mock object created with one of the fake_* constructors.

Implementations§

source§

impl Request

source

pub fn fake_http<U, M>( method: M, url: U, headers: Vec<(String, String)>, data: Vec<u8> ) -> Requestwhere U: Into<String>, M: Into<String>,

Builds a fake HTTP request to be used during tests.

The remote address of the client will be 127.0.0.1:12345. Use fake_http_from to specify what the client’s address should be.

source

pub fn fake_http_from<U, M>( from: SocketAddr, method: M, url: U, headers: Vec<(String, String)>, data: Vec<u8> ) -> Requestwhere U: Into<String>, M: Into<String>,

Builds a fake HTTP request to be used during tests.

source

pub fn fake_https<U, M>( method: M, url: U, headers: Vec<(String, String)>, data: Vec<u8> ) -> Requestwhere U: Into<String>, M: Into<String>,

Builds a fake HTTPS request to be used during tests.

The remote address of the client will be 127.0.0.1:12345. Use fake_https_from to specify what the client’s address should be.

source

pub fn fake_https_from<U, M>( from: SocketAddr, method: M, url: U, headers: Vec<(String, String)>, data: Vec<u8> ) -> Requestwhere U: Into<String>, M: Into<String>,

Builds a fake HTTPS request to be used during tests.

source

pub fn remove_prefix(&self, prefix: &str) -> Option<Request>

If the decoded URL of the request starts with prefix, builds a new Request that is the same as the original but without that prefix.

Example
fn handle(request: &Request) -> Response {
    if let Some(request) = request.remove_prefix("/static") {
        return rouille::match_assets(&request, "/static");
    }

    // ...
}
source

pub fn is_secure(&self) -> bool

Returns true if the request uses HTTPS, and false if it uses HTTP.

Example
use rouille::{Request, Response};

fn handle(request: &Request) -> Response {
    if !request.is_secure() {
        return Response::redirect_303(format!("https://example.com"));
    }

    // ...
}
source

pub fn method(&self) -> &str

Returns the method of the request (GET, POST, etc.).

source

pub fn raw_url(&self) -> &str

Returns the raw URL requested by the client. It is not decoded and thus can contain strings such as %20, and the query parameters such as ?p=hello.

See also url().

Example
use rouille::Request;

let request = Request::fake_http("GET", "/hello%20world?foo=bar", vec![], vec![]);
assert_eq!(request.raw_url(), "/hello%20world?foo=bar");
source

pub fn raw_query_string(&self) -> &str

Returns the raw query string requested by the client. In other words, everything after the first ? in the raw url.

Returns the empty string if no query string.

source

pub fn url(&self) -> String

Returns the URL requested by the client.

Contrary to raw_url, special characters have been decoded and the query string (eg ?p=hello) has been removed.

If there is any non-unicode character in the URL, it will be replaced with U+FFFD.

Note: This function will decode the token %2F will be decoded as /. However the official specifications say that such a token must not count as a delimiter for URL paths. In other words, /hello/world is not the same as /hello%2Fworld.

Example
use rouille::Request;

let request = Request::fake_http("GET", "/hello%20world?foo=bar", vec![], vec![]);
assert_eq!(request.url(), "/hello world");
source

pub fn get_param(&self, param_name: &str) -> Option<String>

Returns the value of a GET parameter or None if it doesn’t exist.

source

pub fn header(&self, key: &str) -> Option<&str>

Returns the value of a header of the request.

Returns None if no such header could be found.

source

pub fn headers(&self) -> HeadersIter<'_>

Returns a list of all the headers of the request.

source

pub fn do_not_track(&self) -> Option<bool>

Returns the state of the DNT (Do Not Track) header.

If the header is missing or is malformed, None is returned. If the header exists, Some(true) is returned if DNT is 1 and Some(false) is returned if DNT is 0.

Example
use rouille::{Request, Response};

fn handle(request: &Request) -> Response {
    if !request.do_not_track().unwrap_or(false) {
        track_user(&request);
    }

    // ...
}
source

pub fn data(&self) -> Option<RequestBody<'_>>

Returns the body of the request.

The body can only be retrieved once. Returns None is the body has already been retrieved before.

Example
use std::io::Read;
use rouille::{Request, Response, ResponseBody};

fn echo(request: &Request) -> Response {
    let mut data = request.data().expect("Oops, body already retrieved, problem \
                                          in the server");

    let mut buf = Vec::new();
    match data.read_to_end(&mut buf) {
        Ok(_) => (),
        Err(_) => return Response::text("Failed to read body")
    };

    Response {
        data: ResponseBody::from_data(buf),
        .. Response::text("")
    }
}
source

pub fn remote_addr(&self) -> &SocketAddr

Returns the address of the client that made this request.

Example
use rouille::{Request, Response};

fn handle(request: &Request) -> Response {
    Response::text(format!("Your IP is: {:?}", request.remote_addr()))
}

Trait Implementations§

source§

impl Debug for Request

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V