forked from octokit/octokit.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommitApi.js
57 lines (50 loc) · 1.69 KB
/
CommitApi.js
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
/**
* Copyright 2010 Ajax.org B.V.
*
* This product includes software developed by
* Ajax.org B.V. (http://www.ajax.org/).
*
* Author: Fabian Jaokbs <[email protected]>
*/
"use strict";
var util = require("util");
var AbstractApi = require("./AbstractApi").AbstractApi;
var CommitApi = exports.CommitApi = function(api) {
this.$api = api;
};
util.inherits(CommitApi, AbstractApi);
(function() {
/**
* List commits by username, repo and branch
* http://develop.github.com/p/commits.html#listing_commits_on_a_branch
*
* @param {String} username the username
* @param {String} repo the repo
* @param {String} $branch the branch
*/
this.getBranchCommits = function(username, repo, branch, callback)
{
this.$api.get(
'commits/list/' + encodeURI(username) + "/" + encodeURI(repo) + "/" + encodeURI(branch),
null, null,
this.$createListener(callback, "commits")
);
};
/**
* List commits by username, repo, branch and path
* http://develop.github.com/p/commits.html#listing_commits_for_a_file
*
* @param {String} username the username
* @param {String} repo the repo
* @param {String} branch the branch
* @param {String} path the path
*/
this.getFileCommits = function(username, repo, branch, path, callback)
{
this.$api.get(
'commits/list/' + encodeURI(username) + "/" + encodeURI(repo) + "/" + encodeURI(branch) + "/" + encodeURI(path),
null, null,
this.$createListener(callback, "commits")
);
};
}).call(CommitApi.prototype);