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
use requests::*;
use github::Client;
use error::*;
use json::{Repo, RepoCreate};
use serde_json;

/// Trait definition for endpoints grouped under `Repositories` in the Github API specification
pub trait Repos {
    /// ### Request Type:
    /// `POST`
    /// ### Endpoint:
    /// /orgs/:org/repos
    /// ### Description
    /// Creates a new repo in the specified organization for the authenticated user and returns the new `Repo`s stats
    fn post_org_repos(&self, organization: String, repo: RepoCreate) -> Result<Repo>;

    /// ### Request Type:
    /// `POST`
    /// ### Endpoint:
    /// /user/repos
    /// ### Description
    /// Creates a new repo for the authenticated user and returns the new `Repo`s stats
    fn post_user_repos(&self, repo: RepoCreate) -> Result<Repo>;
}

/// Implementation of the Repos trait for the `Client`
impl Repos for Client {
    /// ### Request Type:
    /// `POST`
    /// ### Endpoint:
    /// /orgs/:org/repos
    /// ### Description
    /// Creates a new repo in the specified organization for the authenticated user and returns the new `Repo`s stats
    fn post_org_repos(&self, organization: String, repo: RepoCreate) -> Result<Repo> {
        let url = format!("https://api.github.com/orgs/{}/repos", organization);
        let res = post(&url,
                       self.get_headers().clone(),
                       serde_json::to_string(&repo)?)?;
        try_serde!(serde_json::from_str(&res))
    }

    /// ### Request Type:
    /// `POST`
    /// ### Endpoint:
    /// /user/repos
    /// ### Description
    /// Creates a new repo for the authenticated user and returns the new `Repo`s stats
    fn post_user_repos(&self, repo: RepoCreate) -> Result<Repo> {
        let url = "https://api.github.com/user/repos";
        let res = post(url,
                       self.get_headers().clone(),
                       serde_json::to_string(&repo)?)?;
        try_serde!(serde_json::from_str(&res))
    }
}