1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-08 08:04:49 +00:00

add proxy

This commit is contained in:
zumbiepig 2024-09-13 15:07:47 -07:00
parent fd7ad7da87
commit fba6b214b7
No known key found for this signature in database
GPG Key ID: 17C891BE28B953DE
2 changed files with 111 additions and 0 deletions

12
proxy/build.sh Executable file
View File

@ -0,0 +1,12 @@
#!/usr/bin/env bash
rm -rf ./bin &&
mkdir ./bin &&
bun build ./proxy.ts --compile --minify --target=bun-linux-x64-modern --outfile ./bin/linux-x64 &&
chmod +x ./bin/linux-x64 &&
bun build ./proxy.ts --compile --minify --target=bun-linux-arm64-modern --outfile ./bin/linux-arm64 &&
chmod +x ./bin/linux-arm64 &&
bun build ./proxy.ts --compile --minify --target=bun-windows-x64-modern --outfile ./bin/windows-x64.exe &&
bun build ./proxy.ts --compile --minify --target=bun-darwin-x64-modern --outfile ./bin/macos-x64 &&
chmod +x ./bin/macos-x64 &&
bun build ./proxy.ts --compile --minify --target=bun-darwin-arm64-modern --outfile ./bin/macos-arm64 &&
chmod +x ./bin/macos-arm64

99
proxy/proxy.ts Normal file
View File

@ -0,0 +1,99 @@
import { type IncomingHttpHeaders } from 'http';
import https from 'https';
import express from 'express';
import morgan from 'morgan';
const PROXY_HOSTNAME = 'launcher.orionzleon.me';
const CACHE_LIFETIME = 1000 * 60 * 10; // 10 minutes
const MAX_CACHE_SIZE = 1024 * 1024 * 1024 * 0.5; // 0.5 GiB
const PORT = process.env['PORT'] ?? 3000;
const cache = new Map<
string,
{
lastFetched: number;
statusCode: number;
headers: IncomingHttpHeaders;
data: Buffer;
}
>();
let cacheSize = 0;
const requestCounter = new Map<string, number>();
const app = express();
app.use(morgan(':method :url :status - :response-time ms'));
app.use((req, res) => {
if (req.method === 'GET' && cache.has(req.url)) {
const cached = cache.get(req.url);
if (cached && Date.now() - cached.lastFetched < CACHE_LIFETIME) {
requestCounter.set(req.url, (requestCounter.get(req.url) ?? 0) + 1);
res.writeHead(cached.statusCode, cached.headers).end(cached.data);
return;
}
}
const proxyReq = https.request(
{
hostname: PROXY_HOSTNAME,
path: req.url,
method: req.method,
},
(proxyRes) => {
const statusCode = proxyRes.statusCode ?? 500;
const headers = proxyRes.headers;
const responseChunks: Buffer[] = [];
proxyRes.on('data', (chunk) => responseChunks.push(chunk));
proxyRes.on('end', () => {
const responseData = Buffer.concat(responseChunks);
if (req.method === 'GET') {
cache.set(req.url, {
lastFetched: Date.now(),
statusCode: statusCode,
headers: headers,
data: responseData,
});
requestCounter.set(req.url, (requestCounter.get(req.url) ?? 0) + 1);
cacheSize += responseData.length;
if (cacheSize > MAX_CACHE_SIZE) {
const keys = Array.from(cache.keys());
keys.sort(
(a, b) =>
(requestCounter.get(a) ?? 0) - (requestCounter.get(b) ?? 0),
);
while (cacheSize > MAX_CACHE_SIZE && keys.length > 0) {
const key = keys.shift();
if (key) {
const cached = cache.get(key);
if (cached) {
cacheSize -= cached.data.length;
cache.delete(key);
}
}
}
}
}
res.writeHead(statusCode, headers).end(responseData);
});
},
);
proxyReq.on('error', () =>
res
.writeHead(500, { 'Content-Type': 'text/plain' })
.end('500 Internal Server Error'),
);
proxyReq.end();
});
app.listen(PORT, () => console.log(`Server running on port ${PORT}.\nYou can change the port with \`PORT=1234 ./path/to/executable\`.\n\nThis program may use up to 500 MB of RAM.`));