From 38faa451c377cd31e15ef3f8cea4e84cb64d0f65 Mon Sep 17 00:00:00 2001 From: Radiquum Date: Sun, 16 Mar 2025 02:40:22 +0500 Subject: [PATCH] try to fix parsing --- .../ReleasePlayer/ReleasePlayerCustom.tsx | 8 +- middleware.ts | 76 ++++++++++--------- 2 files changed, 47 insertions(+), 37 deletions(-) diff --git a/app/components/ReleasePlayer/ReleasePlayerCustom.tsx b/app/components/ReleasePlayer/ReleasePlayerCustom.tsx index f5df7a1..14c6f2b 100644 --- a/app/components/ReleasePlayer/ReleasePlayerCustom.tsx +++ b/app/components/ReleasePlayer/ReleasePlayerCustom.tsx @@ -74,6 +74,7 @@ export const ReleasePlayerCustom = (props: { }; const _fetchKodikManifest = async (url: string) => { + url = url.replace("https://", "") const response = await fetch( `/api/proxy/${encodeURIComponent(url)}?html=true` ); @@ -92,14 +93,14 @@ export const ReleasePlayerCustom = (props: { .replace("';", ""); const urlParams = JSON.parse(urlParamsStr); - const domain = url.replace("https://", "").split("/")[0]; - const urlStr = url.replace(`https://${domain}/`, ""); + const domain = url.split("/")[0]; + const urlStr = url.replace(`${domain}/`, ""); const type = urlStr.split("/")[0]; const id = urlStr.split("/")[1]; const hash = urlStr.split("/")[2]; const responseMan = await fetch( - `/api/proxy/${encodeURIComponent(`https://${domain}/ftor`)}?isNotAnixart=true`, + `/api/proxy/${encodeURIComponent(`${domain}/ftor`)}?isNotAnixart=true`, { method: "POST", headers: { @@ -148,6 +149,7 @@ export const ReleasePlayerCustom = (props: { }; const _fetchSibnetManifest = async (url: string) => { + url = url.replace("https://", "") const response = await fetch( `/api/proxy/${encodeURIComponent(url)}?isSibnet=true` ); diff --git a/middleware.ts b/middleware.ts index cbbe3dc..b6139bd 100644 --- a/middleware.ts +++ b/middleware.ts @@ -33,25 +33,29 @@ export default async function middleware( let data = null; path = decodeURIComponent(path); - 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: { - "Content-Type": "application/json", - }, - }); - } + console.log(path); + + // if ( + // (isHTML || isNotAnixart || isSibnet) && + // !( + // path.startsWith("https://kodik.info") || + // path.startsWith("https://aniqit.com") || + // path.startsWith("https://video.sibnet.ru") || + // path.includes("sibnet.ru") + // ) + // ) { + // console.log("URL NOT ALLOWED"); + + // return new Response(JSON.stringify({ message: "URL not allowed" }), { + // status: 403, + // headers: { + // "Content-Type": "application/json", + // }, + // }); + // } if (isSibnet) { - const page = await fetch(path, { + const page = await fetch(`https://${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", @@ -86,7 +90,7 @@ export default async function middleware( const response = await fetch(`https://video.sibnet.ru${video[0]}`, { redirect: "manual", headers: { - referer: path, + referer: `https://${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", }, @@ -101,7 +105,7 @@ export default async function middleware( } if (isHTML) { - const response = await fetch(path); + const response = await fetch(`https://${path}`); data = await response.text(); return new Response(data, { status: 200, @@ -110,7 +114,7 @@ export default async function middleware( }, }); } else if (isNotAnixart) { - data = await fetchDataViaGet(path); + data = await fetchDataViaGet(`https://${path}`); } else { data = await fetchDataViaGet(`${API_URL}/${path}`, isApiV2); } @@ -146,27 +150,31 @@ export default async function middleware( let path = url.pathname.match(/\/api\/proxy\/(.*)/)?.[1] + url.search; path = decodeURIComponent(path); + console.log(path); + if (isNotAnixart) { - if ( - !( - path.startsWith("https://kodik.info") || - path.startsWith("https://aniqit.com") - ) - ) { - return new Response(JSON.stringify({ message: "URL not allowed" }), { - status: 403, - headers: { - "Content-Type": "application/json", - }, - }); - } + // if ( + // !( + // path.startsWith("https://kodik.info") || + // path.startsWith("https://aniqit.com") + // ) + // ) { + // console.log("URL NOT ALLOWED"); + + // return new Response(JSON.stringify({ message: "URL not allowed" }), { + // status: 403, + // headers: { + // "Content-Type": "application/json", + // }, + // }); + // } const formData = new FormData(); for (const [key, value] of Object.entries(await request.json())) { formData.append(key as any, value as any); } - const response = await fetch(path, { + const response = await fetch(`https://${path}`, { method: "POST", body: formData, });