fix: add webdav request filter

This commit is contained in:
Fred 2024-03-14 00:33:26 +08:00
parent 9a8497299d
commit 038fa3b301
No known key found for this signature in database
GPG Key ID: 4DABDA85EF70EC71
3 changed files with 111 additions and 6 deletions

View File

@ -0,0 +1,103 @@
import { NextRequest, NextResponse } from "next/server";
import { STORAGE_KEY } from "../../../constant";
async function handle(
req: NextRequest,
{ params }: { params: { path: string[] } },
) {
if (req.method === "OPTIONS") {
return NextResponse.json({ body: "OK" }, { status: 200 });
}
const folder = STORAGE_KEY;
const fileName = `${folder}/backup.json`;
const requestUrl = new URL(req.url);
const endpoint = requestUrl.searchParams.get("endpoint");
const [protocol, ...subpath] = params.path;
const endpointPath = subpath.join("/");
// only allow MKCOL, GET, PUT
if (req.method !== "MKCOL" && req.method !== "GET" && req.method !== "PUT") {
return NextResponse.json(
{
error: true,
msg: "you are not allowed to request " + params.path.join("/"),
},
{
status: 403,
},
);
}
// for MKCOL request, only allow request ${folder}
if (req.method == "MKCOL" && !endpointPath.endsWith(folder)) {
return NextResponse.json(
{
error: true,
msg: "you are not allowed to request " + params.path.join("/"),
},
{
status: 403,
},
);
}
// for GET request, only allow request ending with fileName
if (req.method == "GET" && !endpointPath.endsWith(fileName)) {
return NextResponse.json(
{
error: true,
msg: "you are not allowed to request " + params.path.join("/"),
},
{
status: 403,
},
);
}
// for PUT request, only allow request ending with fileName
if (req.method == "PUT" && !endpointPath.endsWith(fileName)) {
return NextResponse.json(
{
error: true,
msg: "you are not allowed to request " + params.path.join("/"),
},
{
status: 403,
},
);
}
const targetUrl = `${protocol}://${endpoint + endpointPath}`;
const method = req.headers.get("method") ?? undefined;
const shouldNotHaveBody = ["get", "head"].includes(
method?.toLowerCase() ?? "",
);
const fetchOptions: RequestInit = {
headers: {
authorization: req.headers.get("authorization") ?? "",
},
body: shouldNotHaveBody ? null : req.body,
method,
// @ts-ignore
duplex: "half",
};
const fetchResult = await fetch(targetUrl, fetchOptions);
console.log("[Any Proxy]", targetUrl, {
status: fetchResult.status,
statusText: fetchResult.statusText,
});
return fetchResult;
}
export const POST = handle;
export const GET = handle;
export const OPTIONS = handle;
export const runtime = "edge";

View File

@ -94,7 +94,7 @@ export function createUpstashClient(store: SyncStore) {
path = path.slice(1); path = path.slice(1);
} }
let url = new URL("/api/" + path); let url = new URL("/api/upstash/" + path);
// add query params // add query params
url.searchParams.append("endpoint", config.endpoint); url.searchParams.append("endpoint", config.endpoint);

View File

@ -60,16 +60,18 @@ export function createWebDavClient(store: SyncStore) {
}; };
}, },
path(path: string) { path(path: string) {
let url = config.endpoint; if (!path.endsWith("/")) {
path += "/";
if (!url.endsWith("/")) {
url += "/";
} }
if (path.startsWith("/")) { if (path.startsWith("/")) {
path = path.slice(1); path = path.slice(1);
} }
let url = new URL("/api/webdav/" + path);
// add query params
url.searchParams.append("endpoint", config.endpoint);
return url + path; return url + path;
}, },
}; };