-
Notifications
You must be signed in to change notification settings - Fork 0
/
whmcs.js
executable file
·59 lines (56 loc) · 1.76 KB
/
whmcs.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
const { publish, syncVersions, delVersion, updateCompatibility } = require('./index.js')
const context = {
env: process.env,
logger: new class {
log (msg) { console.log(msg) }
info (msg) { console.log(msg) }
error (msg, details) { console.error(msg + ' ' + details) }
}()
}
// eslint-disable-next-line no-unused-expressions
require('yargs')
.scriptName('whmcs.js')
.usage('$0 <cmd> [args]')
.command('publish [ver] [notes]', 'publishes the specified version to the WHMCS Marketplace', (yargs) => {
yargs.positional('ver', {
type: 'string',
demandOption: true,
describe: 'the version to publish'
}).positional('notes', {
type: 'string',
demandOption: true,
describe: 'the changelog'
})
}, function (argv) {
context.nextRelease = {
version: argv.ver,
notes: argv.notes
}
publish({}, context).then(r => {
console.log(r === false ? 'Failed' : 'Successful')
})
})
.command('sync', 'adds missing versions to the WHMCS Marketplace', () => {}, function () {
syncVersions({}, context).then(r => {
console.log(r === false ? 'Failed' : 'Successful')
})
})
.command('del [ver]', 'deletes the specified version from the WHMCS Marketplace', (yargs) => {
yargs.positional('ver', {
type: 'string',
demandOption: true,
describe: 'the version to delete'
})
}, function (argv) {
context.version = argv.ver
delVersion({}, context).then(r => {
console.log(r === false ? 'Failed' : 'Successful')
})
})
.command('compatibility', 'set the compatible WHMCS versions in the Marketplace', () => {}, function () {
updateCompatibility({}, context).then(r => {
console.log(r === false ? 'Failed' : 'Successful')
})
})
.help()
.argv