forked from DASTAGHIR/PRINCEMD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
128 lines (104 loc) · 3.2 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
import chalk from 'chalk';
import { spawn } from 'child_process';
import express from 'express';
import figlet from 'figlet';
import fs from 'fs';
import path from 'path';
import { fileURLToPath } from 'url';
// Generate "PRINCE-WB" in Slant font with alternating colors
figlet('PRINCE-BOT', { font: 'Slant' }, (err, data) => {
if (err) {
console.error(chalk.red('Figlet error:', err));
return;
}
// Split the data into lines and apply colors
const lines = data.split('\n');
lines.forEach((line, index) => {
const color = index % 2 === 0 ? chalk.red : chalk.cyan; // Choose colors as needed
console.log(color(line));
});
});
figlet('An Advanced Whatsapp User B⭕T', {
horizontalLayout: 'default',
verticalLayout: 'default',
}, (err, data) => {
if (err) {
console.error(chalk.red('Figlet error:', err));
return;
}
console.log(chalk.magenta(data));
});
const app = express();
const port = process.env.PORT || 5000;
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
app.use(express.static(path.join(__dirname, 'Assets')));
app.get('/', (req, res) => {
res.redirect('/prince.html');
});
app.listen(port, () => {
console.log(chalk.green(`Port ${port} is open`));
});
let isRunning = false;
async function start(file) {
if (isRunning) return;
isRunning = true;
const currentFilePath = new URL(import.meta.url).pathname;
const args = [path.join(path.dirname(currentFilePath), file), ...process.argv.slice(2)];
const p = spawn(process.argv[0], args, {
stdio: ['inherit', 'inherit', 'inherit', 'ipc'],
});
p.on('message', data => {
console.log(chalk.cyan(`✔️RECEIVED ${data}`));
switch (data) {
case 'reset':
p.kill();
isRunning = false;
start.apply(this, arguments);
break;
case 'uptime':
p.send(process.uptime());
break;
}
});
p.on('exit', code => {
isRunning = false;
console.error(chalk.red(`❌Exited with code: ${code}`));
if (code === 0) return;
fs.watchFile(args[0], () => {
fs.unwatchFile(args[0]);
start('main.js');
});
});
p.on('error', err => {
console.error(chalk.red(`Error: ${err}`));
p.kill();
isRunning = false;
start('main.js');
});
const pluginsFolder = path.join(path.dirname(currentFilePath), 'plugins');
fs.readdir(pluginsFolder, 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 version = (await baileys.fetchLatestBaileysVersion()).version;
console.log(chalk.yellow(`Using Baileys version ${version}`));
} catch (e) {
console.error(chalk.red(' Baileys library is not installed'));
}
});
}
start('main.js');
process.on('unhandledRejection', () => {
console.error(chalk.red(`Unhandled promise rejection. Bot will restart...`));
start('main.js');
});
process.on('exit', code => {
console.error(chalk.red(`Exited with code: ${code}`));
console.error(chalk.red(`B⭕T will restart...`));
start('main.js');
});