92 lines
2.4 KiB
TypeScript
92 lines
2.4 KiB
TypeScript
import { Handler } from 'fresh/server.ts';
|
|
|
|
import { FreshContextState } from '/lib/types.ts';
|
|
import { buildRFC822Date, convertObjectToDavXml, DAV_RESPONSE_HEADER, escapeHtml } from '/lib/utils.ts';
|
|
import { createSessionCookie } from '/lib/auth.ts';
|
|
|
|
interface Data {}
|
|
|
|
interface DavResponse {
|
|
'd:href': string;
|
|
'd:propstat': {
|
|
'd:prop': {
|
|
'd:resourcetype': {
|
|
'd:collection'?: {};
|
|
};
|
|
'd:getlastmodified': string;
|
|
'd:getetag': string;
|
|
'd:getcontentlength'?: number;
|
|
'd:getcontenttype'?: string;
|
|
};
|
|
'd:status': string;
|
|
};
|
|
}
|
|
|
|
interface DavMultiStatusResponse {
|
|
'd:multistatus': {
|
|
'd:response': DavResponse[];
|
|
};
|
|
'd:multistatus_attributes': { 'xmlns:d': string; 'xmlns:s': string; 'xmlns:oc': string; 'xmlns:nc': string };
|
|
}
|
|
|
|
interface ResponseBody extends DavMultiStatusResponse {}
|
|
|
|
export const handler: Handler<Data, FreshContextState> = (request, context) => {
|
|
if (!context.state.user) {
|
|
return new Response('Unauthorized', {
|
|
status: 401,
|
|
headers: { 'www-authenticate': 'Basic realm="bewCloud", charset="UTF-8"' },
|
|
});
|
|
}
|
|
|
|
if (request.method === 'GET') {
|
|
return new Response('This is the WebDAV interface. It can only be accessed by WebDAV clients.');
|
|
}
|
|
|
|
if (request.method !== 'PROPFIND') {
|
|
return new Response('Bad Request', { status: 400 });
|
|
}
|
|
|
|
// TODO: List directories and files in root
|
|
|
|
const responseBody: ResponseBody = {
|
|
'd:multistatus': {
|
|
'd:response': [
|
|
{
|
|
'd:href': '/dav/files/',
|
|
'd:propstat': {
|
|
'd:prop': {
|
|
'd:resourcetype': {
|
|
'd:collection': {},
|
|
},
|
|
'd:getlastmodified': buildRFC822Date('2020-01-01'),
|
|
'd:getetag': escapeHtml(`"fake"`),
|
|
},
|
|
'd:status': 'HTTP/1.1 200 OK',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
'd:multistatus_attributes': {
|
|
'xmlns:d': 'DAV:',
|
|
'xmlns:s': 'http://sabredav.org/ns',
|
|
'xmlns:oc': 'http://owncloud.org/ns',
|
|
'xmlns:nc': 'http://nextcloud.org/ns',
|
|
},
|
|
};
|
|
|
|
const response = new Response(convertObjectToDavXml(responseBody, true), {
|
|
headers: {
|
|
'content-type': 'application/xml; charset=utf-8',
|
|
'dav': DAV_RESPONSE_HEADER,
|
|
},
|
|
status: 207,
|
|
});
|
|
|
|
if (context.state.session) {
|
|
return response;
|
|
}
|
|
|
|
return createSessionCookie(request, context.state.user, response, true);
|
|
};
|