2022-03-29 01:59:57 +00:00
|
|
|
import { NextMiddleware } from "next-api-middleware";
|
|
|
|
|
2022-03-30 12:17:55 +00:00
|
|
|
export const httpMethod = (allowedHttpMethod: "GET" | "POST" | "PATCH" | "DELETE"): NextMiddleware => {
|
2022-03-29 01:59:57 +00:00
|
|
|
return async function (req, res, next) {
|
|
|
|
if (req.method === allowedHttpMethod || req.method == "OPTIONS") {
|
|
|
|
await next();
|
|
|
|
} else {
|
2022-03-30 12:17:55 +00:00
|
|
|
res.status(405).json({ message: `Only ${allowedHttpMethod} Method allowed` });
|
2022-03-29 01:59:57 +00:00
|
|
|
res.end();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-03-30 12:17:55 +00:00
|
|
|
export const HTTP_POST = httpMethod("POST");
|
|
|
|
export const HTTP_GET = httpMethod("GET");
|
|
|
|
export const HTTP_PATCH = httpMethod("PATCH");
|
|
|
|
export const HTTP_DELETE = httpMethod("DELETE");
|