Spaces:
Sleeping
Sleeping
Update index.js
Browse files
index.js
CHANGED
@@ -5,68 +5,82 @@ require('dotenv').config();
|
|
5 |
const app = express();
|
6 |
const eachfilesize = {};
|
7 |
|
8 |
-
function getFileSize(
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
eachfilesize[link] = contentLength;
|
19 |
-
});
|
20 |
-
}
|
21 |
-
return fileSize;
|
22 |
}
|
23 |
|
24 |
-
app.get('/', (req, res) => {
|
25 |
-
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
'Authorization': `Bearer ${token}`,
|
33 |
-
'Range': req.headers['range'] || ''
|
34 |
-
};
|
35 |
-
|
36 |
-
request.get({
|
37 |
-
url: originalUrl,
|
38 |
-
headers: headers
|
39 |
-
}).on('response', (originalResponse) => {
|
40 |
-
const links = [originalUrl];
|
41 |
-
const fileSize = getFileSize(links);
|
42 |
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
headers_dict['Access-Control-Allow-Origin'] = '*';
|
47 |
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
|
55 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
res.status(500).send('Internal Server Error');
|
63 |
-
});
|
64 |
-
} else {
|
65 |
-
res.status(400).send('Missing shared parameter');
|
66 |
}
|
|
|
|
|
|
|
67 |
});
|
68 |
|
69 |
const port = 7860;
|
70 |
app.listen(port, '0.0.0.0', () => {
|
71 |
-
|
72 |
});
|
|
|
5 |
const app = express();
|
6 |
const eachfilesize = {};
|
7 |
|
8 |
+
async function getFileSize(link) {
|
9 |
+
try {
|
10 |
+
const res = await request.head(link);
|
11 |
+
const contentLength = parseInt(res.headers['content-length'] || 0.1);
|
12 |
+
eachfilesize[link] = contentLength;
|
13 |
+
return contentLength;
|
14 |
+
} catch (err) {
|
15 |
+
console.error(err);
|
16 |
+
return 0;
|
17 |
+
}
|
|
|
|
|
|
|
|
|
18 |
}
|
19 |
|
20 |
+
app.get('/', async (req, res) => {
|
21 |
+
const shared = req.query.shared;
|
22 |
+
const filename = req.query.filename;
|
23 |
+
|
24 |
+
if (shared) {
|
25 |
+
const originalUrl = `https://huggingface.co/tranquan24/video/resolve/main/${shared}`;
|
26 |
+
const token = process.env.TOKEN;
|
27 |
+
const headers = {
|
28 |
+
'Authorization': `Bearer ${token}`,
|
29 |
+
'Range': req.headers['range'] || ''
|
30 |
+
};
|
31 |
+
|
32 |
+
try {
|
33 |
+
const originalResponse = await request.get({ url: originalUrl, headers });
|
34 |
|
35 |
+
let headers_dict = {};
|
36 |
+
for (const [key, value] of Object.entries(originalResponse.headers)) {
|
37 |
+
headers_dict[key] = value;
|
38 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
|
40 |
+
headers_dict['X-Speed'] = 'Fast';
|
41 |
+
headers_dict['X-Bandwidth'] = 'High';
|
42 |
+
headers_dict['Access-Control-Allow-Origin'] = '*';
|
|
|
43 |
|
44 |
+
if (filename) {
|
45 |
+
headers_dict['Content-Disposition'] = `attachment; filename="${filename}"`;
|
46 |
+
} else {
|
47 |
+
const filenameFromUrl = shared.split('/').pop();
|
48 |
+
headers_dict['Content-Disposition'] = `attachment; filename="${filenameFromUrl}"`;
|
49 |
+
}
|
50 |
|
51 |
+
const newResponse = new Response(originalResponse.body, { headers: headers_dict });
|
52 |
+
newResponse.headers.delete('Date');
|
53 |
+
newResponse.headers.delete('Etag');
|
54 |
+
newResponse.headers.delete('Last-Modified');
|
55 |
+
newResponse.headers.delete('Cf-Cache-Status');
|
56 |
+
newResponse.headers.delete('Content-Disposition');
|
57 |
+
newResponse.headers.delete('Nel');
|
58 |
+
newResponse.headers.delete('Cf-Ray');
|
59 |
+
newResponse.headers.delete('Report-To');
|
60 |
+
newResponse.headers.delete('X-Amz-Cf-Id');
|
61 |
+
newResponse.headers.delete('X-Amz-Cf-Pop');
|
62 |
+
newResponse.headers.delete('X-Amz-Server-Side-Encryption');
|
63 |
+
newResponse.headers.delete('X-Amz-Storage-Class');
|
64 |
+
newResponse.headers.delete('X-Cache');
|
65 |
+
newResponse.headers.set('Cache-Control', 'private, max-age=21188');
|
66 |
+
newResponse.headers.set('Connection', 'close');
|
67 |
+
newResponse.headers.set('Server', 'gvs 1.0');
|
68 |
+
newResponse.headers.set('Vary', 'Origin');
|
69 |
+
newResponse.headers.set('X-Content-Type-Options', 'nosniff');
|
70 |
+
newResponse.headers.set('Access-Control-Allow-Origin', 'https://tpcloud.rf.gd');
|
71 |
|
72 |
+
res.writeHead(newResponse.status, newResponse.headers);
|
73 |
+
newResponse.body.pipe(res);
|
74 |
+
} catch (err) {
|
75 |
+
console.error(err);
|
76 |
+
res.status(500).send('Internal Server Error');
|
|
|
|
|
|
|
|
|
77 |
}
|
78 |
+
} else {
|
79 |
+
res.status(400).send('Missing shared parameter');
|
80 |
+
}
|
81 |
});
|
82 |
|
83 |
const port = 7860;
|
84 |
app.listen(port, '0.0.0.0', () => {
|
85 |
+
console.log(`Server is running on port ${port}`);
|
86 |
});
|