Refactor DAV handling and remove unused code

This commit is contained in:
abersheeran 2024-01-06 10:10:37 +08:00
parent 4788813c39
commit f81cee4647

View File

@ -49,9 +49,6 @@ async function* listAll(bucket: R2Bucket, prefix: string, isRecursive: boolean =
} while (r2_objects.truncated);
}
const DAV_CLASS = '1';
const SUPPORT_METHODS = ['OPTIONS', 'PROPFIND', 'MKCOL', 'GET', 'HEAD', 'PUT', 'COPY', 'MOVE'];
type DavProperties = {
creationdate: string | undefined;
displayname: string | undefined;
@ -95,16 +92,6 @@ function make_resource_path(request: Request): string {
return path;
}
async function handle_options(request: Request, bucket: R2Bucket): Promise<Response> {
return new Response(null, {
status: 204,
headers: {
DAV: DAV_CLASS,
Allow: SUPPORT_METHODS.join(', '),
},
});
}
async function handle_head(request: Request, bucket: R2Bucket): Promise<Response> {
let response = await handle_get(request, bucket);
return new Response(null, {
@ -570,10 +557,19 @@ async function handle_move(request: Request, bucket: R2Bucket): Promise<Response
}
}
const DAV_CLASS = '1';
const SUPPORT_METHODS = ['OPTIONS', 'PROPFIND', 'MKCOL', 'GET', 'HEAD', 'PUT', 'COPY', 'MOVE'];
async function dispatch_handler(request: Request, bucket: R2Bucket): Promise<Response> {
switch (request.method) {
case 'OPTIONS': {
return await handle_options(request, bucket);
return new Response(null, {
status: 204,
headers: {
Allow: SUPPORT_METHODS.join(', '),
DAV: DAV_CLASS,
},
});
}
case 'HEAD': {
return await handle_head(request, bucket);