forked from Guru322/GURU-Ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
131 lines (110 loc) · 2.97 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
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';
figlet(
'GURU BOT',
{
font: 'Ghost',
horizontalLayout: 'default',
verticalLayout: 'default',
},
(err, data) => {
if (err) {
console.error(chalk.red('Figlet error:', err))
return
}
console.log(chalk.yellow(data))
}
)
figlet(
'Advanced Whatsapp Bot',
{
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('/guru.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('Guru.js')
})
})
p.on('error', err => {
console.error(chalk.red(`Error: ${err}`))
p.kill()
isRunning = false
start('Guru.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('Guru.js')
process.on('unhandledRejection', () => {
console.error(chalk.red(`Unhandled promise rejection. Bot will restart...`))
start('Guru.js')
})
process.on('exit', code => {
console.error(chalk.red(`Exited with code: ${code}`))
console.error(chalk.red(`Bot will restart...`))
start('Guru.js')
})