mirror of
https://github.com/sussy-code/smov.git
synced 2025-01-01 16:37:39 +01:00
add flixhq media type filter
This commit is contained in:
parent
4d5f03337d
commit
2f10de415b
2 changed files with 11 additions and 12 deletions
|
@ -10,12 +10,13 @@ import { MWMediaType } from "../metadata/types";
|
||||||
|
|
||||||
const flixHqBase = "https://api.consumet.org/meta/tmdb";
|
const flixHqBase = "https://api.consumet.org/meta/tmdb";
|
||||||
|
|
||||||
|
type FlixHQMediaType = "Movie" | "TV Series";
|
||||||
interface FLIXMediaBase {
|
interface FLIXMediaBase {
|
||||||
id: number;
|
id: number;
|
||||||
title: string;
|
title: string;
|
||||||
url: string;
|
url: string;
|
||||||
image: string;
|
image: string;
|
||||||
type: "Movie" | "TV Series";
|
type: FlixHQMediaType;
|
||||||
releaseDate: string;
|
releaseDate: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -38,9 +39,9 @@ const qualityMap: Record<string, MWStreamQuality> = {
|
||||||
"1080": MWStreamQuality.Q1080P,
|
"1080": MWStreamQuality.Q1080P,
|
||||||
};
|
};
|
||||||
|
|
||||||
enum FlixHQMediaType {
|
function flixTypeToMWType(type: FlixHQMediaType) {
|
||||||
MOVIE = "movie",
|
if (type === "Movie") return MWMediaType.MOVIE;
|
||||||
SERIES = "series",
|
return MWMediaType.SERIES;
|
||||||
}
|
}
|
||||||
|
|
||||||
registerProvider({
|
registerProvider({
|
||||||
|
@ -48,7 +49,6 @@ registerProvider({
|
||||||
displayName: "FlixHQ",
|
displayName: "FlixHQ",
|
||||||
rank: 100,
|
rank: 100,
|
||||||
type: [MWMediaType.MOVIE, MWMediaType.SERIES],
|
type: [MWMediaType.MOVIE, MWMediaType.SERIES],
|
||||||
|
|
||||||
async scrape({ media, episode, progress }) {
|
async scrape({ media, episode, progress }) {
|
||||||
if (!this.type.includes(media.meta.type)) {
|
if (!this.type.includes(media.meta.type)) {
|
||||||
throw new Error("Unsupported type");
|
throw new Error("Unsupported type");
|
||||||
|
@ -65,9 +65,11 @@ registerProvider({
|
||||||
if (v.type !== "Movie" && v.type !== "TV Series") return false;
|
if (v.type !== "Movie" && v.type !== "TV Series") return false;
|
||||||
return (
|
return (
|
||||||
compareTitle(v.title, media.meta.title) &&
|
compareTitle(v.title, media.meta.title) &&
|
||||||
|
flixTypeToMWType(v.type) === media.meta.type &&
|
||||||
v.releaseDate === media.meta.year
|
v.releaseDate === media.meta.year
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!foundItem) throw new Error("No watchable item found");
|
if (!foundItem) throw new Error("No watchable item found");
|
||||||
|
|
||||||
// get media info
|
// get media info
|
||||||
|
@ -75,15 +77,12 @@ registerProvider({
|
||||||
const mediaInfo = await proxiedFetch<any>(`/info/${foundItem.id}`, {
|
const mediaInfo = await proxiedFetch<any>(`/info/${foundItem.id}`, {
|
||||||
baseURL: flixHqBase,
|
baseURL: flixHqBase,
|
||||||
params: {
|
params: {
|
||||||
type:
|
type: flixTypeToMWType(foundItem.type),
|
||||||
media.meta.type === MWMediaType.MOVIE
|
|
||||||
? FlixHQMediaType.MOVIE
|
|
||||||
: FlixHQMediaType.SERIES,
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
if (!mediaInfo.id) throw new Error("No watchable item found");
|
if (!mediaInfo.id) throw new Error("No watchable item found");
|
||||||
// get stream info from media
|
// get stream info from media
|
||||||
progress(75);
|
progress(50);
|
||||||
|
|
||||||
let episodeId: string | undefined;
|
let episodeId: string | undefined;
|
||||||
if (media.meta.type === MWMediaType.MOVIE) {
|
if (media.meta.type === MWMediaType.MOVIE) {
|
||||||
|
@ -98,7 +97,7 @@ registerProvider({
|
||||||
episodeId = season.episodes.find((o: any) => o.episode === episodeNo).id;
|
episodeId = season.episodes.find((o: any) => o.episode === episodeNo).id;
|
||||||
}
|
}
|
||||||
if (!episodeId) throw new Error("No watchable item found");
|
if (!episodeId) throw new Error("No watchable item found");
|
||||||
|
progress(75);
|
||||||
const watchInfo = await proxiedFetch<any>(`/watch/${episodeId}`, {
|
const watchInfo = await proxiedFetch<any>(`/watch/${episodeId}`, {
|
||||||
baseURL: flixHqBase,
|
baseURL: flixHqBase,
|
||||||
params: {
|
params: {
|
||||||
|
|
|
@ -6,7 +6,7 @@ function getInitialValue(params: { type: string; query: string }) {
|
||||||
const type =
|
const type =
|
||||||
Object.values(MWMediaType).find((v) => params.type === v) ||
|
Object.values(MWMediaType).find((v) => params.type === v) ||
|
||||||
MWMediaType.MOVIE;
|
MWMediaType.MOVIE;
|
||||||
const searchQuery = params.query || "";
|
const searchQuery = decodeURIComponent(params.query || "");
|
||||||
return { type, searchQuery };
|
return { type, searchQuery };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue