-
-
Notifications
You must be signed in to change notification settings - Fork 779
/
index.js
146 lines (123 loc) · 4.62 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
import { join, dirname } from 'path';
import { createRequire } from 'module';
import { fileURLToPath } from 'url';
import { setupMaster, fork } from 'cluster';
import { watchFile, unwatchFile } from 'fs';
import cfonts from 'cfonts';
import { createInterface } from 'readline';
import yargs from 'yargs';
import express from 'express';
import chalk from 'chalk';
import path from 'path';
import os from 'os';
import { promises as fsPromises } from 'fs';
// Set up __dirname and __filename
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
// Create an Express HTTP server
const app = express();
const port = process.env.PORT || 5000;
app.use(express.static(path.join(__dirname, 'lib/source')));
app.get('/', (req, res) => {
res.redirect('/prince.html');
});
app.listen(port, () => {
console.log(chalk.green(`🌐 Server is running on port ${port}`));
});
// Core bot startup logic
const require = createRequire(__dirname);
const { name, author } = require(join(__dirname, './package.json'));
const { say } = cfonts;
const rl = createInterface(process.stdin, process.stdout);
say('PRINCE\nMD', {
font: 'chrome',
align: 'center',
gradient: ['red', 'magenta'],
});
say(`BY: DASTAGEER`, {
font: 'console',
align: 'center',
gradient: ['red', 'magenta'],
});
var isRunning = false;
async function start(file) {
if (isRunning) return;
isRunning = true;
const currentFilePath = new URL(import.meta.url).pathname;
let args = [join(__dirname, file), ...process.argv.slice(2)];
say([process.argv[0], ...args].join(' '), {
font: 'console',
align: 'center',
gradient: ['red', 'magenta'],
});
setupMaster({
exec: args[0],
args: args.slice(1),
});
let p = fork();
p.on('message', (data) => {
switch (data) {
case 'reset':
p.process.kill();
isRunning = false;
start.apply(this, arguments);
break;
case 'uptime':
p.send(process.uptime());
break;
}
});
p.on('exit', (_, code) => {
isRunning = false;
console.error('⚠️ ERROR ⚠️ >> ', code);
// start('main.js'); //
if (code === 0) return;
watchFile(args[0], () => {
unwatchFile(args[0]);
start(file);
});
});
const ramInGB = os.totalmem() / (1024 * 1024 * 1024);
const freeRamInGB = os.freemem() / (1024 * 1024 * 1024);
const packageJsonPath = path.join(path.dirname(currentFilePath), './package.json');
try {
const packageJsonData = await fsPromises.readFile(packageJsonPath, 'utf-8');
const packageJsonObj = JSON.parse(packageJsonData);
const currentTime = new Intl.DateTimeFormat('en-US', {
timeZone: 'Asia/Karachi',
dateStyle: 'full',
timeStyle: 'long',
}).format(new Date()); //new Date().toLocaleString();
let lineM = '⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ 》';
console.log(
chalk.yellow(`╭${lineM}
┊${chalk.blueBright('╭┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅')}
┊${chalk.blueBright('┊')}${chalk.yellow(`🖥️ ${os.type()}, ${os.release()} - ${os.arch()}`)}
┊${chalk.blueBright('┊')}${chalk.yellow(`💾 Total RAM: ${ramInGB.toFixed(2)} GB`)}
┊${chalk.blueBright('┊')}${chalk.yellow(`💽 Free RAM: ${freeRamInGB.toFixed(2)} GB`)}
┊${chalk.blueBright('╰┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅')}
┊${chalk.blueBright('╭┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅')}
┊${chalk.blueBright('┊')} ${chalk.blue.bold(`🟢INFORMATION:`)}
┊${chalk.blueBright('┊')} ${chalk.blueBright('┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅')}
┊${chalk.blueBright('┊')}${chalk.cyan(`💚 Name: ${packageJsonObj.name}`)}
┊${chalk.blueBright('┊')}${chalk.cyan(`💫 Version: ${packageJsonObj.version}`)}
┊${chalk.blueBright('┊')}${chalk.cyan(`💜 Description: ${packageJsonObj.description}`)}
┊${chalk.blueBright('┊')}${chalk.cyan(`💎 Project Author: ${packageJsonObj.author.name} (Prince❣️)`)}
┊${chalk.blueBright('┊')}${chalk.blueBright('┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅')}
┊${chalk.blueBright('╭┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅')}
┊${chalk.blueBright('┊')}${chalk.cyan(`⏰ Current Time :`)}
┊${chalk.blueBright('┊')}${chalk.cyan(`${currentTime}`)}
┊${chalk.blueBright('╰┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅')}
╰${lineM}`)
);
setInterval(() => {}, 1000);
} catch (err) {
console.error(chalk.red(`❌ Failed to read the package.json file: ${err}`));
}
let opts = new Object(yargs(process.argv.slice(2)).exitProcess(false).parse());
if (!opts['test'])
if (!rl.listenerCount()) rl.on('line', (line) => {
p.emit('message', line.trim());
});
}
start('main.js');