mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-17 23:51:44 +00:00
115 lines
3.6 KiB
TypeScript
115 lines
3.6 KiB
TypeScript
import { ProviderContext, Stream } from "../types";
|
|
|
|
const headers = {
|
|
accept:
|
|
"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7",
|
|
"accept-language": "en-US,en;q=0.9,en-IN;q=0.8",
|
|
"cache-control": "no-cache",
|
|
pragma: "no-cache",
|
|
priority: "u=0, i",
|
|
"sec-ch-ua":
|
|
'"Chromium";v="140", "Not=A?Brand";v="24", "Microsoft Edge";v="140"',
|
|
"sec-ch-ua-mobile": "?0",
|
|
"sec-ch-ua-platform": '"Windows"',
|
|
"sec-fetch-dest": "document",
|
|
"sec-fetch-mode": "navigate",
|
|
"sec-fetch-site": "none",
|
|
"sec-fetch-user": "?1",
|
|
"upgrade-insecure-requests": "1",
|
|
};
|
|
|
|
export async function getStream({
|
|
link,
|
|
type,
|
|
signal,
|
|
providerContext,
|
|
}: {
|
|
link: string;
|
|
type: string;
|
|
signal: AbortSignal;
|
|
providerContext: ProviderContext;
|
|
}) {
|
|
const { axios, cheerio, extractors } = providerContext;
|
|
const { hubcloudExtracter } = extractors;
|
|
try {
|
|
const streamLinks: Stream[] = [];
|
|
console.log("dotlink", link);
|
|
if (type === "movie") {
|
|
// vlink
|
|
const dotlinkRes = await fetch(`${link}`, { headers });
|
|
const dotlinkText = await dotlinkRes.text();
|
|
// console.log('dotlinkText', dotlinkText);
|
|
const vlink = dotlinkText.match(/<a\s+href="([^"]*cloud\.[^"]*)"/i) || [];
|
|
// console.log('vLink', vlink[1]);
|
|
link = vlink[1];
|
|
|
|
// filepress link
|
|
try {
|
|
const $ = cheerio.load(dotlinkText);
|
|
const filepressLink = $(
|
|
'.btn.btn-sm.btn-outline[style="background:linear-gradient(135deg,rgb(252,185,0) 0%,rgb(0,0,0)); color: #fdf8f2;"]'
|
|
)
|
|
.parent()
|
|
.attr("href");
|
|
// console.log('filepressLink', filepressLink);
|
|
const filepressID = filepressLink?.split("/").pop();
|
|
const filepressBaseUrl = filepressLink
|
|
?.split("/")
|
|
.slice(0, -2)
|
|
.join("/");
|
|
// console.log('filepressID', filepressID);
|
|
// console.log('filepressBaseUrl', filepressBaseUrl);
|
|
const filepressTokenRes = await axios.post(
|
|
filepressBaseUrl + "/api/file/downlaod/",
|
|
{
|
|
id: filepressID,
|
|
method: "indexDownlaod",
|
|
captchaValue: null,
|
|
},
|
|
{
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
Referer: filepressBaseUrl,
|
|
},
|
|
}
|
|
);
|
|
// console.log('filepressTokenRes', filepressTokenRes.data);
|
|
if (filepressTokenRes.data?.status) {
|
|
const filepressToken = filepressTokenRes.data?.data;
|
|
const filepressStreamLink = await axios.post(
|
|
filepressBaseUrl + "/api/file/downlaod2/",
|
|
{
|
|
id: filepressToken,
|
|
method: "indexDownlaod",
|
|
captchaValue: null,
|
|
},
|
|
{
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
Referer: filepressBaseUrl,
|
|
},
|
|
}
|
|
);
|
|
// console.log('filepressStreamLink', filepressStreamLink.data);
|
|
streamLinks.push({
|
|
server: "filepress",
|
|
link: filepressStreamLink.data?.data?.[0],
|
|
type: "mkv",
|
|
});
|
|
}
|
|
} catch (error) {
|
|
console.log("filepress error: ");
|
|
// console.error(error);
|
|
}
|
|
}
|
|
|
|
return await hubcloudExtracter(link, signal);
|
|
} catch (error: any) {
|
|
console.log("getStream error: ", error);
|
|
if (error.message.includes("Aborted")) {
|
|
} else {
|
|
}
|
|
return [];
|
|
}
|
|
}
|