This commit is contained in:
himanshu8443
2025-06-16 22:35:39 +05:30
parent 4c95efcb5b
commit a21dad9698
123 changed files with 8099 additions and 159 deletions

78
dist/primewire/meta.js vendored Normal file
View File

@@ -0,0 +1,78 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getMeta = void 0;
const getMeta = async function ({ link, providerContext, }) {
try {
const { axios, cheerio } = providerContext;
const url = link;
const baseUrl = link.split("/").slice(0, 3).join("/");
const res = await axios.get(url);
const html = await res.data;
const $ = cheerio.load(html);
const imdbId = $(".movie_info")
.find('a[href*="imdb.com/title/tt"]:not([href*="imdb.com/title/tt/"])')
.attr("href")
?.split("/")[4] || "";
const type = $(".show_season").html() ? "series" : "movie";
const linkList = [];
$(".show_season").each((i, element) => {
const seasonTitle = "Season " + $(element).attr("data-id");
const episodes = [];
$(element)
.children()
.each((i, element2) => {
const episodeTitle = $(element2)
.find("a")
.children()
.remove()
.end()
.text()
.trim()
.replace("E", "Epiosode ");
const episodeLink = baseUrl + $(element2).find("a").attr("href");
if (episodeTitle && episodeLink) {
episodes.push({
title: episodeTitle,
link: episodeLink,
});
}
});
linkList.push({
title: seasonTitle,
directLinks: episodes,
});
});
if (type === "movie") {
linkList.push({
title: "Movie",
directLinks: [
{
link: link,
title: "Movie",
type: "movie",
},
],
});
}
return {
title: "",
image: "",
imdbId: imdbId,
synopsis: "",
type: type,
linkList: linkList,
};
}
catch (error) {
console.error(error);
return {
title: "",
image: "",
imdbId: "",
synopsis: "",
linkList: [],
type: "uhd",
};
}
};
exports.getMeta = getMeta;