Improve WebDav support to include file size and modified time

This commit is contained in:
Bruno Bernardino
2024-04-08 16:01:59 +01:00
parent c1443191ce
commit 5229e196b4
5 changed files with 69 additions and 30 deletions

View File

@@ -143,7 +143,7 @@ export async function createFile(
name: string, name: string,
contents: string | ArrayBuffer, contents: string | ArrayBuffer,
): Promise<boolean> { ): Promise<boolean> {
const rootPath = `${getFilesRootPath()}/${userId}${path}`; const rootPath = join(getFilesRootPath(), userId, path);
try { try {
if (typeof contents === 'string') { if (typeof contents === 'string') {
@@ -162,28 +162,34 @@ export async function createFile(
export async function getFile( export async function getFile(
userId: string, userId: string,
path: string, path: string,
name: string, name?: string,
): Promise<{ success: boolean; contents?: Uint8Array; contentType?: string }> { ): Promise<{ success: boolean; contents?: Uint8Array; contentType?: string; byteSize?: number }> {
const rootPath = `${getFilesRootPath()}/${userId}${path}`; const rootPath = join(getFilesRootPath(), userId, path);
try { try {
const contents = await Deno.readFile(join(rootPath, name)); const stat = await Deno.stat(join(rootPath, name || ''));
const extension = name.split('.').slice(-1).join('').toLowerCase(); if (stat) {
const contents = await Deno.readFile(join(rootPath, name || ''));
const contentType = lookup(extension) || 'application/octet-stream'; const extension = (name || path).split('.').slice(-1).join('').toLowerCase();
return { const contentType = lookup(extension) || 'application/octet-stream';
success: true,
contents, return {
contentType, success: true,
}; contents,
contentType,
byteSize: stat.size,
};
}
} catch (error) { } catch (error) {
console.error(error); console.error(error);
return {
success: false,
};
} }
return {
success: false,
};
} }
export async function searchFilesAndDirectories( export async function searchFilesAndDirectories(
@@ -213,7 +219,7 @@ async function searchDirectoryNames(
userId: string, userId: string,
searchTerm: string, searchTerm: string,
): Promise<{ success: boolean; directories: Directory[] }> { ): Promise<{ success: boolean; directories: Directory[] }> {
const rootPath = `${getFilesRootPath()}/${userId}/`; const rootPath = join(getFilesRootPath(), userId);
const directories: Directory[] = []; const directories: Directory[] = [];
@@ -284,7 +290,7 @@ async function searchFileNames(
userId: string, userId: string,
searchTerm: string, searchTerm: string,
): Promise<{ success: boolean; files: DirectoryFile[] }> { ): Promise<{ success: boolean; files: DirectoryFile[] }> {
const rootPath = `${getFilesRootPath()}/${userId}/`; const rootPath = join(getFilesRootPath(), userId);
const files: DirectoryFile[] = []; const files: DirectoryFile[] = [];
@@ -355,7 +361,7 @@ async function searchFileContents(
userId: string, userId: string,
searchTerm: string, searchTerm: string,
): Promise<{ success: boolean; files: DirectoryFile[] }> { ): Promise<{ success: boolean; files: DirectoryFile[] }> {
const rootPath = `${getFilesRootPath()}/${userId}/`; const rootPath = join(getFilesRootPath(), userId);
const files: DirectoryFile[] = []; const files: DirectoryFile[] = [];

View File

@@ -24,7 +24,7 @@ export function addDavPrefixToKeys(object: Record<string, any>, prefix = 'D:'):
export function getPropertyNames(xml: Record<string, any>): string[] { export function getPropertyNames(xml: Record<string, any>): string[] {
const propFindElement = xml['D:propfind'] || xml.propfind; const propFindElement = xml['D:propfind'] || xml.propfind;
if (!propFindElement) { if (!propFindElement) {
return []; return ['allprop'];
} }
const propElement = propFindElement['D:prop'] || propFindElement.prop; const propElement = propFindElement['D:prop'] || propFindElement.prop;
@@ -126,11 +126,11 @@ export async function buildPropFindResponse(
for (const propKey of properties) { for (const propKey of properties) {
switch (propKey) { switch (propKey) {
case 'displayname': case 'displayname':
prop.displayname = isDirectory ? filePath : filePath.split('/').pop(); prop.displayname = isDirectory ? filePath.split('/').filter(Boolean).pop() : filePath.split('/').pop();
break; break;
case 'getcontentlength': case 'getcontentlength':
if (!isDirectory) { if (!isDirectory) {
prop.getcontentlength = (stat.size ?? 0)?.toString(); prop.getcontentlength = stat.size?.toString() || '0';
} }
break; break;
case 'getcontenttype': case 'getcontenttype':
@@ -150,8 +150,24 @@ export async function buildPropFindResponse(
case 'getetag': case 'getetag':
prop.etag = stat.mtime?.toUTCString(); prop.etag = stat.mtime?.toUTCString();
break; break;
case 'getctag':
prop.ctag = stat.mtime?.toUTCString();
break;
case 'allprop':
prop.displayname = isDirectory ? filePath.split('/').filter(Boolean).pop() : filePath.split('/').pop();
if (!isDirectory) {
prop.getcontentlength = stat.size?.toString() || '0';
prop.getcontenttype = lookup(filePath);
}
prop.resourcetype = isDirectory ? { collection: { '@xmlns:D': 'DAV:' } } : {};
prop.getlastmodified = stat.mtime?.toUTCString() || '';
prop.creationdate = stat.birthtime?.toUTCString() || '';
prop.etag = stat.mtime?.toUTCString();
prop.ctag = stat.mtime?.toUTCString();
break;
} }
if (typeof prop[propKey] === 'undefined') {
if (typeof prop[propKey] === 'undefined' && propKey !== 'allprop') {
if (propKey.startsWith('s:')) { if (propKey.startsWith('s:')) {
notFound[propKey.slice(2)] = { '@xmlns:s': 'SAR:' }; notFound[propKey.slice(2)] = { '@xmlns:s': 'SAR:' };
} else { } else {

View File

@@ -66,6 +66,13 @@ export const handler = [
const response = await context.next(); const response = await context.next();
console.info(`${new Date().toISOString()} - [${response.status}] ${request.method} ${request.url}`); console.info(`${new Date().toISOString()} - [${response.status}] ${request.method} ${request.url}`);
// NOTE: Uncomment when debugging WebDav stuff
// if (request.url.includes('/dav')) {
// console.info(`Request`, request.headers);
// console.info((await request.clone().text()) || '<No Body>');
// console.info(`Response`, response.headers);
// console.info(`Status`, response.status);
// }
return response; return response;
}, },

View File

@@ -10,6 +10,7 @@ import {
getProperDestinationPath, getProperDestinationPath,
getPropertyNames, getPropertyNames,
} from '/lib/utils/webdav.ts'; } from '/lib/utils/webdav.ts';
import { getFile } from '/lib/data/files.ts';
interface Data {} interface Data {}
@@ -49,15 +50,20 @@ export const handler: Handler<Data, FreshContextState> = async (request, context
if (request.method === 'GET') { if (request.method === 'GET') {
try { try {
const stat = await Deno.stat(join(rootPath, filePath)); const fileResult = await getFile(context.state.user.id, filePath);
if (stat) { if (!fileResult.success) {
const contents = await Deno.readFile(join(rootPath, filePath)); return new Response('Not Found', { status: 404 });
return new Response(contents, { status: 200 });
} }
return new Response('Not Found', { status: 404 }); return new Response(fileResult.contents!, {
status: 200,
headers: {
'cache-control': 'no-cache, no-store, must-revalidate',
'content-type': fileResult.contentType!,
'content-length': fileResult.byteSize!.toString(),
},
});
} catch (error) { } catch (error) {
console.error(error); console.error(error);
} }
@@ -80,7 +86,7 @@ export const handler: Handler<Data, FreshContextState> = async (request, context
if (request.method === 'PUT') { if (request.method === 'PUT') {
const contentLengthString = request.headers.get('content-length'); const contentLengthString = request.headers.get('content-length');
const contentLength = contentLengthString ? parseInt(contentLengthString, 10) : null; const contentLength = contentLengthString ? parseInt(contentLengthString, 10) : null;
const body = contentLength === 0 ? new Blob([new Uint8Array([0])]).stream() : request.body; const body = contentLength === 0 ? new Blob([new Uint8Array([0])]).stream() : request.clone().body;
try { try {
const newFile = await Deno.open(join(rootPath, filePath), { const newFile = await Deno.open(join(rootPath, filePath), {

View File

@@ -39,7 +39,11 @@ export const handler: Handlers<Data, FreshContextState> = {
return new Response(fileResult.contents!, { return new Response(fileResult.contents!, {
status: 200, status: 200,
headers: { 'cache-control': 'no-cache, no-store, must-revalidate', 'content-type': fileResult.contentType! }, headers: {
'cache-control': 'no-cache, no-store, must-revalidate',
'content-type': fileResult.contentType!,
'content-length': fileResult.byteSize!.toString(),
},
}); });
}, },
}; };