183 lines
6.9 KiB
JavaScript
183 lines
6.9 KiB
JavaScript
minisrv_service_file = true;
|
|
request_is_async = true;
|
|
|
|
proxyUrl = minisrv_config.services[service_name].wrp_url;
|
|
if (!proxyUrl) {
|
|
headers = `200 OK
|
|
Content-Type: text/html
|
|
wtv-expire-all: wtv-proxy:/`;
|
|
data = `
|
|
<html>
|
|
<head>
|
|
<title>Web Rendering Proxy</title>
|
|
</head>
|
|
<body bgcolor="#191919" text="#44cc55" link="36d5ff" vlink="36d5ff" fontsize="small">
|
|
<h1>Web Rendering Proxy</h1>
|
|
Sorry, the Web Rendering Proxy is not enabled on this service.<br>
|
|
</body>
|
|
</html>`;
|
|
sendToClient(socket, headers, data);
|
|
} else {
|
|
|
|
if (!proxyUrl.endsWith('/')) {
|
|
proxyUrl += '/';
|
|
}
|
|
|
|
if (!request_headers.query.url) {
|
|
headers = `200 OK
|
|
Content-Type: text/html
|
|
wtv-expire-all: wtv-proxy:/`;
|
|
data = `
|
|
<html>
|
|
<head>
|
|
<title>Web Rendering Proxy</title>
|
|
</head>
|
|
<body bgcolor="#191919" text="#44cc55" link="36d5ff" vlink="36d5ff" fontsize="small">
|
|
<h1>Web Rendering Proxy</h1>
|
|
<p>Welcome to the Web Rendering Proxy.<br>
|
|
Please provide a valid URL to render.</p>
|
|
<form method="POST" action="wtv-proxy:/proxy">
|
|
<label for="url"> URL:</label>
|
|
<input type="text" id="url" name="url" value="https://" size=38>
|
|
<input type="hidden" name="z" value="1.0">
|
|
<input type="hidden" name="t" value="jpg">
|
|
<input type="hidden" name="c" value="256">
|
|
<input type="hidden" name="h" value="426">
|
|
<input type="hidden" name="w" value="640">
|
|
<input type="hidden" name="m" value="ismap">
|
|
<input type="submit" value="Go">
|
|
</form>
|
|
<hr>
|
|
<center>
|
|
<a href="wtv-tricks:/tricks">Back to Tricks</a>
|
|
</center>
|
|
</body>
|
|
</html>`
|
|
sendToClient(socket, headers, data);
|
|
} else {
|
|
if (request_headers.query.err) {
|
|
finishPage(`<h1>Error</h1><p>${request_headers.query.err}</p>`);
|
|
} else {
|
|
if (request_headers.query.Fn) {
|
|
if (typeof request_headers.query.Fn !== 'string') {
|
|
request_headers.query.Fn = request_headers.query.Fn[0];
|
|
}
|
|
}
|
|
const params = new URLSearchParams({
|
|
url: request_headers.query.url,
|
|
z: request_headers.query.z || '1.0',
|
|
t: request_headers.query.t || 'jpg',
|
|
c: request_headers.query.c || '256',
|
|
h: request_headers.query.h || '426',
|
|
w: request_headers.query.w || '640',
|
|
m: request_headers.query.m || 'ismap',
|
|
Fn: request_headers.query.Fn || ''
|
|
});
|
|
|
|
if (params.get('Fn') === '129') {
|
|
params.set('Fn', 'Bk');
|
|
}
|
|
|
|
if (params.get('Fn') === 'Home') {
|
|
headers = `302 Moved
|
|
Location: wtv-proxy:/proxy`
|
|
data = '';
|
|
sendToClient(socket, headers, data);
|
|
} else {
|
|
const urlObj = new URL(proxyUrl);
|
|
const post_data = params.toString();
|
|
const options = {
|
|
protocol: urlObj.protocol,
|
|
hostname: urlObj.hostname,
|
|
port: parseInt(urlObj.port),
|
|
path: urlObj.pathname,
|
|
method: 'POST',
|
|
headers: {
|
|
'User-Agent': request_headers['User-Agent'] || 'Mozilla/4.0 WebTV/2.6 (compatible; MSIE 4.0)',
|
|
'Content-Type': 'application/x-www-form-urlencoded',
|
|
'Content-Length': Buffer.byteLength(post_data)
|
|
}
|
|
}
|
|
const lib = urlObj.protocol === 'https:' ? https : http;
|
|
if (request_headers.query.id) {
|
|
finishPage(`<a href="/map/${request_headers.query.id}.map"><img src="/img/${request_headers.query.id}.${params.get('t')}" ISMAP></a>`);
|
|
} else {
|
|
function fetch(options, post_data) {
|
|
return new Promise((resolve, reject) => {
|
|
req = lib.request(options, (res) => {
|
|
let data = '';
|
|
res.on('data', chunk => data += chunk);
|
|
res.on('end', () => resolve({ text: () => Promise.resolve(data) }));
|
|
}).on('error', reject);
|
|
req.write(post_data); // 🔁 Send body
|
|
req.end();
|
|
});
|
|
}
|
|
fetch(options, post_data)
|
|
.then(response => response.text())
|
|
.then(text => { process(text); })
|
|
.catch(err => { finishPage(`Error fetching page: ${err.message}`); });
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function process(content) {
|
|
if (content.startsWith('<HTML')) {
|
|
// success page
|
|
// Find all <a href="..."><img src="..."></a> and extract the URLs
|
|
const aHrefMatch = content.match(/<a\s+href="([^"]+)"/i);
|
|
const imgSrcMatch = content.match(/<img\s+src="([^"]+)"/i);
|
|
const links = [];
|
|
if (aHrefMatch && imgSrcMatch) {
|
|
links.push({
|
|
href: aHrefMatch[1],
|
|
img: imgSrcMatch[1]
|
|
});
|
|
}
|
|
// Extract the current URL
|
|
const urlInputMatch = content.match(/<input[^>]+type=["']text["'][^>]+name=["']url["'][^>]+value=["']([^"']+)["']/i);
|
|
let pageUrl = request_headers.query.url || '';
|
|
if (urlInputMatch) {
|
|
pageUrl = urlInputMatch[1];
|
|
}
|
|
finishPage(links.map(link => `<a href="${link.href}"><img src="${link.img}" ISMAP></a>`).join('<br>'), pageUrl);
|
|
// You can now use the `links` array as needed
|
|
|
|
} else {
|
|
var idx = content.indexOf('<BR>');
|
|
content = content.substring(0, idx);
|
|
finishPage(content);
|
|
}
|
|
}
|
|
|
|
function finishPage(content, url) {
|
|
headers = `200 OK
|
|
Content-Type: text/html
|
|
wtv-expire-all: wtv-proxy:/`;
|
|
data = `
|
|
<html>
|
|
<head>
|
|
<title>Web Rendering Proxy</title>
|
|
</head>
|
|
<display nooptions skipback showwhencomplete>
|
|
<body bgcolor="#191919" text="#44cc55" link="36d5ff" vlink="36d5ff" fontsize="small">
|
|
<form method="POST" action="wtv-proxy:/proxy">
|
|
<label for="url">URL:</label>
|
|
<input type="text" id="url" name="url" value="${url || request_headers.query.url}" size=30>
|
|
<input type="hidden" name="z" value="${request_headers.query.z || '1.0'}">
|
|
<input type="hidden" name="t" value="${request_headers.query.t || 'jpg'}">
|
|
<input type="hidden" name="c" value="${request_headers.query.c || '216'}">
|
|
<input type="submit" value="Go">
|
|
<input type="submit" name="Fn" value="">
|
|
<input type="submit" name="Fn" value="Re">
|
|
<input type="submit" name="Fn" value="Home">
|
|
<hr>
|
|
${content}
|
|
</form>
|
|
</body>
|
|
</html>`;
|
|
sendToClient(socket, headers, data);
|
|
}
|