-
Notifications
You must be signed in to change notification settings - Fork 0
/
cli.js
executable file
·63 lines (50 loc) · 1.31 KB
/
cli.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
#!/usr/bin/env node
const mri = require('mri')
const { query, report } = require('./lib')
const { replace, csv, date_ago, format } = require('./lib/util')
const flags = mri(process.argv.slice(2), require('./lib/config'));
validate(flags)
if (flags.help) {
console.log(require('./lib/help'))
process.exit(0);
}
if (flags.report) {
report(flags)
.then(format(flags))
.then(console.log)
.catch(handle_error)
}
if (!flags.report) {
query(flags)
.then(format(flags))
.then(console.log)
.catch(handle_error)
}
function validate(opt) {
let error = false
if (!opt.report && opt.period) {
opt.start = date_ago(opt.period)
opt.finish = date_ago(0)
}
if (!opt.jira) {
error = true
console.error('Please configure your JIRA URL environment variable')
}
if (!opt.user) {
error = true
console.error('Please configure your JIRA user environment variable')
}
if (!opt.pass) {
error = true
console.error('Please configure your JIRA password environment variable')
}
if (error) process.exit(1)
}
function handle_error(err) {
const envelope = {}
envelope.name = err.name || 'Unknown Error',
envelope.code = err.statusCode || err.code || 1000
envelope.message = err.statusMessage || 'An error has occurred'
console.error(envelope)
process.exit(1)
}