swaf/src/components/ServeStaticDirectoryCompone...

31 lines
970 B
TypeScript
Raw Normal View History

import express, {Router} from "express";
2020-04-22 15:52:17 +02:00
import {PathParams} from "express-serve-static-core";
import * as path from "path";
import ApplicationComponent from "../ApplicationComponent.js";
import {logger} from "../Logger.js";
2020-04-22 15:52:17 +02:00
export default class ServeStaticDirectoryComponent extends ApplicationComponent {
2020-04-22 15:52:17 +02:00
private readonly root: string;
private readonly path?: PathParams;
public constructor(root: string, routePath?: PathParams) {
2020-04-22 15:52:17 +02:00
super();
this.root = root;
2020-04-22 15:52:17 +02:00
this.path = routePath;
}
public async initRoutes(router: Router): Promise<void> {
const resolvedRoot = path.resolve(this.root);
if (this.path) {
router.use(this.path, express.static(resolvedRoot, {maxAge: 1000 * 3600 * 72}));
2020-04-22 15:52:17 +02:00
} else {
router.use(express.static(resolvedRoot, {maxAge: 1000 * 3600 * 72}));
2020-04-22 15:52:17 +02:00
}
logger.info('Serving static files in', resolvedRoot, ' on ', this.path || '/');
2020-04-22 15:52:17 +02:00
}
}