13 lines
458 B
TypeScript
13 lines
458 B
TypeScript
import { APP_KEY, APP_KEY_HEADER_NAME } from "#config/app.ts"
|
|
import type { HttpContext } from "@adonisjs/core/http"
|
|
import type { NextFn } from "@adonisjs/core/types/http"
|
|
|
|
export default class AppKeySecurityMiddleware {
|
|
public async handle(context: HttpContext, next: NextFn) {
|
|
if (context.request.header(APP_KEY_HEADER_NAME) === APP_KEY) {
|
|
return next()
|
|
}
|
|
return context.response.unauthorized({ message: "Unauthorized access" })
|
|
}
|
|
}
|