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
use crate::File;

/// A reference to a commit in the repository.
pub struct Commit<'a> {
    // browse: &'a GitBrowse<'a>,
    pub(crate) commit: git2::Commit<'a>,
}

impl<'a> Commit<'a> {
    pub(crate) fn from_file(_file: &'a File<'a>, commit: git2::Commit<'a>) -> Self {
        Self {
            // browse: file.browse,
            commit,
        }
    }

    /// The ID of the commit.
    pub fn id(&self) -> String {
        let short_id = self.commit.as_object().short_id().unwrap();
        short_id.as_str().unwrap().to_owned()
    }

    /// The message of the commit.
    pub fn message(&self) -> &str {
        self.commit.message_raw().unwrap()
    }
}