try to fix parsing

This commit is contained in:
Kentai Radiquum 2025-03-16 02:40:22 +05:00
parent 879bd6ba3f
commit 38faa451c3
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
2 changed files with 47 additions and 37 deletions

View file

@ -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`
);

View file

@ -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,
});