mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-17 23:51:44 +00:00
build
This commit is contained in:
164
dist/uhd/meta.js
vendored
164
dist/uhd/meta.js
vendored
@@ -1,4 +1,13 @@
|
||||
"use strict";
|
||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.getMeta = void 0;
|
||||
const headers = {
|
||||
@@ -16,93 +25,96 @@ const headers = {
|
||||
"Upgrade-Insecure-Requests": "1",
|
||||
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0",
|
||||
};
|
||||
const getMeta = async function ({ link, providerContext, }) {
|
||||
try {
|
||||
const { axios, cheerio } = providerContext;
|
||||
const url = link;
|
||||
const res = await axios.get(url, { headers });
|
||||
const html = await res.data;
|
||||
const $ = cheerio.load(html);
|
||||
const title = $("h2:first").text() || "";
|
||||
const image = $("h2").siblings().find("img").attr("src") || "";
|
||||
// const trailer = $('iframe').attr('src') || '';
|
||||
// console.log({ title, image, trailer });
|
||||
// Links
|
||||
const episodes = [];
|
||||
// new structure
|
||||
$(".mks_separator").each((index, element) => {
|
||||
$(element)
|
||||
.nextUntil(".mks_separator")
|
||||
.each((index, element) => {
|
||||
const title = $(element).text();
|
||||
const episodesList = [];
|
||||
const getMeta = function (_a) {
|
||||
return __awaiter(this, arguments, void 0, function* ({ link, providerContext, }) {
|
||||
var _b;
|
||||
try {
|
||||
const { axios, cheerio } = providerContext;
|
||||
const url = link;
|
||||
const res = yield axios.get(url, { headers });
|
||||
const html = yield res.data;
|
||||
const $ = cheerio.load(html);
|
||||
const title = $("h2:first").text() || "";
|
||||
const image = $("h2").siblings().find("img").attr("src") || "";
|
||||
// const trailer = $('iframe').attr('src') || '';
|
||||
// console.log({ title, image, trailer });
|
||||
// Links
|
||||
const episodes = [];
|
||||
// new structure
|
||||
$(".mks_separator").each((index, element) => {
|
||||
$(element)
|
||||
.next("p")
|
||||
.find("a")
|
||||
.nextUntil(".mks_separator")
|
||||
.each((index, element) => {
|
||||
const title = $(element).text();
|
||||
const link = $(element).attr("href");
|
||||
if (title && link && !title.toLocaleLowerCase().includes("zip")) {
|
||||
episodesList.push({ title, link });
|
||||
// console.log({ title, link });
|
||||
const episodesList = [];
|
||||
$(element)
|
||||
.next("p")
|
||||
.find("a")
|
||||
.each((index, element) => {
|
||||
const title = $(element).text();
|
||||
const link = $(element).attr("href");
|
||||
if (title && link && !title.toLocaleLowerCase().includes("zip")) {
|
||||
episodesList.push({ title, link });
|
||||
// console.log({ title, link });
|
||||
}
|
||||
});
|
||||
if (title && episodesList.length > 0) {
|
||||
episodes.push({
|
||||
title,
|
||||
directLinks: episodesList,
|
||||
});
|
||||
}
|
||||
});
|
||||
if (title && episodesList.length > 0) {
|
||||
episodes.push({
|
||||
title,
|
||||
directLinks: episodesList,
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
// old structure
|
||||
$("hr").each((index, element) => {
|
||||
$(element)
|
||||
.nextUntil("hr")
|
||||
.each((index, element) => {
|
||||
const title = $(element).text();
|
||||
const episodesList = [];
|
||||
// old structure
|
||||
$("hr").each((index, element) => {
|
||||
$(element)
|
||||
.next("p")
|
||||
.find("a")
|
||||
.nextUntil("hr")
|
||||
.each((index, element) => {
|
||||
const title = $(element).text();
|
||||
const link = $(element).attr("href");
|
||||
if (title && link && !title.toLocaleLowerCase().includes("zip")) {
|
||||
episodesList.push({ title, link });
|
||||
// console.log({ title, link });
|
||||
const episodesList = [];
|
||||
$(element)
|
||||
.next("p")
|
||||
.find("a")
|
||||
.each((index, element) => {
|
||||
const title = $(element).text();
|
||||
const link = $(element).attr("href");
|
||||
if (title && link && !title.toLocaleLowerCase().includes("zip")) {
|
||||
episodesList.push({ title, link });
|
||||
// console.log({ title, link });
|
||||
}
|
||||
});
|
||||
if (title && episodesList.length > 0) {
|
||||
episodes.push({
|
||||
title,
|
||||
directLinks: episodesList,
|
||||
});
|
||||
}
|
||||
});
|
||||
if (title && episodesList.length > 0) {
|
||||
episodes.push({
|
||||
title,
|
||||
directLinks: episodesList,
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
// console.log(episodes);
|
||||
return {
|
||||
title: title.match(/^Download\s+([^(\[]+)/i)
|
||||
? title?.match(/^Download\s+([^(\[]+)/i)?.[1] || ""
|
||||
: title.replace("Download", "") || "",
|
||||
image,
|
||||
imdbId: "",
|
||||
synopsis: title,
|
||||
type: "",
|
||||
linkList: episodes,
|
||||
};
|
||||
}
|
||||
catch (error) {
|
||||
console.error(error);
|
||||
return {
|
||||
title: "",
|
||||
image: "",
|
||||
imdbId: "",
|
||||
synopsis: "",
|
||||
linkList: [],
|
||||
type: "uhd",
|
||||
};
|
||||
}
|
||||
// console.log(episodes);
|
||||
return {
|
||||
title: title.match(/^Download\s+([^(\[]+)/i)
|
||||
? ((_b = title === null || title === void 0 ? void 0 : title.match(/^Download\s+([^(\[]+)/i)) === null || _b === void 0 ? void 0 : _b[1]) || ""
|
||||
: title.replace("Download", "") || "",
|
||||
image,
|
||||
imdbId: "",
|
||||
synopsis: title,
|
||||
type: "",
|
||||
linkList: episodes,
|
||||
};
|
||||
}
|
||||
catch (error) {
|
||||
console.error(error);
|
||||
return {
|
||||
title: "",
|
||||
image: "",
|
||||
imdbId: "",
|
||||
synopsis: "",
|
||||
linkList: [],
|
||||
type: "uhd",
|
||||
};
|
||||
}
|
||||
});
|
||||
};
|
||||
exports.getMeta = getMeta;
|
||||
|
||||
Reference in New Issue
Block a user