forked from octokit/octokit.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
52 lines (46 loc) · 1.46 KB
/
index.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
/**
* class Github
*
* A Node.JS module, which provides an object oriented wrapper for the GitHub v3 API.
*
* Copyright 2012 Cloud9 IDE, Inc.
*
* This product includes software developed by
* Cloud9 IDE, Inc (http://c9.io).
*
* Author: Mike de Boer <[email protected]>
**/
"use strict";
var Fs = require("fs");
var Util = require("./../../util");
var error = require("./../../error");
var GithubHandler = module.exports = function(client) {
this.client = client;
this.routes = require("./routes.json");
};
var proto = {
sendError: function(err, block, msg, callback) {
if (this.client.debug)
Util.log(err, block, msg.user, "error");
if (typeof err == "string")
err = new error.InternalServerError(err);
if (callback)
callback(err);
}
};
Util.extend(proto, require("./gists"));
Util.extend(proto, require("./gitdata"));
Util.extend(proto, require("./issues"));
Util.extend(proto, require("./authorization"));
Util.extend(proto, require("./orgs"));
Util.extend(proto, require("./statuses"));
Util.extend(proto, require("./pullRequests"));
Util.extend(proto, require("./repos"));
Util.extend(proto, require("./user"));
Util.extend(proto, require("./events"));
Util.extend(proto, require("./releases"));
Util.extend(proto, require("./search"));
Util.extend(proto, require("./markdown"));
Util.extend(proto, require("./gitignore"));
Util.extend(proto, require("./misc"));
GithubHandler.prototype = proto;