integrated dmbackend

This commit is contained in:
MunyDev 2025-01-24 21:53:47 -05:00
parent 2dfdb34218
commit 49d3214b24
4 changed files with 70 additions and 24 deletions

4
.gitignore vendored
View File

@ -1,2 +1,4 @@
node_modules node_modules
*_cert *_cert
*.log
.venv

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "dmbackend"]
path = dmbackend
url = https://github.com/MunyDev/dmbackend

View File

@ -4,6 +4,9 @@ const path = require('path');
const express = require('express'); const express = require('express');
const url = require('url'); const url = require('url');
const child_proc = require('child_process');
const fs = require('fs');
const state = { pid: null };
/** /**
* *
* @param {import("../../proxy").FilterInfo} f * @param {import("../../proxy").FilterInfo} f
@ -15,28 +18,65 @@ function filter(f) {
} }
return false; return false;
} }
async function startServerIfNeeded() {
if (state.pid) return;
let realpath = path.resolve('.', 'dmbackend', 'start_server.sh')
let prc = child_proc.spawn("/bin/bash", [path.resolve('.', 'dmbackend', 'start_server.sh'), realpath], {stdio: "pipe"});
let wstream = fs.createWriteStream("./int_server.log");
let pidPath = path.resolve(path.dirname(realpath), "pid");
try {
fs.rmSync(pidPath);
} catch {};
prc.stdout.pipe(wstream);
prc.stderr.pipe(wstream);
// prc.stdout.once("data", async (c) => {
// let pid = 0;
// console.log("Started as PID: "+ (pid = parseInt(c.toString('utf-8').split("Server PID: ")[1].split('\n')[0])));
// state.pid = pid;
let buffer = null;
while (true) {
if ((buffer = await new Promise((resolve)=>{
fs.readFile(pidPath, (err, data)=>{
if (err)
resolve(null);
else {
resolve(data);
}
})
}))) {
break;
}
}
state.pid = parseInt(buffer.toString('utf-8'));
// })
console.log("Started internal server with pid of: " + state.pid);
}
const app = express(); const app = express();
app.post("/*", async function (req, res) { app.post("/*", async function (req, res) {
console.log("Reading a post request") console.log("Reading a post request")
console.log(req.header('Content-Length')); console.log(req.header('Content-Length'));
var a = parseInt(req.header('Content-Length')) var a = parseInt(req.header('Content-Length'))
const dat = Buffer.alloc(a); const dat = Buffer.alloc(a);
var ptr = 0; var ptr = 0;
async function handle() { async function handle() {
console.log("handling: " + url.parse(req.url).search); console.log("handling: " + url.parse(req.url).search);
try { try {
// console.log(new URL(req.path).search); // console.log(new URL(req.path).search);
fetch = (await import('node-fetch')).default; fetch = (await import('node-fetch')).default;
const resFromRev = await fetch('http://localhost:3040/' + url.parse(req.url).search, { await startServerIfNeeded();
body: dat,
"headers": req.headers, const resFromRev = await fetch('http://localhost:3040/' + url.parse(req.url).search, {
method: "POST" body: dat,
}); "headers": req.headers,
// console.log(resFromRev.data); method: "POST"
res.header('Content-Type', 'application/x-protobuffer'); });
res.writeHead(resFromRev.status, resFromRev.statusText); // console.log(resFromRev.data);
res.end(new Uint8Array((await resFromRev.arrayBuffer()))); res.header('Content-Type', 'application/x-protobuffer');
res.writeHead(resFromRev.status, resFromRev.statusText);
res.end(new Uint8Array((await resFromRev.arrayBuffer())));
} catch (e) { } catch (e) {
if (!e.response) { if (!e.response) {
console.log("Error occured here without a response. Weird."); console.log("Error occured here without a response. Weird.");
@ -48,12 +88,12 @@ app.post("/*", async function (req, res) {
res.header('Content-Type', "application/x-protobuffer"); res.header('Content-Type', "application/x-protobuffer");
res.header('Content-Length', e.response.data.length.toString()); res.header('Content-Length', e.response.data.length.toString());
res.writeHead(e.response.status, "Internal server error"); res.writeHead(e.response.status, "Internal server error");
res.end(e.response.data); res.end(e.response.data);
} }
} }
req.on("data", function(r) { req.on("data", function (r) {
dat.set(r, ptr); dat.set(r, ptr);
ptr += r.length; ptr += r.length;
console.log(ptr); console.log(ptr);
@ -61,11 +101,11 @@ app.post("/*", async function (req, res) {
handle() handle()
} }
}) })
}); });
app.get('/*', (req, res)=>{ app.get('/*', (req, res) => {
res.writeHead(200, "OK"); res.writeHead(200, "OK");
res.end("OK"); res.end("OK");
}) })
@ -74,20 +114,20 @@ app.get('/*', (req, res)=>{
* @param {import("../../proxy").ServerConfig} config * @param {import("../../proxy").ServerConfig} config
* @param {net.Socket} sock * @param {net.Socket} sock
*/ */
function proxy(config, sock){ function proxy(config, sock) {
const ms = handlers.getMiniServer(function (req, res) { const ms = handlers.getMiniServer(function (req, res) {
console.log(req); // console.log(req);
app(req, res); app(req, res);
}, path.resolve(__dirname, "public", "google.com.pem"),path.resolve(__dirname, "public", "google.com.key")) }, path.resolve(__dirname, "public", "google.com.pem"), path.resolve(__dirname, "public", "google.com.key"))
console.log("Hi");
const socks = net.createConnection({ const socks = net.createConnection({
host: "localhost", host: "localhost",
port: ms.port port: ms.port
}, function(){ }, function () {
sock.write('HTTP/1.1 200 OK\r\n\n'); sock.write('HTTP/1.1 200 OK\r\n\n');
sock.pipe(socks); sock.pipe(socks);
socks.pipe(sock); socks.pipe(sock);
// sock.write('HTTP/1.1 200 OK\r\n\n'); // sock.write('HTTP/1.1 200 OK\r\n\n');
}); });
} }

1
dmbackend Submodule

@ -0,0 +1 @@
Subproject commit 3d823ab09933b151dd5447d98f6f1a98113e1d67