This commit is contained in:
蒋小陌 2024-10-12 17:11:47 +08:00
parent e606aa2297
commit 82bff3babf

View File

@ -3,12 +3,13 @@ const https = require('https');
const url = require('url'); const url = require('url');
const querystring = require('querystring'); const querystring = require('querystring');
const fs = require('fs'); const fs = require('fs');
const path = require('path'); const pathModule = require('path');
const crypto = require('crypto'); const crypto = require('crypto');
const requestTimeout = 10000; // 10 seconds const requestTimeout = 10000; // 10 seconds
const cacheDir = path.join(__dirname, '.cache'); const cacheDir = pathModule.join(__dirname, '.cache');
const args = process.argv.slice(2); const args = process.argv.slice(2);
const pathIndex = {};
let port = 9001; let port = 9001;
let apiEndpoint = 'https://oss.x-php.com/alist/link'; let apiEndpoint = 'https://oss.x-php.com/alist/link';
@ -38,10 +39,6 @@ const server = http.createServer(async (req, res) => {
const parsedUrl = url.parse(req.url, true); const parsedUrl = url.parse(req.url, true);
const reqPath = parsedUrl.pathname; const reqPath = parsedUrl.pathname;
const sign = parsedUrl.query.sign || ''; const sign = parsedUrl.query.sign || '';
const reqName = parsedUrl.pathname.split('/').pop();
const cacheMetaFile = path.join(cacheDir, `${reqName.replace(/\//g, '_')}.meta`);
const cacheContentFile = path.join(cacheDir, `${reqName.replace(/\//g, '_')}.content`);
const tempCacheContentFile = path.join(cacheDir, `${reqName.replace(/\//g, '_')}_${crypto.randomUUID()}.temp`);
if (!sign || reqPath === '/') { if (!sign || reqPath === '/') {
res.writeHead(400, { 'Content-Type': 'text/plain' }); res.writeHead(400, { 'Content-Type': 'text/plain' });
@ -49,7 +46,18 @@ const server = http.createServer(async (req, res) => {
return; return;
} }
if (isCacheValid(cacheMetaFile, cacheContentFile)) { const uniqidhex = crypto.createHash('md5').update(reqPath + sign).digest('hex');
let cacheMetaFile = '';
let cacheContentFile = '';
let tempCacheContentFile = '';
if (pathIndex[uniqidhex]) {
cacheMetaFile = pathModule.join(cacheDir, `${pathIndex[uniqidhex]}.meta`);
cacheContentFile = pathModule.join(cacheDir, `${pathIndex[uniqidhex]}.content`);
}
if (pathIndex[uniqidhex] && isCacheValid(cacheMetaFile, cacheContentFile)) {
serveFromCache(cacheMetaFile, cacheContentFile, res); serveFromCache(cacheMetaFile, cacheContentFile, res);
} else { } else {
try { try {
@ -58,6 +66,12 @@ const server = http.createServer(async (req, res) => {
const { url: realUrl, cloudtype, expiration, path, headers, uniqid } = apiData.data; const { url: realUrl, cloudtype, expiration, path, headers, uniqid } = apiData.data;
const data = { realUrl, cloudtype, expiration: expiration * 1000, path, headers, uniqid }; const data = { realUrl, cloudtype, expiration: expiration * 1000, path, headers, uniqid };
pathIndex[uniqidhex] = data.uniqid;
cacheMetaFile = pathModule.join(cacheDir, `${data.uniqid}.meta`);
cacheContentFile = pathModule.join(cacheDir, `${data.uniqid}.content`);
tempCacheContentFile = pathModule.join(cacheDir, `${data.uniqid}_${crypto.randomBytes(16).toString('hex')}.temp`);
if (expiration > 0) { if (expiration > 0) {
fs.writeFileSync(cacheMetaFile, JSON.stringify(data)); fs.writeFileSync(cacheMetaFile, JSON.stringify(data));
} }
@ -119,9 +133,9 @@ const fetchApiData = (reqPath, sign) => {
const fetchAndServe = (data, tempCacheContentFile, cacheContentFile, res) => { const fetchAndServe = (data, tempCacheContentFile, cacheContentFile, res) => {
https.get(data.realUrl, { timeout: requestTimeout * 10 }, (realRes) => { https.get(data.realUrl, { timeout: requestTimeout * 10 }, (realRes) => {
const cacheStream = fs.createWriteStream(tempCacheContentFile, { flags: 'w' }); const cacheStream = fs.createWriteStream(tempCacheContentFile, { flags: 'w' });
const isVideo = data.path.includes('.mp4');
data.headers['content-length'] = realRes.headers['content-length'];
let isVideo = data.path && typeof data.path === 'string' && data.path.includes('.mp4');
data.headers['content-length'] = realRes.headers['content-length'];
res.writeHead(realRes.statusCode, { res.writeHead(realRes.statusCode, {
...data.headers, ...data.headers,
'Cloud-Type': data.cloudtype, 'Cloud-Type': data.cloudtype,
@ -151,30 +165,18 @@ const fetchAndServe = (data, tempCacheContentFile, cacheContentFile, res) => {
}); });
realRes.on('error', (e) => { realRes.on('error', (e) => {
if (!res.headersSent) { handleResponseError(res, tempCacheContentFile, data.realUrl);
res.writeHead(502, { 'Content-Type': 'text/plain' });
res.end(`Bad Gateway: ${data.realUrl}`);
}
if (fs.existsSync(tempCacheContentFile)) {
fs.unlinkSync(tempCacheContentFile);
}
}); });
}).on('error', (e) => { }).on('error', (e) => {
if (!res.headersSent) { handleResponseError(res, tempCacheContentFile, data.realUrl);
res.writeHead(502, { 'Content-Type': 'text/plain' });
res.end(`Bad Gateway: ${data.realUrl}`);
}
if (fs.existsSync(tempCacheContentFile)) {
fs.unlinkSync(tempCacheContentFile);
}
}); });
}; };
const serveFromCache = (cacheMetaFile, cacheContentFile, res) => { const serveFromCache = (cacheMetaFile, cacheContentFile, res) => {
const cacheData = JSON.parse(fs.readFileSync(cacheMetaFile, 'utf8')); const cacheData = JSON.parse(fs.readFileSync(cacheMetaFile, 'utf8'));
const readStream = fs.createReadStream(cacheContentFile); const readStream = fs.createReadStream(cacheContentFile);
const isVideo = cacheData.path.includes('.mp4');
let isVideo = cacheData.path && typeof cacheData.path === 'string' && cacheData.path.includes('.mp4');
cacheData.headers['content-length'] = fs.statSync(cacheContentFile).size; cacheData.headers['content-length'] = fs.statSync(cacheContentFile).size;
readStream.on('open', () => { readStream.on('open', () => {
@ -195,13 +197,27 @@ const serveFromCache = (cacheMetaFile, cacheContentFile, res) => {
}); });
readStream.on('error', (err) => { readStream.on('error', (err) => {
if (!res.headersSent) { handleCacheReadError(res);
res.writeHead(500, { 'Content-Type': 'text/plain' });
res.end('Internal Server Error: Unable to read cache content file');
}
}); });
}; };
const handleResponseError = (res, tempCacheContentFile, realUrl) => {
if (!res.headersSent) {
res.writeHead(502, { 'Content-Type': 'text/plain' });
res.end(`Bad Gateway: ${realUrl}`);
}
if (fs.existsSync(tempCacheContentFile)) {
fs.unlinkSync(tempCacheContentFile);
}
};
const handleCacheReadError = (res) => {
if (!res.headersSent) {
res.writeHead(500, { 'Content-Type': 'text/plain' });
res.end('Internal Server Error: Unable to read cache content file');
}
};
server.listen(port, () => { server.listen(port, () => {
console.log(`Proxy server is running on http://localhost:${port}`); console.log(`Proxy server is running on http://localhost:${port}`);
}); });