mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-18 08:01:43 +00:00
88 lines
2.4 KiB
TypeScript
88 lines
2.4 KiB
TypeScript
import { Info, Link, ProviderContext } from "../types";
|
|
export const getMeta = async function ({
|
|
link: data,
|
|
}: {
|
|
link: string;
|
|
providerContext: ProviderContext;
|
|
}): Promise<Info> {
|
|
try {
|
|
const dataJson = JSON.parse(data);
|
|
const title = dataJson?.kn || dataJson?.mn;
|
|
const image = dataJson?.IH || dataJson?.IV;
|
|
const tags = dataJson?.gn
|
|
.split(",")
|
|
.slice(0, 3)
|
|
.map((tag: string) => tag.trim());
|
|
const type = dataJson?.cg === "webSeries" ? "series" : "movie";
|
|
const linkList: Link[] = [];
|
|
if (dataJson?.cg === "webSeries") {
|
|
["1", "2", "3", "4"]?.forEach((item) => {
|
|
const directLinks: Link["directLinks"] = [];
|
|
if (
|
|
typeof dataJson?.["eServer" + item] === "object" &&
|
|
Object?.keys(dataJson?.["eServer" + item])?.length > 0
|
|
) {
|
|
Object.keys(dataJson?.["eServer" + item]).forEach((key) => {
|
|
directLinks.push({
|
|
title: "Episode " + key,
|
|
link: JSON.stringify({
|
|
url: dataJson?.["eServer" + item][key],
|
|
server: "Server " + item,
|
|
}),
|
|
});
|
|
});
|
|
linkList.push({
|
|
title: dataJson?.pn + " (Server " + item + ")",
|
|
directLinks,
|
|
});
|
|
}
|
|
});
|
|
} else {
|
|
const directLinks: Link["directLinks"] = [];
|
|
["1", "2", "3", "4"]?.forEach((item) => {
|
|
if (dataJson?.["s" + item]) {
|
|
directLinks.push({
|
|
title: "Server " + item + " (HD)",
|
|
link: JSON.stringify({
|
|
url: dataJson?.s1,
|
|
server: "Server " + item,
|
|
}),
|
|
});
|
|
}
|
|
if (dataJson?.["4s" + item]) {
|
|
directLinks.push({
|
|
title: "Server " + item + " (480p)",
|
|
link: JSON.stringify({
|
|
url: dataJson?.["4s" + item],
|
|
server: "Server " + item,
|
|
}),
|
|
});
|
|
}
|
|
});
|
|
linkList.push({
|
|
title: dataJson?.pn,
|
|
directLinks,
|
|
});
|
|
}
|
|
return {
|
|
title,
|
|
image,
|
|
imdbId: "",
|
|
synopsis: "",
|
|
type,
|
|
linkList,
|
|
tags,
|
|
};
|
|
} catch (err) {
|
|
return {
|
|
title: "",
|
|
image: "",
|
|
imdbId: "",
|
|
synopsis: "",
|
|
type: "movie",
|
|
linkList: [],
|
|
tags: [],
|
|
};
|
|
}
|
|
};
|