mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-17 23:51:44 +00:00
132 lines
3.6 KiB
TypeScript
132 lines
3.6 KiB
TypeScript
import { Info, Link, ProviderContext } from "../types";
|
|
|
|
const hdbHeaders = {
|
|
Cookie: "xla=s4t",
|
|
Referer: "https://google.com",
|
|
"User-Agent":
|
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0",
|
|
};
|
|
export const getMeta = async function ({
|
|
link,
|
|
providerContext,
|
|
}: {
|
|
link: string;
|
|
providerContext: ProviderContext;
|
|
}): Promise<Info> {
|
|
try {
|
|
const { axios, cheerio } = providerContext;
|
|
const url = link;
|
|
const res = await axios.get(url, { headers: hdbHeaders });
|
|
const data = res.data;
|
|
const $ = cheerio.load(data);
|
|
const container = $(".page-body");
|
|
const imdbId =
|
|
container
|
|
.find('a[href*="imdb.com/title/tt"]:not([href*="imdb.com/title/tt/"])')
|
|
.attr("href")
|
|
?.split("/")[4] || "";
|
|
const title = container
|
|
.find(
|
|
'h2[data-ved="2ahUKEwjL0NrBk4vnAhWlH7cAHRCeAlwQ3B0oATAfegQIFBAM"],h2[data-ved="2ahUKEwiP0pGdlermAhUFYVAKHV8tAmgQ3B0oATAZegQIDhAM"]'
|
|
)
|
|
.text();
|
|
const type = title.toLocaleLowerCase().includes("season")
|
|
? "series"
|
|
: "movie";
|
|
const synopsis = container
|
|
.find('strong:contains("DESCRIPTION")')
|
|
.parent()
|
|
.text()
|
|
.replace("DESCRIPTION:", "");
|
|
const image = container.find('img[decoding="async"]').attr("src") || "";
|
|
|
|
// Links
|
|
const links: Link[] = [];
|
|
const directLink: Link["directLinks"] = [];
|
|
|
|
// direct link type
|
|
$('strong:contains("EPiSODE")').map((i, element) => {
|
|
const epTitle = $(element).parent().parent().text();
|
|
const episodesLink =
|
|
$(element)
|
|
.parent()
|
|
.parent()
|
|
.parent()
|
|
.next()
|
|
.next()
|
|
.find("a")
|
|
.attr("href") ||
|
|
$(element).parent().parent().parent().next().find("a").attr("href");
|
|
|
|
if (episodesLink && episodesLink) {
|
|
directLink.push({
|
|
title: epTitle,
|
|
link: episodesLink,
|
|
});
|
|
}
|
|
});
|
|
|
|
if (directLink.length === 0) {
|
|
container.find('a:contains("EPiSODE")').map((i, element) => {
|
|
const epTitle = $(element).text();
|
|
const episodesLink = $(element).attr("href");
|
|
if (episodesLink) {
|
|
directLink.push({
|
|
title: epTitle.toLocaleUpperCase(),
|
|
link: episodesLink,
|
|
});
|
|
}
|
|
});
|
|
}
|
|
if (directLink.length > 0) {
|
|
links.push({
|
|
title: title,
|
|
directLinks: directLink,
|
|
});
|
|
}
|
|
if (directLink.length === 0) {
|
|
container
|
|
.find(
|
|
'a:contains("480"),a:contains("720"),a:contains("1080"),a:contains("2160"),a:contains("4K")'
|
|
)
|
|
.map((i, element) => {
|
|
const quality =
|
|
$(element)
|
|
.text()
|
|
.match(/\b(480p|720p|1080p|2160p)\b/i)?.[0] || "";
|
|
const movieLinks = $(element).attr("href");
|
|
const title = $(element).text();
|
|
if (movieLinks) {
|
|
links.push({
|
|
directLinks: [
|
|
{ link: movieLinks, title: "Movie", type: "movie" },
|
|
],
|
|
quality: quality,
|
|
title: title,
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
// console.log('drive meta', title, synopsis, image, imdbId, type, links);
|
|
return {
|
|
title,
|
|
synopsis,
|
|
image,
|
|
imdbId,
|
|
type,
|
|
linkList: links,
|
|
};
|
|
} catch (err) {
|
|
console.error(err);
|
|
return {
|
|
title: "",
|
|
synopsis: "",
|
|
image: "",
|
|
imdbId: "",
|
|
type: "movie",
|
|
linkList: [],
|
|
};
|
|
}
|
|
};
|