2021-03-26 14:12:22 +01:00
|
|
|
import {HttpResponse} from "uWebSockets.js";
|
2020-11-13 18:00:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
export class BaseController {
|
|
|
|
protected addCorsHeaders(res: HttpResponse): void {
|
|
|
|
res.writeHeader('access-control-allow-headers', 'Origin, X-Requested-With, Content-Type, Accept');
|
|
|
|
res.writeHeader('access-control-allow-methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE');
|
|
|
|
res.writeHeader('access-control-allow-origin', '*');
|
|
|
|
}
|
2021-01-17 20:42:33 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Turns any exception into a HTTP response (and logs the error)
|
|
|
|
*/
|
2021-01-18 15:43:27 +01:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
2021-01-17 20:42:33 +01:00
|
|
|
protected errorToResponse(e: any, res: HttpResponse): void {
|
2021-03-26 14:12:22 +01:00
|
|
|
console.error(e.message || "An error happened.", e?.config.url);
|
|
|
|
console.error(e.stack || 'no stack defined.');
|
2021-01-17 20:42:33 +01:00
|
|
|
if (e.response) {
|
|
|
|
res.writeStatus(e.response.status+" "+e.response.statusText);
|
|
|
|
this.addCorsHeaders(res);
|
|
|
|
res.end("An error occurred: "+e.response.status+" "+e.response.statusText);
|
|
|
|
} else {
|
|
|
|
res.writeStatus("500 Internal Server Error")
|
|
|
|
this.addCorsHeaders(res);
|
|
|
|
res.end("An error occurred");
|
|
|
|
}
|
|
|
|
}
|
2020-11-13 18:00:22 +01:00
|
|
|
}
|