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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
//! Pull Commits interface

use super::{Github, Result, Iter};
use users::User;

fn identity<T>(x: T) -> T {
    x
}

/// A structure for interfacing with a pull commits
pub struct PullCommits<'a> {
    github: &'a Github,
    owner: String,
    repo: String,
    number: u64,
}

impl<'a> PullCommits<'a> {
    /// creates a new instance
    /// use `github.repo(...).pulls().get(number).commits()` instead
    pub fn new<O, R>(github: &'a Github, owner: O, repo: R, number: u64) -> PullCommits<'a>
        where O: Into<String>,
              R: Into<String>
    {
        PullCommits {
            github: github,
            owner: owner.into(),
            repo: repo.into(),
            number: number,
        }
    }

    /// list pull commits
    pub fn list(&self) -> Result<Vec<PullCommit>> {
        let uri = format!("/repos/{}/{}/pulls/{}/commits",
                          self.owner,
                          self.repo,
                          self.number);
        self.github.get::<Vec<PullCommit>>(&uri)
    }

    /// provides an iterator over all pages of pull commits
    pub fn iter(&'a self) -> Result<Iter<'a, Vec<PullCommit>, PullCommit>> {
        let uri = format!("/repos/{}/{}/pulls/{}/commits",
                          self.owner,
                          self.repo,
                          self.number);
        self.github.iter(uri, identity)
    }
}

// representations

/// Representation of a pull request commit
#[derive(Debug, Deserialize)]
pub struct PullCommit {
    pub url: String,
    pub sha: String,
    pub html_url: String,
    pub comments_url: String,
    pub commit: CommitDetails,
    pub author: User,
    pub committer: User,
    pub parents: Vec<CommitRef>,
}

/// Representation of a pull request commit details
#[derive(Debug, Deserialize)]
pub struct CommitDetails {
    pub url: String,
    pub author: UserStamp,
    pub committer: Option<UserStamp>,
    pub message: String,
    pub tree: CommitRef,
    pub comment_count: u64,
}

/// Representation of a reference to a commit
#[derive(Debug, Deserialize)]
pub struct CommitRef {
    pub url: String,
    pub sha: String,
}

/// Representation of a git user
#[derive(Debug, Deserialize)]
pub struct UserStamp {
    pub name: String,
    pub email: String,
    pub date: String,
}