.
This commit is contained in:
+39
@@ -0,0 +1,39 @@
|
||||
import { inspect } from 'util';
|
||||
export const middlewareResponse = {
|
||||
noContent (res) {
|
||||
res.statusCode = 204;
|
||||
res.end('No Content');
|
||||
},
|
||||
badRequest (res, reason) {
|
||||
res.statusCode = 400;
|
||||
if (reason !== undefined) {
|
||||
res.setHeader('Content-Type', 'text/plain');
|
||||
res.end(reason);
|
||||
} else {
|
||||
res.end();
|
||||
}
|
||||
},
|
||||
notFound (res) {
|
||||
res.statusCode = 404;
|
||||
res.end('Not Found');
|
||||
},
|
||||
methodNotAllowed (res) {
|
||||
res.statusCode = 405;
|
||||
res.end('Method Not Allowed');
|
||||
},
|
||||
internalServerError (res, error) {
|
||||
res.statusCode = 500;
|
||||
res.setHeader('Content-Type', 'text/plain');
|
||||
res.end(error !== undefined ? inspect(error, {
|
||||
colors: false
|
||||
}) : 'Internal Server Error');
|
||||
},
|
||||
json (res, data) {
|
||||
res.setHeader('Content-Type', 'application/json').end(Buffer.from(JSON.stringify(data)));
|
||||
},
|
||||
jsonString (res, data) {
|
||||
res.setHeader('Content-Type', 'application/json').end(Buffer.from(data));
|
||||
}
|
||||
};
|
||||
|
||||
//# sourceMappingURL=middleware-response.js.map
|
||||
Reference in New Issue
Block a user