gh3 is a client-side Javascript API v3 wrapper for GitHub
gh3 is async.js compliant. (thank you to Atinux and mklabs)
gh3 supports several kind of objects:
Gh3.UsersGh3.UserGh3.RepositoriesGh3.RepositoryGh3.IssueGh3.PullGh3.BranchGh3.Dirinherits ofGh3.ItemContentGh3.Fileinherits ofGh3.ItemContentGh3.CommitGh3.GistsGh3.GistGh3.GistComment
You can extend all Gh3 types, eg :
var myComment = Gh3.GistComment.extend({
//...
})See § "Extend User" for more details.
Gh3.Users.search(keyword, pagesInfo, callback)retrieveGh3.Userinstances by keywordpagesInfo:{ start_page : which_page }(always 100 items max. per page) see http://developer.github.com/v3/search/
Gh3.Users.getAll(): return an array of allGh3.Userinstances (you have to callsearch()before)Gh3.Users.getByName(name): get a user by his name (you have to callsearch()before) (return first found user)Gh3.Users.each(callback): executecallbackfor each found users (you have to callsearch()before)Gh3.Users.reverse(): reverse order of users (you have to callfetch()before)Gh3.Users.sort(comparator): sort users (you have to callsearch()before)Gh3.Users.filter(comparator): return an array ofGh3.Userinstances filtered bycomparator(you have to callsearch()before)
Gh3.Users.search("mad", {start_page : 3}, function (err, response) {
if(err) {
throw "outch ..."
}
//console.log(Gh3.Users.getAll());
console.log(response.getAll());
response.each(function (user) {
console.log(user.name, user.login, user.repos, user)
});
});See samples/10-users.html
var k33g = new Gh3.User("k33g");fetch(callback): retrieve GitHub User's informations
k33g.fetch(function (err, resUser){
if(err) {
throw "outch ..."
}
console.log("Blog : ", resUser.blog); // == k33g.blog
console.log("Name : ", resUser.name);
//etc. ...
});See /samples/01-user.html
I've cribbed the Backbone object model :
var GitHubUser = Gh3.User.extend({//instance members
constructor : function(login) {
GitHubUser.__super__.constructor.call(this, login);
GitHubUser.allUsers.push(this);
}
},{ //Static members
allUsers : [],
each : function (callback) {
_.each(GitHubUser.allUsers, function (user) {
callback(user);
})
}
});
var k33g = new GitHubUser("k33g")
, loicdescotte = new GitHubUser("loicdescotte")
, mklabs = new GitHubUser("mklabs")
, chamerling = new GitHubUser("chamerling");
GitHubUser.each(function (user) {
user.fetch(function (err, resUser) {
if(err) {
throw "outch ..."
}
console.log(JSON.stringify(resUser));
});
})See samples/02-user.html
var k33gRepositories = new Gh3.Repositories(k33g);
k33gRepositories.fetch(function () {
console.log("Repositories", k33gRepositories);
}, function(){/*error*/},{page:1, per_page:500, direction : "desc"});
//all repositories, one page, 500 items per page, sort : descendingfetch(pagesInfoAndParameters, paginationInfo, callback)retrieveGh3.Repositoryinstances of a userpagesInfoAndParameters:{ pages : number_of_pages, per_page : number_of_repositories_per page }- you can pass other parameters as :
direction : "desc", see http://developer.github.com/v3/repos/ paginationInfo: which page. Possible values : see http://developer.github.com/v3/#pagination- "next"
- "last"
- "first"
- "prev"
getRepositories(): return an array ofGh3.Repositoryinstances (you have to callfetch()before)getRepositoryByName(name): get a repository by his name (you have to callfetch()before)eachRepository(callback): executecallbackfor each repository of the user (you have to callfetch()before)reverseRepositories(): reverse order of repositories (you have to callfetch()before)sortRepositories(comparator): sort repositories (you have to callfetch()before)filterRepositories(comparator): return an array ofGh3.Repositoryinstances filtered bycomparator(you have to callfetchContents()before)
Gh3.Repositories.search(keyword, pagesInfo, callback)retrieveGh3.Repositoryinstances by keywordpagesInfo:{ start_page : which_page }(always 100 items max. per page) see http://developer.github.com/v3/search/
Gh3.Repositories.getAll(): return an array of allGh3.Repositoryinstances (you have to callsearch()before)Gh3.Repositories.getByName(name): get a repository by his name (you have to callsearch()before) (return first found repository)Gh3.Repositories.each(callback): executecallbackfor each found repositories (you have to callsearch()before)Gh3.Repositories.reverse(): reverse order of repositories (you have to callfetch()before)Gh3.Repositories.sort(comparator): sort repositories (you have to callsearch()before)Gh3.Repositories.filter(comparator): return an array ofGh3.Repositoryinstances filtered bycomparator(you have to callsearch()before)
See samples/03-repository.html
See samples/09-repositories.html
var k33g = new Gh3.User("k33g"); // You need a user first
var k33gBlog = new Gh3.Repository("k33g.github.com", k33g);
k33gBlog.fetch(function (err, res) {
if(err) { throw "outch ..." }
console.log(k33gBlog);
});getBranches(): return array ofGh3.Branchinstancesfetch(callback): retrieve repository's informationsfetchBranches(callback): retrieve repository's branches (you have to callfetch()before)getBranchByName(branch_name): return aGh3.Branchinstance found by name (you have to callfetchBranches()before)eachBranch(callback): executecallbackfor each branch of the repository (you have to callfetchBranches()before)reverseBranches(): reverse order of branchessortBranches(comparator): sort branchesfetchIssuesByLabel: receive repository issues with certain label or labels
After calling repository fetch() method :
k33gBlog.fetchBranches(function (err, res) {
if(err) { throw "outch ..." }
console.log(k33gBlog.getBranches());
})branches is an array of Gh3.Branch instances populated when fetchBranches() is called.
You can do that too :
k33gBlog.fetchBranches(function (err, res) {
if(err) { throw "outch ..." }
console.log("Array of branches : ", k33gBlog.getBranches());
k33gBlog.eachBranch(function (branch) {
console.log(branch.name);
})
//and :
console.log("Master Branch : ", k33gBlog.getBranchByName("master"));
})See samples/03-repository.html
fetchContents(callback): retrieveGh3.Fileinstances and/orGh3.Dirinstances of the branchgetContents(): return array ofGh3.ItemContentinstances (soGh3.Fileinstances and/orGh3.Dirinstances)getFileByName(file_name): return aGh3.Fileinstance found by name (you have to callfetchContents()before)getDirByName(dir_name): return aGh3.Dirinstance found by name (you have to callfetchContents()before)eachContent(callback): executecallbackfor each content item of the branch (you have to callfetchContents()before)reverseContents(): reverse order of contentssortContents(comparator): sort contentsfilterContents(comparator): return an array ofGh3.ItemContentinstances filtered bycomparator(you have to callfetchContents()before)
You have to declare, get repository informations and fetch branches before calling fetchContents(callback) :
var k33g = new Gh3.User("k33g")
, k33gBlog = new Gh3.Repository("k33g.github.com", k33g);
k33gBlog.fetch(function (err, res) {
if(err) { throw "outch ..." }
k33gBlog.fetchBranches(function (err, res) {
if(err) { throw "outch ..." }
var master = k33gBlog.getBranchByName("master");
master.fetchContents(function (err, res) {
if(err) { throw "outch ..." }
master.eachContent(function (content) {
console.log(content.path, content.type);
});
});
})
});See samples/04-branch.html
You obtain a list of files and directories. You can directly fetch raw content of a file or fetch contents of a directory.
fetchContent(callback): retrieve (raw) content of the filefetchCommits(callback): retrieve commits of the filegetRawContent(): return raw content of the file (you have to callfetchContent()before)getCommits(): return array ofGh3.Commitinstances (you have to callfetchCommits()before)getLastCommit(): return lastGh3.CommitinstancegetFirstCommit(): return firstGh3.CommitinstanceeachCommit(callback): executecallbackfor each commit of the file (you have to callfetchCommits()before)filterCommits(comparator): return an array ofGh3.Commitinstances filtered bycomparator(you have to callfetchCommits()before)reverseCommits(): reverse order of commitssortCommits(comparator): sort commits
master.fetchContents(function (err, res) {
if(err) { throw "outch ..." }
var myfile = master.getFileByName("index.html");
/* this way is possible to :
var myfile = master.getContents()[8];
*/
myfile.fetchContent(function (err, res) {
if(err) { throw "outch ..." }
console.log(myfile.getRawContent());
});
});See samples/05-file.html
myfile.fetchCommits(function (err, res) {
if(err) { throw "outch ..." }
console.log(myfile.getCommits());
myfile.eachCommit(function (commit) {
console.log(commit.author.login, commit.message, commit.date);
});
});See samples/05-file.html
It works much like a Gh3.Branch.
fetchContents(callback): retrieveGh3.Fileinstances and/orGh3.Dirinstances of the directorygetContents(): return array ofGh3.ItemContentinstances (soGh3.Fileinstances and/orGh3.Dirinstances)getFileByName(file_name): return aGh3.Fileinstance found by name (you have to callfetchContents()before)getDirByName(dir_name): return aGh3.Dirinstance found by name (you have to callfetchContents()before)eachContent(callback): executecallbackfor each content item of the directory (you have to callfetchContents()before)reverseContents(): reverse order of contentssortContents(comparator): sort contentsfilterContents(comparator): return an array ofGh3.ItemContentinstances filtered bycomparator(you have to callfetchContents()before)
master.fetchContents(function (err, res) {
if(err) { throw "outch ..." }
var dir = master.getDirByName('_posts');
dir.fetchContents(function (err, res) {
if(err) { throw "outch ..." }
console.log(dir.getContents());
dir.eachContent(function (content) {
console.log(content.name, content.type, content.size);
});
});
});See samples/06-dir.html
fetch(pagesInfo, paginationInfo, callback): retrieveGh3.Gistinstances of a userpagesInfo:{ pages : number_of_pages, per_page : number_of_gists_per page }paginationInfo: which page. Possible values : see http://developer.github.com/v3/#pagination- "next"
- "last"
- "first"
- "prev"
getGists(): return an array ofGh3.Gistinstances (you have to callfetch()before)eachGist: executecallbackfor each gist of the user (you have to callfetch()before)filter(comparator): return an array ofGh3.Gistinstances filtered bycomparator(you have to callfetch()before)
var GistsOfK33g = new Gh3.Gists(new Gh3.User("k33g"));
GistsOfK33g.fetch(null, null, function (err, res) {
if(err) {
throw "outch ..."
}
GistsOfK33g.eachGist(function (gist) {
console.log(gist.description, gist.id);
});
}); GistsOfK33g.fetch({page:2, per_page:5}, "next", function (err, res) {
if(err) {
throw "outch ..."
}
GistsOfK33g.eachGist(function (gist) {
console.log(gist.description, gist.id);
});
};See samples/07-gists.html
AllGistsOfK33g.fetch(function (err, res) {
if(err) {
throw "outch ..."
}
console.log("Filtered gists : ", AllGistsOfK33g.filter(function (gist) {
return gist.comments > 0;
}));
},function(){//onerror},{page:1, per_page:500});See samples/07-gists.html
fetchContents(callback): retrieve contents (files) of the gistfetchComments(callback): retrieve comments of the gistgetFileByName(): return a file of the gist, found by his namegetFiles(): return array of files objectseachFile(callback): executecallbackfor each file of the gist (you have to callfetchContents()before)getComments(): return an array ofGh3.GistCommentinstanceseachComment(callback): executecallbackfor each comment of the gist (you have to callfetchComments()before)filterComments(comparator): return an array ofGh3.GistCommentinstances filtered bycomparator(you have to callfetchComments()before)
var oneGist = new Gh3.Gist({id:"2287018"});
oneGist.fetchContents(function (err, res) {
if(err) {
throw "outch ..."
}
console.log("oneGist : ", oneGist);
console.log("Files : ", oneGist.files);
oneGist.eachFile(function (file) {
console.log(file.filename, file.language, file.type, file.size);
});
}); console.log(oneGist.getFileByName("use.thing.js").content);See samples/07-gists.html
var anOtherGist = new Gh3.Gist({id:"1096826"});
anOtherGist.fetchContents(function (err, res) {
if(err) { throw "outch ..." }
anOtherGist.fetchComments(function (err, res) {
if(err) { throw "outch ..." }
anOtherGist.eachComment(function (comment) {
console.log(comment.body, "By ", comment.user.login);
});
});
});See samples/07-gists.html
var PaulIrishGist = new Gh3.Gist({id:"3098860"});
PaulIrishGist.fetchContents(function (err, res) {
if(err) { throw "outch ..." }
PaulIrishGist.fetchComments(function (err, res) {
if(err) { throw "outch ..." }
console.log(
PaulIrishGist.filterComments(function (comment) {
return comment.user.login == "codepo8";
})
);
});
});See samples/08-gists_comments.html
... to be continued
- 2012.07.25 : '0.0.1' : first version
- 2012.07.26 : '0.0.2' : fixes
- 2012.07.26 : '0.0.3' : gists pagination
- 2012.07.28 : '0.0.4' :
- refactoring : Gh3.Helper
- gists filtering
- gist comments filtering
- file commits filtering
- commits sorting
- new Type : Gh3.Repositories (with pagination)
- 2012.07.29 : '0.0.5' :
- Gh3.Repositories : add search ability
- add Gh3.Users : search user ability
- 2012.07.29 : '0.0.6' :
- async.js compliant
- 2014.04.20 : '1.0.0' : bower package + semantic versioning
- 2014.04.20 : '1.0.1' : temporary fixes
Gh3 is available under the terms of the MIT-License.
Copyright 2014-2015, Philippe Charrière