13 lines
473 B
TypeScript
13 lines
473 B
TypeScript
|
import { APP_KEY, APP_KEY_HEADER_NAME } from "#config/app.js"
|
||
|
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): Promise<void> {
|
||
|
if (context.request.header(APP_KEY_HEADER_NAME) === APP_KEY) {
|
||
|
return next()
|
||
|
}
|
||
|
return context.response.unauthorized({ message: "Unauthorized access" })
|
||
|
}
|
||
|
}
|