1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
use hyper;
use hyper::header::UserAgent;
use super::Response;
use super::RequestsResult;

const DEFAULT_USER_AGENT: &'static str = concat!("requests-rs/", env!("CARGO_PKG_VERSION"));

fn default_user_agent() -> UserAgent {
    UserAgent(DEFAULT_USER_AGENT.to_owned())
}

pub fn get(url: &str) -> RequestsResult {
    hyper::Client::new()
        .get(url)
        .header(default_user_agent())
        .send()
        .map(Response::from)
}

pub fn post(url: &str) -> RequestsResult {
    hyper::Client::new()
        .post(url)
        .header(default_user_agent())
        .send()
        .map(Response::from)
}

pub fn put(url: &str) -> RequestsResult {
    hyper::Client::new()
        .put(url)
        .header(default_user_agent())
        .send()
        .map(Response::from)
}

pub fn head(url: &str) -> RequestsResult {
    hyper::Client::new()
        .head(url)
        .header(default_user_agent())
        .send()
        .map(Response::from)
}

pub fn delete(url: &str) -> RequestsResult {
    hyper::Client::new()
        .delete(url)
        .header(default_user_agent())
        .send()
        .map(Response::from)
}