mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-17 23:51:44 +00:00
57 lines
1.4 KiB
TypeScript
57 lines
1.4 KiB
TypeScript
import { Info, Link, ProviderContext } from "../types";
|
|
|
|
export const getMeta = async function ({
|
|
link,
|
|
providerContext,
|
|
}: {
|
|
link: string;
|
|
providerContext: ProviderContext;
|
|
}): Promise<Info> {
|
|
try {
|
|
const { axios, cheerio, commonHeaders: headers } = providerContext;
|
|
const url = link;
|
|
const res = await axios.get(url, { headers });
|
|
const data = res.data;
|
|
const $ = cheerio.load(data);
|
|
const type = url.includes("tvshows") ? "series" : "movie";
|
|
const imdbId = "";
|
|
const title = $('.fname:contains("Name")').find(".colora").text().trim();
|
|
const image = $(".ss").find("img").attr("src") || "";
|
|
const synopsis = $('.fname:contains("Description")')
|
|
.find(".colorg")
|
|
.text()
|
|
.trim();
|
|
const tags =
|
|
$('.fname:contains("Genre")').find(".colorb").text().split(",") || [];
|
|
const rating = "";
|
|
const links: Link[] = [];
|
|
const downloadLink = $(".dlbtn").find("a").attr("href");
|
|
if (downloadLink) {
|
|
links.push({
|
|
title: title,
|
|
episodesLink: downloadLink,
|
|
});
|
|
}
|
|
return {
|
|
title,
|
|
tags,
|
|
rating,
|
|
synopsis,
|
|
image,
|
|
imdbId,
|
|
type,
|
|
linkList: links,
|
|
};
|
|
} catch (err) {
|
|
console.error(err);
|
|
return {
|
|
title: "",
|
|
synopsis: "",
|
|
image: "",
|
|
imdbId: "",
|
|
type: "movie",
|
|
linkList: [],
|
|
};
|
|
}
|
|
};
|