-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
163 lines (141 loc) Β· 5.12 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/*
RECODE REYZ HAYANASI
KONTAK ME : 6283181666350
YT : @Litzz445
IG : @reymwmwk112
REQUEST FITUR CHAT GW
FITUR ERROR CHAT GW
BUAT LU YANG RECODE NI KASIH CREDIT
*/
import os from 'os';
import express from 'express';
import { spawn } from 'child_process';
import path from 'path';
import fs from 'fs';
import { promises as fsPromises } from 'fs';
import chalk from 'chalk';
const app = express();
const port = process.env.PORT || 8080;
const basePath = new URL(import.meta.url).pathname;
const htmlDir = path.join(path.dirname(basePath), 'html');
const sendHtml = (req, res, name) => {
res.sendFile(path.join(htmlDir, `${name}.html`));
};
app.get('/', (req, res) => sendHtml(req, res, 'home'));
app.get('/chat', (req, res) => sendHtml(req, res, 'chat'));
app.get('/game', (req, res) => sendHtml(req, res, 'game'));
app.get('/tools', (req, res) => sendHtml(req, res, 'tools'));
app.get('/music', (req, res) => sendHtml(req, res, 'music'));
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(`π’ [ R E Y Z ] ${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(`π‘ Found ${files.length} plugins in folder ${pluginsFolder}`));
try {
const { default: baileys } = await import('@whiskeysockets/baileys');
const version = (await baileys.fetchLatestBaileysVersion()).version;
console.log(chalk.yellow(`π‘ Baileys library version ${version} is installed`));
} catch (e) {
console.error(chalk.red('β Baileys library is not installed'));
}
});
console.log(chalk.yellow(`π₯οΈ ${os.type()}, ${os.release()} - ${os.arch()}`));
const ramInGB = os.totalmem() / (1024 * 1024 * 1024);
console.log(chalk.yellow(`πΎ Total RAM: ${ramInGB.toFixed(2)} GB`));
const freeRamInGB = os.freemem() / (1024 * 1024 * 1024);
console.log(chalk.yellow(`π½ Free RAM: ${freeRamInGB.toFixed(2)} GB`));
console.log(chalk.yellow(`π Script by .R.E.Y.Z .H.A.Y.A.N.A.S.I.`));
const packageJsonPath = path.join(path.dirname(currentFilePath), './package.json');
try {
const packageJsonData = await fsPromises.readFile(packageJsonPath, 'utf-8');
const packageJsonObj = JSON.parse(packageJsonData);
console.log(chalk.blue.bold(`\nπ¦ Package Information`));
console.log(chalk.cyan(`Name: ${packageJsonObj.name}`));
console.log(chalk.cyan(`Version: ${packageJsonObj.version}`));
console.log(chalk.cyan(`Description: ${packageJsonObj.description}`));
console.log(chalk.cyan(`Author: Reyz Hayanasi`));
} catch (err) {
console.error(chalk.red(`β Unable to read package.json: ${err}`));
}
const totalFoldersAndFiles = await getTotalFoldersAndFiles(pluginsFolder);
console.log(chalk.blue.bold(`\nπ Total Folders and Files in "plugins" folder`));
console.log(chalk.cyan(`Total Folders: ${totalFoldersAndFiles.folders}`));
console.log(chalk.cyan(`Total Files: ${totalFoldersAndFiles.files}`));
console.log(chalk.blue.bold(`\nβ° Current Time`));
const currentTime = new Date().toLocaleString();
console.log(chalk.cyan(`${currentTime}`));
setInterval(() => {}, 1000);
}
function getTotalFoldersAndFiles(folderPath) {
return new Promise((resolve, reject) => {
fs.readdir(folderPath, (err, files) => {
if (err) {
reject(err);
} else {
let folders = 0;
let filesCount = 0;
files.forEach((file) => {
const filePath = path.join(folderPath, file);
if (fs.statSync(filePath).isDirectory()) {
folders++;
} else {
filesCount++;
}
});
resolve({ folders, files: filesCount });
}
});
});
}
start('main.js');
process.on('unhandledRejection', () => {
console.error(chalk.red(`β Unhandled promise rejection. Script will restart...`));
start('main.js');
});
process.on('exit', (code) => {
console.error(chalk.red(`π Exited with code: ${code}`));
console.error(chalk.red(`β Script will restart...`));
start('main.js');
});