You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/packages/hydrooj/src/handler/notfound.ts

23 lines
572 B
TypeScript

/* eslint-disable no-empty-function */
/* eslint-disable class-methods-use-this */
import { NotFoundError } from '../error';
import {
Route, Handler, param, Types,
} from '../service/server';
5 years ago
class NotFoundHandler extends Handler {
@param('bsod', Types.Boolean)
prepare(domainId: string, bsod: boolean) {
if (bsod) throw new Error(this.request.path);
throw new NotFoundError(this.request.path);
5 years ago
}
all() { }
5 years ago
}
export async function apply() {
Route('notfound', '(/.*)+', NotFoundHandler);
5 years ago
}
global.Hydro.handler.notfound = apply;