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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
use IntoGithubRequest;
use hyper::{ Uri, Method, Request };
use hyper::header::{ Authorization, ContentType, UserAgent };
use errors::*;
use std::str::FromStr;
pub struct Mutation {
pub(crate) mutation: String,
}
impl Mutation {
pub fn new() -> Self {
Self { mutation: String::new() }
}
pub fn new_raw<T>(m: T) -> Self
where T: ToString
{
Self { mutation: m.to_string() }
}
pub fn raw_mutation<T>(&mut self, m: T)
where T: ToString
{
self.mutation = m.to_string();
}
}
impl IntoGithubRequest for Mutation {
fn into_github_req(&self, token: &str) -> Result<Request> {
let mut req = Request::new(
Method::Post,
Uri::from_str("https://api.github.com/graphql")
.chain_err(|| "Unable to for URL to make the request")?);
let mut q = String::from("{ \"query\": \"");
q.push_str(&self.mutation);
q.push_str("\" }");
println!("{}", q);
req.set_body(q);
let token = String::from("token ") + &token;
{
let headers = req.headers_mut();
headers.set(ContentType::json());
headers.set(UserAgent::new(String::from("github-rs")));
headers.set(Authorization(token));
}
Ok(req)
}
}