-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.js
executable file
·226 lines (189 loc) · 6.79 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
'use strict'
var fs = require('fs')
var path = require('path')
var exec = require('child_process').exec
var execSync = require('child_process').execSync
var afterAll = require('after-all-results')
// Prevent from failing on windows
var nullPath = /^win/.test(process.platform) ? 'nul' : '/dev/null'
// Consider EOL as \n because either Windows or *nix, this escape char will be there
var EOL = /\r?\n/
exports.isGit = function isGit (dir, cb) {
fs.stat(path.join(dir, '.git'), function (err) {
cb(!err) // eslint-disable-line standard/no-callback-literal
})
}
exports.isGitSync = function isGitSync (dir) {
return fs.existsSync(path.join(dir, '.git'))
}
exports.checkSync = function checkSync (repo, opts) {
var branch = exports.branchSync(repo, opts)
var ahead = exports.aheadSync(repo, opts)
var status = statusSync(repo, opts)
var stashes = exports.stashesSync(repo, opts)
return {
branch: branch,
ahead: ahead,
dirty: status.dirty,
untracked: status.untracked,
stashes: stashes
}
}
exports.check = function check (repo, opts, cb) {
if (typeof opts === 'function') return exports.check(repo, {}, opts)
var next = afterAll(function (err, results) {
if (err) return cb(err)
var branch = results[0]
var ahead = results[1]
var stashes = results[2]
var status = results[3]
cb(null, {
branch: branch,
ahead: ahead,
dirty: status.dirty,
untracked: status.untracked,
stashes: stashes
})
})
exports.branch(repo, opts, next())
exports.ahead(repo, opts, next())
exports.stashes(repo, opts, next())
status(repo, opts, next())
}
exports.untracked = function untracked (repo, opts, cb) {
if (typeof opts === 'function') return exports.untracked(repo, {}, opts)
status(repo, opts, function (err, result) {
if (err) return cb(err)
cb(null, result.untracked)
})
}
exports.dirty = function dirty (repo, opts, cb) {
if (typeof opts === 'function') return exports.dirty(repo, {}, opts)
status(repo, opts, function (err, result) {
if (err) return cb(err)
cb(null, result.dirty)
})
}
exports.branch = function branch (repo, opts, cb) {
if (typeof opts === 'function') return exports.branch(repo, {}, opts)
opts = opts || {}
exec('git show-ref >' + nullPath + ' 2>&1 && git rev-parse --abbrev-ref HEAD', {cwd: repo, maxBuffer: opts.maxBuffer}, function (err, stdout, stderr) {
if (err) {
if (err.code === 'ERR_CHILD_PROCESS_STDIO_MAXBUFFER') return cb(err)
if (err.message === 'stdout maxBuffer exceeded') return cb(err)
return cb() // most likely the git repo doesn't have any commits yet
}
cb(null, stdout.trim())
})
}
exports.ahead = function ahead (repo, opts, cb) {
if (typeof opts === 'function') return exports.ahead(repo, {}, opts)
opts = opts || {}
exec('git show-ref >' + nullPath + ' 2>&1 && git rev-list HEAD --not --remotes', {cwd: repo, maxBuffer: opts.maxBuffer}, function (err, stdout, stderr) {
if (err) {
if (err.message === 'stdout maxBuffer exceeded') return cb(err)
return cb(null, NaN) // depending on the state of the git repo, the command might return non-0 exit code
}
stdout = stdout.trim()
cb(null, !stdout ? 0 : parseInt(stdout.split(EOL).length, 10))
})
}
function status (repo, opts, cb) {
opts = opts || {}
exec('git status -s', {cwd: repo, maxBuffer: opts.maxBuffer}, function (err, stdout, stderr) {
if (err) return cb(err)
var status = { dirty: 0, untracked: 0 }
stdout.trim().split(EOL).filter(truthy).forEach(function (file) {
if (file.substr(0, 2) === '??') status.untracked++
else status.dirty++
})
cb(null, status)
})
}
function truthy (obj) {
return !!obj
}
exports.commit = function commit (repo, opts, cb) {
if (typeof opts === 'function') return exports.commit(repo, {}, opts)
opts = opts || {}
exec('git rev-parse --short HEAD', {cwd: repo, maxBuffer: opts.maxBuffer}, function (err, stdout, stderr) {
if (err) return cb(err)
var commitHash = stdout.trim()
cb(null, commitHash)
})
}
exports.stashes = function stashes (repo, opts, cb) {
if (typeof opts === 'function') return exports.stashes(repo, {}, opts)
opts = opts || {}
exec('git stash list', {cwd: repo, maxBuffer: opts.maxBuffer}, function (err, stdout, stderr) {
if (err) return cb(err)
var stashes = stdout.trim().split(EOL).filter(truthy)
cb(null, stashes.length)
})
}
exports.message = function message (repo, opts, cb) {
if (typeof opts === 'function') return exports.message(repo, {}, opts)
opts = opts || {}
exec('git log -1 --pretty=%B', {cwd: repo, maxBuffer: opts.maxBuffer}, function (err, stdout, stderr) {
if (err) return cb(err)
cb(null, stdout.toString().trim())
})
}
//* SYNC methods *//
exports.untrackedSync = function untrackedSync (repo, opts) {
return statusSync(repo, opts).untracked
}
exports.dirtySync = function dirtySync (repo, opts) {
return statusSync(repo, opts).dirty
}
exports.branchSync = function branchSync (repo, opts) {
opts = opts || {}
try {
var stdout = execSync('git show-ref >' + nullPath + ' 2>&1 && git rev-parse --abbrev-ref HEAD', {cwd: repo, maxBuffer: opts.maxBuffer}).toString()
return stdout.trim()
} catch (err) {
if (err.code === 'ENOBUFS') throw err
return null // most likely the git repo doesn't have any commits yet
}
}
exports.aheadSync = function aheadSync (repo, opts) {
opts = opts || {}
try {
var stdout = execSync('git show-ref >' + nullPath + ' 2>&1 && git rev-list HEAD --not --remotes', {cwd: repo, maxBuffer: opts.maxBuffer}).toString()
stdout = stdout.trim()
return !stdout ? 0 : parseInt(stdout.split(EOL).length, 10)
} catch (err) {
if (err.code === 'ENOBUFS') throw err
return NaN
}
}
// Throws error
var statusSync = function statusSync (repo, opts) {
opts = opts || {}
var stdout = execSync('git status -s', {cwd: repo, maxBuffer: opts.maxBuffer}).toString()
var status = { dirty: 0, untracked: 0 }
stdout.trim().split(EOL).filter(truthy).forEach(function (file) {
if (file.substr(0, 2) === '??') status.untracked++
else status.dirty++
})
return status
}
// Throws error
exports.commitSync = function commitSync (repo, opts) {
opts = opts || {}
var stdout = execSync('git rev-parse --short HEAD', {cwd: repo, maxBuffer: opts.maxBuffer}).toString()
var commitHash = stdout.trim()
return commitHash
}
// Throws error
exports.stashesSync = function stashesSync (repo, opts) {
opts = opts || {}
var stdout = execSync('git stash list', {cwd: repo, maxBuffer: opts.maxBuffer}).toString()
var stashes = stdout.trim().split(EOL).filter(truthy)
return stashes.length
}
// Throws error
exports.messageSync = function messageSync (repo, opts) {
opts = opts || {}
return execSync('git log -1 --pretty=%B', {cwd: repo, maxBuffer: opts.maxBuffer}).toString().trim()
}