-
Notifications
You must be signed in to change notification settings - Fork 3
/
whmcs.js
executable file
·87 lines (85 loc) · 2.09 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
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
import { createRequire } from "node:module";
import { publish, syncVersions, delVersion, updateCompatibility } from "./index.js";
const require = createRequire(import.meta.url);
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;