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;

/// Used to query information from the GitHub API to possibly be used in
/// a `Mutation` or for information to make decisions with how to interact.
pub struct Query {
    pub(crate) query: String,
}

impl Query {
    /// Create a new `Query`
    pub fn new() -> Self {
        Self { query: String::new() }
    }
    /// Create a new `Query` using the given value as the input for the query to
    /// GitHub. Any other methods used will assume the `String` is empty. This
    /// is a shortcut for doing:
    ///
    /// ```no_test
    /// let q = Query::new();
    /// q.raw_query("my query which won't work");
    /// ```
    ///
    /// as
    ///
    /// ```no_test
    /// let q = Query::new_raw("my query which won't work");
    /// ```
    pub fn new_raw<T>(q: T) -> Self
        where T: ToString
    {
        Self { query: q.to_string() }
    }

    /// Whatever you put here becomes your query and replaces anything you might
    /// have built up before. This assumes you know what you're doing with the
    /// API so no guarantees can be made here that it will work, only that if
    /// used this can be used to make a query using the `client::Github` type.
    pub fn raw_query<T>(&mut self, q: T)
        where T: ToString
    {
        self.query = q.to_string();
    }
}

impl IntoGithubRequest for Query {
    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.query);
            q.push_str("\" }");
            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)
    }
}