-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
96 lines (77 loc) · 1.88 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
const fs = require('fs')
const path = require('path')
const tmp = require('tmp')
const { spawn } = require('child_process');
const errorWhileCloning = new Error('Error while cloning')
const needToCloneFirst = new Error('You need to clone the repo first')
const errorWhileComitting = new Error('Error while commiting')
class Wiki {
constructor (options) {
this._options = Object.assign({}, options)
let credentials = ''
if (options.user && options.accessToken) {
credentials = `${options.user}:${options.accessToken}@`
}
this._url = `https://${credentials}github.com/${this._options.repo}.wiki.git`
}
url () {
return this._url
}
cleanup (cb) {
this._path = null
this._cleanup()
}
ls (cb) {
if (!this._path) {
return cb(needToCloneFirst)
}
fs.readdir(this._path, cb)
}
path (pathToAppend = '') {
if (!this._path) {
throw needToCloneFirst
}
return path.join(this._path, pathToAppend)
}
commitAndPush (message, cb) {
if (!this._path) {
throw cb(null, needToCloneFirst)
}
const command = `git add -A && git commit -m "${message}" && git push ${this._url} --all`
const submit = spawn(command, {
cwd: this._path,
shell: true
})
submit.on('close', code => {
if (code !== 0) {
return cb(errorWhileComitting)
}
cb()
})
}
clone (cb) {
tmp.dir({
prefix: 'ghwiki-',
unsafeCleanup: true
}, (err, path, cleanup) => {
if (err) {
return cb(err)
}
this._cleanup = cleanup
this._path = path
const child = spawn('git', [
'clone',
this._url,
path
])
child.on('close', code => {
if (code !== 0) {
cleanup()
return cb(errorWhileCloning)
}
cb.call(this)
})
})
}
}
module.exports = Wiki