-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathindex.js
More file actions
130 lines (107 loc) · 3.66 KB
/
index.js
File metadata and controls
130 lines (107 loc) · 3.66 KB
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
import express from "express";
import http from "node:http";
import { createBareServer } from "@tomphttp/bare-server-node";
import cors from "cors";
import path from "node:path";
import { hostname } from "node:os";
import chalk from "chalk";
const server = http.createServer();
const app = express(server);
const __dirname = process.cwd();
const bareServer = createBareServer("/bare/");
const PORT = process.env.PORT || 8080;
app.use(express.json({ limit: '50mb' }));
app.use(express.urlencoded({ extended: true, limit: '50mb' }));
app.use(express.static(__dirname + "/public", {
maxAge: '1h',
etag: true,
lastModified: true
}));
app.use(cors({
origin: '*',
methods: ['GET', 'POST', 'PUT', 'DELETE', 'OPTIONS'],
allowedHeaders: ['Content-Type', 'Authorization']
}));
app.get("/", (req, res) => {
res.sendFile(path.join(process.cwd(), "/public/index.html"));
});
app.get("/search", (req, res) => {
res.sendFile(path.join(process.cwd(), "/public/search.html"));
});
app.get("/a", (req, res) => {
res.sendFile(path.join(process.cwd(), "/public/apps.html"));
});
app.get("/g", (req, res) => {
res.sendFile(path.join(process.cwd(), "/public/games.html"));
});
app.get("/settings", (req, res) => {
res.sendFile(path.join(process.cwd(), "/public/settings/general.html"));
});
app.get("/settings/general", (req, res) => {
res.sendFile(path.join(process.cwd(), "/public/settings/general.html"));
});
app.get("/404", (req, res) => {
res.sendFile(path.join(process.cwd(), "/public/err/404.html"));
});
app.use((req, res, next) => {
res.status(404).redirect("/404");
});
server.on("request", (req, res) => {
if (bareServer.shouldRoute(req)) {
bareServer.routeRequest(req, res);
} else {
app(req, res);
}
});
server.on("upgrade", (req, socket, head) => {
if (bareServer.shouldRoute(req)) {
bareServer.routeUpgrade(req, socket, head);
} else {
socket.end();
}
});
server.on("listening", () => {
const address = server.address();
const theme = chalk.hex("#b578ff");
const host = chalk.hex("b578ff");
console.log(`Listening to ${chalk.bold(theme("Ambient"))} on:`);
console.log(
` ${chalk.bold(host("Local System:"))} http://${address.family === "IPv6" ? `[${address.address}]` : address.address}${address.port === 80 ? "" : ":" + chalk.bold(address.port)}`,
);
console.log(
` ${chalk.bold(host("Local System:"))} http://localhost${address.port === 8080 ? "" : ":" + chalk.bold(address.port)}`,
);
try {
console.log(
` ${chalk.bold(host("On Your Network:"))} http://${address.ip()}${address.port === 8080 ? "" : ":" + chalk.bold(address.port)}`,
);
} catch (err) { }
if (process.env.REPL_SLUG && process.env.REPL_OWNER) {
console.log(
` ${chalk.bold(host("Replit:"))} https://${process.env.REPL_SLUG}.${process.env.REPL_OWNER}.repl.co`,
);
}
if (process.env.HOSTNAME && process.env.GITPOD_WORKSPACE_CLUSTER_HOST) {
console.log(
` ${chalk.bold(host("Gitpod:"))} https://${PORT}-${process.env.HOSTNAME}.${process.env.GITPOD_WORKSPACE_CLUSTER_HOST}`,
);
}
if (process.env.CODESPACE_NAME && process.env.GITHUB_CODESPACES_PORT_FORWARDING_DOMAIN) {
console.log(
` ${chalk.bold(host("Github Codespaces:"))} https://${process.env.CODESPACE_NAME}-${address.port === 80 ? "" : "" + address.port}.${process.env.GITHUB_CODESPACES_PORT_FORWARDING_DOMAIN}`,
);
}
});
server.listen({
port: PORT,
backlog: 100
});
process.on("SIGINT", shutdown);
process.on("SIGTERM", shutdown);
function shutdown() {
console.log("SIGTERM signal received: closing HTTP server");
server.close(() => {
bareServer.close();
process.exit(0);
});
}