You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
loc-chain-backend/src/app/http/middlewares/api/FirebaseUserOnly.middleware.ts

46 lines
1.4 KiB

import {Config, error, Middleware} from "@extollo/lib"
import {Inject, Injectable} from "@extollo/di"
import {FirebaseUnit} from "../../../units/FirebaseUnit"
import {HTTPStatus} from "@extollo/util"
/**
* FirebaseUserOnly Middleware
* --------------------------------------------
* Authenticates the request based on the user ID token.
*/
@Injectable()
export class FirebaseUserOnly extends Middleware {
@Inject()
protected readonly firebase!: FirebaseUnit
@Inject()
protected readonly config!: Config
/** Get the name of the API token header. */
get headerName(): string {
return String(this.config.get('app.firebase.api_auth_header'))
}
/** Get the API token from the request header. */
getAuthHeader(): string {
const tokens = this.request.getHeader(this.headerName)
if ( Array.isArray(tokens) ) return tokens[0]
return String(tokens)
}
/** Check if the request contains a valid Firebase API token. */
public async apply() {
const token = this.getAuthHeader()
if ( !token ) {
return error(`Missing ${this.headerName} header`, HTTPStatus.UNAUTHORIZED, 'json')
}
try {
await this.firebase.get().auth().verifyIdToken(token)
} catch (e) {
return error('Invalid API token.', HTTPStatus.UNAUTHORIZED, 'json')
}
}
}