import {HTTPKernelModule} from '../HTTPKernelModule' import {Injectable, Inject} from '../../../di' import {uuid4} from '../../../util' import {HTTPKernel} from '../HTTPKernel' import {Request} from '../../lifecycle/Request' import {Logging} from '../../../service/Logging' /** * HTTP kernel middleware that tries to look up the session ID from the request. * If none exists, generates a new one and sets the cookie. */ @Injectable() export class SetSessionCookieHTTPModule extends HTTPKernelModule { public readonly executeWithBlockingWriteback = true @Inject() protected readonly logging!: Logging public static register(kernel: HTTPKernel): void { kernel.register(this).first() } public async apply(request: Request): Promise { if ( !request.cookies.has('extollo.session') ) { const session = `${uuid4()}-${uuid4()}` this.logging.verbose(`Starting session: ${session}`) request.cookies.set('extollo.session', session) } return request } }