This implements generating image thumbnails on the fly via ImageMagick WASM, and tells the browser to cache them for a week, making the loading of photo directories much faster when it has many large images. Closes #12
81 lines
2.3 KiB
TypeScript
81 lines
2.3 KiB
TypeScript
import { Handlers } from 'fresh/server.ts';
|
|
import { ImageMagick, initialize, MagickGeometry } from 'imagemagick';
|
|
|
|
import { FreshContextState } from '/lib/types.ts';
|
|
import { getFile } from '/lib/data/files.ts';
|
|
|
|
interface Data {}
|
|
|
|
const MIN_WIDTH = 25;
|
|
const MIN_HEIGHT = 25;
|
|
const MAX_WIDTH = 2048;
|
|
const MAX_HEIGHT = 2048;
|
|
|
|
export const handler: Handlers<Data, FreshContextState> = {
|
|
async GET(request, context) {
|
|
if (!context.state.user) {
|
|
return new Response('Redirect', { status: 303, headers: { 'Location': `/login` } });
|
|
}
|
|
|
|
const { fileName } = context.params;
|
|
|
|
if (!fileName) {
|
|
return new Response('Not Found', { status: 404 });
|
|
}
|
|
|
|
const searchParams = new URL(request.url).searchParams;
|
|
|
|
let currentPath = searchParams.get('path') || '/';
|
|
|
|
// Send invalid paths back to root
|
|
if (!currentPath.startsWith('/') || currentPath.includes('../')) {
|
|
currentPath = '/';
|
|
}
|
|
|
|
// Always append a trailing slash
|
|
if (!currentPath.endsWith('/')) {
|
|
currentPath = `${currentPath}/`;
|
|
}
|
|
|
|
const fileResult = await getFile(context.state.user.id, currentPath, decodeURIComponent(fileName));
|
|
|
|
if (!fileResult.success) {
|
|
return new Response('Not Found', { status: 404 });
|
|
}
|
|
|
|
const width = parseInt(searchParams.get('width') || '500', 10);
|
|
const height = parseInt(searchParams.get('height') || '500', 10);
|
|
|
|
if (
|
|
fileResult.contentType?.split('/')[0] !== 'image' || isNaN(width) || isNaN(height) ||
|
|
width > MAX_WIDTH || height > MAX_HEIGHT || width < MIN_WIDTH || height < MIN_HEIGHT
|
|
) {
|
|
return new Response('Bad Request', { status: 400 });
|
|
}
|
|
|
|
await initialize();
|
|
|
|
const sizingData = new MagickGeometry(
|
|
width,
|
|
height,
|
|
);
|
|
sizingData.ignoreAspectRatio = false;
|
|
|
|
const resizedImageContents = await new Promise<Uint8Array>((resolve) => {
|
|
ImageMagick.read(fileResult.contents!, (image) => {
|
|
image.resize(sizingData);
|
|
image.write((data) => resolve(data));
|
|
});
|
|
});
|
|
|
|
return new Response(resizedImageContents, {
|
|
status: 200,
|
|
headers: {
|
|
'cache-control': `max-age=${604_800}`, // Tell browsers to cache for 1 week (60 * 60 * 24 * 7 = 604_800)
|
|
'content-type': fileResult.contentType!,
|
|
'content-length': resizedImageContents.byteLength.toString(),
|
|
},
|
|
});
|
|
},
|
|
};
|