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

2
.gitignore vendored
View File

@ -1,2 +1,4 @@
node_modules
*_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 url = require('url');
const child_proc = require('child_process');
const fs = require('fs');
const state = { pid: null };
/**
*
* @param {import("../../proxy").FilterInfo} f
@ -15,7 +18,42 @@ function filter(f) {
}
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();
app.post("/*", async function (req, res) {
console.log("Reading a post request")
@ -28,6 +66,8 @@ app.post("/*", async function (req, res) {
try {
// console.log(new URL(req.path).search);
fetch = (await import('node-fetch')).default;
await startServerIfNeeded();
const resFromRev = await fetch('http://localhost:3040/' + url.parse(req.url).search, {
body: dat,
"headers": req.headers,
@ -76,10 +116,10 @@ app.get('/*', (req, res)=>{
*/
function proxy(config, sock) {
const ms = handlers.getMiniServer(function (req, res) {
console.log(req);
// console.log(req);
app(req, res);
}, path.resolve(__dirname, "public", "google.com.pem"), path.resolve(__dirname, "public", "google.com.key"))
console.log("Hi");
const socks = net.createConnection({
host: "localhost",
port: ms.port

1
dmbackend Submodule

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