2024-04-27 11:59:27 +01:00
|
|
|
import { genericUserAgent } from "../config.js";
|
|
|
|
|
|
|
|
const defaultHeaders = {
|
|
|
|
'user-agent': genericUserAgent
|
|
|
|
}
|
|
|
|
|
|
|
|
const serviceHeaders = {
|
|
|
|
bilibili: {
|
|
|
|
referer: 'https://www.bilibili.com/'
|
|
|
|
},
|
|
|
|
youtube: {
|
|
|
|
accept: '*/*',
|
|
|
|
origin: 'https://www.youtube.com',
|
|
|
|
referer: 'https://www.youtube.com',
|
|
|
|
DNT: '?1'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-21 20:20:54 +01:00
|
|
|
export function closeResponse(res) {
|
|
|
|
if (!res.headersSent) res.sendStatus(500);
|
|
|
|
return res.destroy();
|
|
|
|
}
|
|
|
|
|
2024-04-27 11:59:27 +01:00
|
|
|
export function getHeaders(service) {
|
|
|
|
return { ...defaultHeaders, ...serviceHeaders[service] }
|
|
|
|
}
|