-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.js
148 lines (131 loc) · 3.58 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
console.log("🐾 Starting...")
import yargs from "yargs"
import cfonts from "cfonts"
import { fileURLToPath } from "url"
import { join, dirname } from "path"
import { createRequire } from "module"
import { createInterface } from "readline"
import { setupMaster, fork } from "cluster"
import { watchFile, unwatchFile } from "fs"
// = PACKAGE IMPORT AND VARS = //
import express from "express"
import monitor from "express-status-monitor"
const app = new express()
// https://stackoverflow.com/a/50052194
const { say } = cfonts
const rl = createInterface(process.stdin, process.stdout)
const __dirname = dirname(fileURLToPath(import.meta.url))
const require = createRequire(__dirname) // Bring in the ability to create the "require" method
const { name, author } = require(join(__dirname, "./package.json")) // https://www.stefanjudis.com/snippets/how-to-import-json-files-in-es-modules-node-js/
say("HinataBot", {
font: "shade",
align: "center",
colors: ["red", "yellow"]
})
say("🐾 RPG BOT Multi-Device HinataBot", {
font: "console",
align: "center",
colors: ["green"]
})
var isRunning = false
/**
* Start a js file
* @param {String} file `path/to/file`
*/
function start(file) {
if (isRunning) return
isRunning = true
let args = [join(__dirname, file), ...process.argv.slice(2)]
say([process.argv[0], ...args].join(" "), {
font: "console",
align: "center",
colors: ["magenta"]
})
say("🌎 MEMUAT SOURCE...", {
font: "console",
align: "center",
colors: ["red"]
})
say("📑 MEMUAT PLUGINS...", {
font: "console",
align: "center",
colors: ["yellow"]
})
say("✅ DONE !", {
font: "console",
align: "center",
colors: ["green"]
})
setupMaster({
exec: args[0],
args: args.slice(1),
})
let p = fork()
p.on("message", data => {
console.log("[✅RECEIVED]", 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("[❗]Exited with code:", code)
if (code !== 0) return start(file)
watchFile(args[0], () => {
unwatchFile(args[0])
start(file)
})
})
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())
})
// console.log(p)
}
start("main.js")
// = HOME PAGE(s) = //
app.get("/", (req, res) => {
res.sendFile(__dirname + "/html/home.html")
})
app.get("/home", (req, res) => {
res.sendFile(__dirname + "/html/home.html")
})
app.get("/game", (req, res) => {
res.sendFile(__dirname + "/html/game.html")
})
app.get("/chat", (req, res) => {
res.sendFile(__dirname + "/html/chat.html")
})
app.get("/tools", (req, res) => {
res.sendFile(__dirname + "/html/tools.html")
})
app.get("/music", (req, res) => {
res.sendFile(__dirname + "/html/music.html")
})
app.get("/views", (req, res) => {
res.sendFile(__dirname + "/views/index.html")
})
// = CHECK IF A ENDPOINT IS INVALID = //
app.get("/*", (req, res) => {
res.send({ error: "Endpoint: home, game, chat, tools, music" })
})
// = TO RUN API AND LOG IT = //
app.listen(80, () => {
console.log("⚡️[Bot]: Hinata is running")
})
// = FOR CLEAN LOOKING AND LOGS = //
app.set("json spaces", 2);
app.use(monitor())
// = THE END = //
app.use("/", express.static(__dirname));
app.enable("trust proxy", 1);
app.use(express.urlencoded({ extended: true }));
app.use(express.json());