-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
index.js
116 lines (110 loc) · 3.84 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#!/usr/bin/env node
/* jshint esversion: 6 */
const program = require("commander");
const co = require("co");
const prompt = require("co-prompt");
const { Octokit } = require("@octokit/rest");
const { throttling } = require("@octokit/plugin-throttling");
const { importFile } = require("./import.js");
const { exportIssues } = require("./export.js");
program
.version(require("./package.json").version)
.arguments("[file]")
.option(
"-g, --github_enterprise [https://api.github.my-company.com]",
"Your GitHub Enterprise URL."
)
.option(
"-t, --token [token]",
"The GitHub token. https://github.com/settings/tokens"
)
.option(
"-o, --organization [organization]",
"The User or Organization slug that the repo lives under."
)
.option("-r, --repository [repository]", "The repository name (slug).")
.option(
"-f, --exportFileName [export.csv]",
"The name of the CSV you'd like to export to."
)
.option(
"-a, --exportAttributes [attributes]",
"Comma-separated list of attributes (columns) in the export."
)
.option("-c, --exportComments", "Include comments in the export.")
.option("-e, --exportAll", "Include all data in the export.")
.option(
"--csvDelimiter [csvDelimiter]",
"CSV delimiter character (defaults to ',')"
) .option("-v, --verbose", "Include additional logging information.")
.action(function (file, options) {
co(function* () {
const retObject = {};
retObject.githubUrl =
options.github_enterprise || "https://api.github.com";
retObject.token = options.token || "";
if (retObject.token === "") {
retObject.token = yield prompt(
"Token (get from https://github.com/settings/tokens): "
);
}
retObject.exportFileName = options.exportFileName || false;
retObject.exportAttributes = options.exportAttributes || false;
if (retObject.exportAttributes) {
retObject.exportAttributes = retObject.exportAttributes
.split(",")
.map((i) => i.trim());
}
retObject.exportComments = options.exportComments || false;
retObject.exportAll = options.exportAll || false;
retObject.csvDelimiter = options.csvDelimiter || ',';
retObject.verbose = options.verbose || false;
retObject.userOrOrganization = options.organization || "";
if (retObject.userOrOrganization === "") {
retObject.userOrOrganization = yield prompt("User or organization: ");
}
retObject.repo = options.repository || "";
if (retObject.repo === "") {
retObject.repo = yield prompt("Repository: ");
}
return retObject;
}).then(
function (values) {
const ThrottledOctokit = Octokit.plugin(throttling);
const octokit = new ThrottledOctokit({
auth: values.token,
userAgent: "github-csv-tools",
baseUrl: values.githubUrl,
throttle: {
onRateLimit: (retryAfter, options) => {
console.warn(
`Request quota exhausted for request ${options.method} ${options.url}`
);
if (options.request.retryCount === 0) {
// only retries once
console.log(`Retrying after ${retryAfter} seconds!`);
return true;
}
},
onAbuseLimit: (retryAfter, options) => {
// does not retry, only logs a warning
console.warn(
`Abuse detected for request ${options.method} ${options.url}`
);
},
},
});
if (file) {
// This is an import!
importFile(octokit, file, values);
} else {
// this is an export!
exportIssues(octokit, values);
}
},
function (err) {
console.error("ERROR", err);
}
);
})
.parse(process.argv);