mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +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({
|
||||
src: null,
|
||||
poster: null,
|
||||
type: null,
|
||||
useCustom: false,
|
||||
});
|
||||
|
||||
|
@ -146,6 +147,17 @@ export const ReleasePlayerCustom = (props: {
|
|||
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(() => {
|
||||
const __getInfo = async () => {
|
||||
const vo = await _fetchVoiceover(props.id);
|
||||
|
@ -232,6 +244,7 @@ export const ReleasePlayerCustom = (props: {
|
|||
src: manifest,
|
||||
poster: poster,
|
||||
useCustom: true,
|
||||
type: "hls",
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
@ -243,6 +256,19 @@ export const ReleasePlayerCustom = (props: {
|
|||
src: manifest,
|
||||
poster: poster,
|
||||
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;
|
||||
}
|
||||
|
@ -250,6 +276,7 @@ export const ReleasePlayerCustom = (props: {
|
|||
src: episode.selected.url,
|
||||
poster: null,
|
||||
useCustom: false,
|
||||
type: null,
|
||||
});
|
||||
};
|
||||
if (episode.selected) {
|
||||
|
@ -285,11 +312,18 @@ export const ReleasePlayerCustom = (props: {
|
|||
</div>
|
||||
{playerProps.useCustom ?
|
||||
<MediaThemeSutro className="w-full aspect-video">
|
||||
<HlsVideo
|
||||
slot="media"
|
||||
src={playerProps.src}
|
||||
poster={playerProps.poster}
|
||||
/>
|
||||
{playerProps.type == "hls" ?
|
||||
<HlsVideo
|
||||
slot="media"
|
||||
src={playerProps.src}
|
||||
poster={playerProps.poster}
|
||||
/>
|
||||
: <video
|
||||
slot="media"
|
||||
src={playerProps.src}
|
||||
poster={playerProps.poster}
|
||||
></video>
|
||||
}
|
||||
</MediaThemeSutro>
|
||||
: <iframe src={playerProps.src} className="w-full aspect-video" />}
|
||||
<EpisodeSelector
|
||||
|
|
|
@ -25,11 +25,23 @@ export default async function middleware(
|
|||
if (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 data = null;
|
||||
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" }), {
|
||||
status: 403,
|
||||
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) {
|
||||
const response = await fetch(path);
|
||||
data = await response.text();
|
||||
|
@ -85,7 +147,12 @@ export default async function middleware(
|
|||
path = decodeURIComponent(path);
|
||||
|
||||
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" }), {
|
||||
status: 403,
|
||||
headers: {
|
||||
|
|
Loading…
Add table
Reference in a new issue