This repository has been archived by the owner on Jul 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
127 lines (108 loc) · 3 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
#!/usr/bin/env node
import chalk from "chalk";
import { execSync } from "child_process";
import { Command } from "commander";
import { readFileSync } from "node:fs";
import path from "node:path";
import { fileURLToPath } from "url";
const APP_NAME = "Local Sui Explorer";
const APP_URL = "http://localhost:9001";
const REPORT_ISSUE_URL =
"https://github.com/kkomelin/sui-explorer-local/issues/new";
const main = async () => {
// Commands.
const program = new Command();
program
.name("sui-explorer-local")
.description(`Easily manage ${APP_NAME}`)
.version(getPackageVersion());
const cliDirectory = getCliDirectory();
program
.command("start")
.description(`Start ${APP_NAME}`)
.option("-v, --verbose", "display logs")
.action((options) => {
performAction(
`npx pm2 start ${cliDirectory}/pm2.config.cjs`,
`${APP_NAME} started on ${APP_URL}`,
`Could not start ${APP_NAME}`,
options.verbose
);
});
program
.command("stop")
.description(`Stop ${APP_NAME}`)
.option("-v, --verbose", "display logs")
.action((options) => {
performAction(
`npx pm2 stop ${cliDirectory}/pm2.config.cjs`,
`${APP_NAME} stopped`,
`Could not stop ${APP_NAME}`,
options.verbose
);
});
program
.command("restart")
.description(`Restart ${APP_NAME}`)
.option("-v, --verbose", "display logs")
.action((options) => {
performAction(
`npx pm2 restart ${cliDirectory}/pm2.config.cjs`,
`${APP_NAME} restarted on ${APP_URL}`,
`Could not restart ${APP_NAME}`,
options.verbose
);
});
program
.command("logs")
.description(`Display logs for ${APP_NAME}`)
.action((options) => {
execSync(`npx pm2 logs sui-explorer-local --nostream`, {
stdio: "inherit",
});
});
program.parse();
};
const getCliDirectory = () => {
const currentFileUrl = import.meta.url;
return path.dirname(decodeURI(fileURLToPath(currentFileUrl)));
};
const getPackageVersion = () => {
try {
const packageFile = readFileSync(
path.join(getCliDirectory(), "/package.json"),
"utf8"
);
const packageMeta = JSON.parse(packageFile);
return packageMeta.version;
} catch (e) {
displayErrorMessage(
`Cannot read package meta-data. Please report the issue ${REPORT_ISSUE_URL}`
);
console.error(e);
process.exit(1);
}
};
const performAction = (command, successMessage, errorMessage, verbose) => {
const ignore = !verbose ? "ignore" : undefined;
try {
execSync(command, {
stdio: ignore,
});
} catch (e) {
displayErrorMessage(errorMessage);
verbose && console.error(e);
process.exit(1);
}
displaySuccessMessage(successMessage);
};
const displayErrorMessage = (message) => {
console.error(chalk.red(message));
};
const displaySuccessMessage = (message) => {
console.log(chalk.green(message));
};
// Main entry point.
main().catch((e) => {
console.error(chalk.red(e));
});