mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
try to fix parsing
This commit is contained in:
parent
879bd6ba3f
commit
38faa451c3
2 changed files with 47 additions and 37 deletions
|
@ -74,6 +74,7 @@ export const ReleasePlayerCustom = (props: {
|
||||||
};
|
};
|
||||||
|
|
||||||
const _fetchKodikManifest = async (url: string) => {
|
const _fetchKodikManifest = async (url: string) => {
|
||||||
|
url = url.replace("https://", "")
|
||||||
const response = await fetch(
|
const response = await fetch(
|
||||||
`/api/proxy/${encodeURIComponent(url)}?html=true`
|
`/api/proxy/${encodeURIComponent(url)}?html=true`
|
||||||
);
|
);
|
||||||
|
@ -92,14 +93,14 @@ export const ReleasePlayerCustom = (props: {
|
||||||
.replace("';", "");
|
.replace("';", "");
|
||||||
const urlParams = JSON.parse(urlParamsStr);
|
const urlParams = JSON.parse(urlParamsStr);
|
||||||
|
|
||||||
const domain = url.replace("https://", "").split("/")[0];
|
const domain = url.split("/")[0];
|
||||||
const urlStr = url.replace(`https://${domain}/`, "");
|
const urlStr = url.replace(`${domain}/`, "");
|
||||||
const type = urlStr.split("/")[0];
|
const type = urlStr.split("/")[0];
|
||||||
const id = urlStr.split("/")[1];
|
const id = urlStr.split("/")[1];
|
||||||
const hash = urlStr.split("/")[2];
|
const hash = urlStr.split("/")[2];
|
||||||
|
|
||||||
const responseMan = await fetch(
|
const responseMan = await fetch(
|
||||||
`/api/proxy/${encodeURIComponent(`https://${domain}/ftor`)}?isNotAnixart=true`,
|
`/api/proxy/${encodeURIComponent(`${domain}/ftor`)}?isNotAnixart=true`,
|
||||||
{
|
{
|
||||||
method: "POST",
|
method: "POST",
|
||||||
headers: {
|
headers: {
|
||||||
|
@ -148,6 +149,7 @@ export const ReleasePlayerCustom = (props: {
|
||||||
};
|
};
|
||||||
|
|
||||||
const _fetchSibnetManifest = async (url: string) => {
|
const _fetchSibnetManifest = async (url: string) => {
|
||||||
|
url = url.replace("https://", "")
|
||||||
const response = await fetch(
|
const response = await fetch(
|
||||||
`/api/proxy/${encodeURIComponent(url)}?isSibnet=true`
|
`/api/proxy/${encodeURIComponent(url)}?isSibnet=true`
|
||||||
);
|
);
|
||||||
|
|
|
@ -33,25 +33,29 @@ export default async function middleware(
|
||||||
let data = null;
|
let data = null;
|
||||||
path = decodeURIComponent(path);
|
path = decodeURIComponent(path);
|
||||||
|
|
||||||
if (
|
console.log(path);
|
||||||
(isHTML || isNotAnixart || isSibnet) &&
|
|
||||||
!(
|
// if (
|
||||||
path.startsWith("https://kodik.info") ||
|
// (isHTML || isNotAnixart || isSibnet) &&
|
||||||
path.startsWith("https://aniqit.com") ||
|
// !(
|
||||||
path.startsWith("https://video.sibnet.ru") ||
|
// path.startsWith("https://kodik.info") ||
|
||||||
path.includes("sibnet.ru")
|
// 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: {
|
// console.log("URL NOT ALLOWED");
|
||||||
"Content-Type": "application/json",
|
|
||||||
},
|
// return new Response(JSON.stringify({ message: "URL not allowed" }), {
|
||||||
});
|
// status: 403,
|
||||||
}
|
// headers: {
|
||||||
|
// "Content-Type": "application/json",
|
||||||
|
// },
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
|
||||||
if (isSibnet) {
|
if (isSibnet) {
|
||||||
const page = await fetch(path, {
|
const page = await fetch(`https://${path}`, {
|
||||||
headers: {
|
headers: {
|
||||||
"User-Agent":
|
"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",
|
"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]}`, {
|
const response = await fetch(`https://video.sibnet.ru${video[0]}`, {
|
||||||
redirect: "manual",
|
redirect: "manual",
|
||||||
headers: {
|
headers: {
|
||||||
referer: path,
|
referer: `https://${path}`,
|
||||||
"User-Agent":
|
"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",
|
"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) {
|
if (isHTML) {
|
||||||
const response = await fetch(path);
|
const response = await fetch(`https://${path}`);
|
||||||
data = await response.text();
|
data = await response.text();
|
||||||
return new Response(data, {
|
return new Response(data, {
|
||||||
status: 200,
|
status: 200,
|
||||||
|
@ -110,7 +114,7 @@ export default async function middleware(
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
} else if (isNotAnixart) {
|
} else if (isNotAnixart) {
|
||||||
data = await fetchDataViaGet(path);
|
data = await fetchDataViaGet(`https://${path}`);
|
||||||
} else {
|
} else {
|
||||||
data = await fetchDataViaGet(`${API_URL}/${path}`, isApiV2);
|
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;
|
let path = url.pathname.match(/\/api\/proxy\/(.*)/)?.[1] + url.search;
|
||||||
path = decodeURIComponent(path);
|
path = decodeURIComponent(path);
|
||||||
|
|
||||||
|
console.log(path);
|
||||||
|
|
||||||
if (isNotAnixart) {
|
if (isNotAnixart) {
|
||||||
if (
|
// if (
|
||||||
!(
|
// !(
|
||||||
path.startsWith("https://kodik.info") ||
|
// path.startsWith("https://kodik.info") ||
|
||||||
path.startsWith("https://aniqit.com")
|
// path.startsWith("https://aniqit.com")
|
||||||
)
|
// )
|
||||||
) {
|
// ) {
|
||||||
return new Response(JSON.stringify({ message: "URL not allowed" }), {
|
// console.log("URL NOT ALLOWED");
|
||||||
status: 403,
|
|
||||||
headers: {
|
// return new Response(JSON.stringify({ message: "URL not allowed" }), {
|
||||||
"Content-Type": "application/json",
|
// status: 403,
|
||||||
},
|
// headers: {
|
||||||
});
|
// "Content-Type": "application/json",
|
||||||
}
|
// },
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
|
||||||
const formData = new FormData();
|
const formData = new FormData();
|
||||||
for (const [key, value] of Object.entries(await request.json())) {
|
for (const [key, value] of Object.entries(await request.json())) {
|
||||||
formData.append(key as any, value as any);
|
formData.append(key as any, value as any);
|
||||||
}
|
}
|
||||||
|
|
||||||
const response = await fetch(path, {
|
const response = await fetch(`https://${path}`, {
|
||||||
method: "POST",
|
method: "POST",
|
||||||
body: formData,
|
body: formData,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue