-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.js
55 lines (52 loc) · 1.83 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
const logger = require("./bot/utils/logger");
require("dotenv").config();
const luncher = require("./bot/utils/luncher");
const axios = require("axios");
const { version, name } = require("./package.json");
const _ = require("lodash");
const { SysReq } = require("./bot/utils/helper");
const main = async () => {
const nodeVersion = process.version;
const major = process.versions
? parseInt(nodeVersion.split(".")[0].replace("v", ""), 10)
: 0;
if (major < 18 || major > 20 || isNaN(major) || major === 0) {
return logger.error(
"To run this bot, Node.js version <la>18.x</la> or <lb>20.x</lb> is required.\n Current version: <bl>" +
nodeVersion +
"</bl>"
);
}
await luncher.process();
};
// Wrap main function execution in an async context to handle asynchronous operations
(async () => {
try {
const latestVersion = await axios.get(
"https://raw.githubusercontent.com/Freddywhest/BlumBot/refs/heads/main/package.json"
);
if (!_.isEqual(latestVersion.data.version, version)) {
logger.versionWarning(
`You are using version <bl>${version}</bl> of the ${name} bot, while the latest version is <lb>${latestVersion.data.version}</lb>. Please update the bot.\n\n`
);
process.exit(1);
}
const systemRequirements = await SysReq();
if (!systemRequirements) {
logger.versionWarning(
`Your system does not meet the minimum requirements for running the ${name} bot.\n
<u>System Requirements</u>
- Node.js 18+
- Supported Operating Systems:
- Windows: Windows 10+, Windows Server 2016+, or Windows Subsystem for Linux (WSL).
- macOS: macOS 13 Ventura or macOS 14 Sonoma.
- Linux: Debian 11/12, Ubuntu 20.04/22.04/24.04 (x86-64 and arm64).\n
`
);
process.exit(1);
}
await main();
} catch (error) {
throw error;
}
})();