mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
feat: add Sibnet parsing
This commit is contained in:
parent
03af84fd2d
commit
0dad587611
2 changed files with 108 additions and 7 deletions
|
@ -33,6 +33,7 @@ export const ReleasePlayerCustom = (props: {
|
||||||
const [playerProps, SetPlayerProps] = useState({
|
const [playerProps, SetPlayerProps] = useState({
|
||||||
src: null,
|
src: null,
|
||||||
poster: null,
|
poster: null,
|
||||||
|
type: null,
|
||||||
useCustom: false,
|
useCustom: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -146,6 +147,17 @@ export const ReleasePlayerCustom = (props: {
|
||||||
return { manifest, poster };
|
return { manifest, poster };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const _fetchSibnetManifest = async (url: string) => {
|
||||||
|
const response = await fetch(
|
||||||
|
`/api/proxy/${encodeURIComponent(url)}?isSibnet=true`
|
||||||
|
);
|
||||||
|
const data = await response.json();
|
||||||
|
|
||||||
|
let manifest = data.url;
|
||||||
|
let poster = data.poster;
|
||||||
|
return { manifest, poster };
|
||||||
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const __getInfo = async () => {
|
const __getInfo = async () => {
|
||||||
const vo = await _fetchVoiceover(props.id);
|
const vo = await _fetchVoiceover(props.id);
|
||||||
|
@ -232,6 +244,7 @@ export const ReleasePlayerCustom = (props: {
|
||||||
src: manifest,
|
src: manifest,
|
||||||
poster: poster,
|
poster: poster,
|
||||||
useCustom: true,
|
useCustom: true,
|
||||||
|
type: "hls",
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -243,6 +256,19 @@ export const ReleasePlayerCustom = (props: {
|
||||||
src: manifest,
|
src: manifest,
|
||||||
poster: poster,
|
poster: poster,
|
||||||
useCustom: true,
|
useCustom: true,
|
||||||
|
type: "hls",
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (source.selected.name == "Sibnet") {
|
||||||
|
const { manifest, poster } = await _fetchSibnetManifest(
|
||||||
|
episode.selected.url
|
||||||
|
);
|
||||||
|
SetPlayerProps({
|
||||||
|
src: manifest,
|
||||||
|
poster: poster,
|
||||||
|
useCustom: true,
|
||||||
|
type: "mp4",
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -250,6 +276,7 @@ export const ReleasePlayerCustom = (props: {
|
||||||
src: episode.selected.url,
|
src: episode.selected.url,
|
||||||
poster: null,
|
poster: null,
|
||||||
useCustom: false,
|
useCustom: false,
|
||||||
|
type: null,
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
if (episode.selected) {
|
if (episode.selected) {
|
||||||
|
@ -285,11 +312,18 @@ export const ReleasePlayerCustom = (props: {
|
||||||
</div>
|
</div>
|
||||||
{playerProps.useCustom ?
|
{playerProps.useCustom ?
|
||||||
<MediaThemeSutro className="w-full aspect-video">
|
<MediaThemeSutro className="w-full aspect-video">
|
||||||
<HlsVideo
|
{playerProps.type == "hls" ?
|
||||||
slot="media"
|
<HlsVideo
|
||||||
src={playerProps.src}
|
slot="media"
|
||||||
poster={playerProps.poster}
|
src={playerProps.src}
|
||||||
/>
|
poster={playerProps.poster}
|
||||||
|
/>
|
||||||
|
: <video
|
||||||
|
slot="media"
|
||||||
|
src={playerProps.src}
|
||||||
|
poster={playerProps.poster}
|
||||||
|
></video>
|
||||||
|
}
|
||||||
</MediaThemeSutro>
|
</MediaThemeSutro>
|
||||||
: <iframe src={playerProps.src} className="w-full aspect-video" />}
|
: <iframe src={playerProps.src} className="w-full aspect-video" />}
|
||||||
<EpisodeSelector
|
<EpisodeSelector
|
||||||
|
|
|
@ -25,11 +25,23 @@ export default async function middleware(
|
||||||
if (isNotAnixart) {
|
if (isNotAnixart) {
|
||||||
url.searchParams.delete("isNotAnixart");
|
url.searchParams.delete("isNotAnixart");
|
||||||
}
|
}
|
||||||
|
const isSibnet = url.searchParams.get("isSibnet") == "true" || false;
|
||||||
|
if (isSibnet) {
|
||||||
|
url.searchParams.delete("isSibnet");
|
||||||
|
}
|
||||||
let path = url.pathname.match(/\/api\/proxy\/(.*)/)?.[1] + url.search;
|
let path = url.pathname.match(/\/api\/proxy\/(.*)/)?.[1] + url.search;
|
||||||
let data = null;
|
let data = null;
|
||||||
path = decodeURIComponent(path);
|
path = decodeURIComponent(path);
|
||||||
|
|
||||||
if ((isHTML || isNotAnixart) && !(path.startsWith("https://kodik.info") || path.startsWith("https://aniqit.com"))) {
|
if (
|
||||||
|
(isHTML || isNotAnixart || isSibnet) &&
|
||||||
|
!(
|
||||||
|
path.startsWith("https://kodik.info") ||
|
||||||
|
path.startsWith("https://aniqit.com") ||
|
||||||
|
path.startsWith("https://video.sibnet.ru") ||
|
||||||
|
path.includes("sibnet.ru")
|
||||||
|
)
|
||||||
|
) {
|
||||||
return new Response(JSON.stringify({ message: "URL not allowed" }), {
|
return new Response(JSON.stringify({ message: "URL not allowed" }), {
|
||||||
status: 403,
|
status: 403,
|
||||||
headers: {
|
headers: {
|
||||||
|
@ -38,6 +50,56 @@ export default async function middleware(
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isSibnet) {
|
||||||
|
const page = await fetch(path, {
|
||||||
|
headers: {
|
||||||
|
"User-Agent":
|
||||||
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const pageData = await page.text();
|
||||||
|
|
||||||
|
const videoRe = /\/v\/.*?\.mp4/;
|
||||||
|
const video = videoRe.exec(pageData);
|
||||||
|
|
||||||
|
if (video.length == 0) {
|
||||||
|
return new Response(JSON.stringify({ message: "Error Fetching Data" }), {
|
||||||
|
status: 500,
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const posterRe = /\/upload\/cover\/.*?\.jpg/;
|
||||||
|
const posterUrl = posterRe.exec(pageData);
|
||||||
|
|
||||||
|
if (posterUrl.length == 0) {
|
||||||
|
return new Response(JSON.stringify({ message: "Error Fetching Data" }), {
|
||||||
|
status: 500,
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const response = await fetch(`https://video.sibnet.ru${video[0]}`, {
|
||||||
|
redirect: "manual",
|
||||||
|
headers: {
|
||||||
|
referer: path,
|
||||||
|
"User-Agent":
|
||||||
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
return new Response(JSON.stringify({ url: `https:${response.headers.get("Location")}`, poster: `https://st.sibnet.ru${posterUrl[0]}` }), {
|
||||||
|
status: 200,
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
if (isHTML) {
|
if (isHTML) {
|
||||||
const response = await fetch(path);
|
const response = await fetch(path);
|
||||||
data = await response.text();
|
data = await response.text();
|
||||||
|
@ -85,7 +147,12 @@ export default async function middleware(
|
||||||
path = decodeURIComponent(path);
|
path = decodeURIComponent(path);
|
||||||
|
|
||||||
if (isNotAnixart) {
|
if (isNotAnixart) {
|
||||||
if (!(path.startsWith("https://kodik.info") || path.startsWith("https://aniqit.com"))) {
|
if (
|
||||||
|
!(
|
||||||
|
path.startsWith("https://kodik.info") ||
|
||||||
|
path.startsWith("https://aniqit.com")
|
||||||
|
)
|
||||||
|
) {
|
||||||
return new Response(JSON.stringify({ message: "URL not allowed" }), {
|
return new Response(JSON.stringify({ message: "URL not allowed" }), {
|
||||||
status: 403,
|
status: 403,
|
||||||
headers: {
|
headers: {
|
||||||
|
|
Loading…
Add table
Reference in a new issue