forked from salmanytofficial/XLICON-V2-MD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
127 lines (109 loc) · 3.26 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
'use strict';
import os from 'os';
import express from 'express';
import { spawn } from 'child_process';
import path from 'path';
import module from 'module';
import fs from 'fs';
import fsModule from 'fs';
import chalk from 'chalk';
import cfonts from 'cfonts';
const { say } = cfonts;
say("XLICON - V2", {
'font': "block",
'align': "center",
'colors': ['#ff9900'],
'background': "transparent",
'letterSpacing': 0x1,
'lineHeight': 0x1,
'space': true,
'maxLength': '15'
});
say("Xlicon-BOT-V2 By Salman._.", {
'font': "chrome",
'align': "center",
'colors': ["red", "magenta"],
'background': "transparent",
'letterSpacing': 0x1,
'lineHeight': 0x1,
'space': true,
'maxLength': '30'
});
const app = express();
const port = process.env.PORT || 0x1f90;
const basePath = new URL(import.meta.url).pathname;
const htmlDir = path.join(path.dirname(basePath), 'Assets');
const sendHtml = (res, req, page) => {
req.sendFile(path.join(htmlDir, page + ".html"));
};
app.get('/', (req, res) => sendHtml(res, req, "guru"));
app.listen(port, () => {
console.log(chalk.green("Port " + port + " is open"));
});
let isRunning = false;
async function start(scriptName) {
if (isRunning) {
return;
}
isRunning = true;
const currentScriptPath = new URL(import.meta.url).pathname;
const scriptArgs = [path.join(path.dirname(currentScriptPath), scriptName), ...process.argv.slice(0x2)];
const childProcess = spawn(process.argv[0x0], scriptArgs, {
'stdio': ["inherit", "inherit", "inherit", "ipc"]
});
childProcess.on("message", msg => {
console.log(chalk.cyan("✔️RECEIVED " + msg));
switch (msg) {
case "reset":
childProcess.kill();
isRunning = false;
start.apply(this, arguments);
break;
case 'uptime':
childProcess.send(process.uptime());
break;
}
});
childProcess.on("exit", exitCode => {
isRunning = false;
console.error(chalk.red("❌Exited with code: " + exitCode));
if (exitCode === 0x0) {
return;
}
fs.watchFile(scriptArgs[0x0], () => {
fs.unwatchFile(scriptArgs[0x0]);
start("Guru.js");
});
});
childProcess.on("error", err => {
console.error(chalk.red("Error: " + err));
childProcess.kill();
isRunning = false;
start('Guru.js');
});
const pluginsDir = path.join(path.dirname(currentScriptPath), "plugins");
fs.readdir(pluginsDir, async (err, files) => {
if (err) {
console.error(chalk.red("Error reading plugins folder: " + err));
return;
}
console.log(chalk.yellow("Installed " + files.length + " plugins"));
try {
const { default: baileys } = await import("@whiskeysockets/baileys");
const latestBaileysVersion = (await baileys.fetchLatestBaileysVersion()).version;
console.log(chalk.yellow("Using Baileys version " + latestBaileysVersion));
} catch (err) {
console.error(chalk.red(" Baileys library is not installed"));
}
});
}
start('Guru.js');
process.on("unhandledRejection", () => {
console.error(chalk.red("Unhandled promise rejection. Bot will restart..."));
start("Guru.js");
});
process.on("exit", exitCode => {
console.error(chalk.red("Exited with code: " + exitCode));
console.error(chalk.red("Bot will restart..."));
start("Guru.js");
});