forked from microjs/microjs.com
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathghauth.js
84 lines (75 loc) · 2.43 KB
/
ghauth.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
const read = require('read')
, colors = require('colors')
, hyperquest = require('hyperquest')
, bl = require('bl')
, path = require('path')
, fs = require('fs')
, mkdirp = require('mkdirp')
function createAuth (config, callback) {
var req = hyperquest(
'https://api.github.com/authorizations'
, {
headers : {
'X-GitHub-OTP' : config.ghOtp || null
, 'User-Agent' : 'microjs.com-build-script'
}
, method : 'post'
, auth : config.ghUser + ':' + config.ghPass
}
)
req.pipe(bl(function (err, data) {
if (err)
return callback(err)
data = JSON.parse(data.toString())
if (data.message)
return callback(new Error(data.message))
if (!data.token)
return callback(new Error('No token from GitHub!'))
config.ghToken = data.token
callback()
}))
req.end(JSON.stringify({ note: 'microjs.com build script'}))
}
function prompt (config, callback) {
console.log('To collect GitHub stats we need you to authenticate so we can exceed API rate-limiting.'.bold.green)
console.log('Leave the username field blank to skip stats collection.'.bold.green)
console.log()
read({ prompt: 'GitHub username:'.bold }, function (err, data) {
if (err) return callback(err)
if (data === '') return callback()
config.ghUser = data
read({ prompt: 'GitHub password:'.bold, silent: true, replace: '\u2714' }, function (err, data) {
if (err) return callback(err)
config.ghPass = data
read({ prompt: 'GitHub OTP (optional):'.bold }, function (err, data) {
if (err) return callback(err)
config.ghOtp = data
callback()
})
})
})
}
function auth (config, callback) {
var configPath = path.join(process.env.HOME || process.env.USERPROFILE, '.config', 'microjsauth.json')
, authData
mkdirp.sync(path.dirname(configPath))
try {
authData = require(configPath)
if (authData.user && authData.token) {
config.ghToken = authData.token
config.ghUser = authData.user
return callback()
}
} catch (e) {}
prompt(config, function (err) {
if (err)
return callback(err)
createAuth(config, function (err) {
if (err)
return callback(err)
fs.writeFileSync(configPath, JSON.stringify({ user: config.ghUser, token: config.ghToken }), 'utf8')
callback()
})
})
}
module.exports = auth