2024-09-10 09:50:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2024 Hexastack. All rights reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
|
|
|
|
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
|
|
|
|
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
|
|
|
|
*/
|
|
|
|
|
2024-11-06 09:57:17 +00:00
|
|
|
import { Controller, Get, Req, Session } from '@nestjs/common';
|
2024-09-10 09:50:11 +00:00
|
|
|
import { CsrfCheck, CsrfGenAuth } from '@tekuconcept/nestjs-csrf';
|
|
|
|
import { CsrfGenerator } from '@tekuconcept/nestjs-csrf/dist/csrf.generator';
|
2024-11-06 09:57:17 +00:00
|
|
|
import { Request } from 'express';
|
2024-09-10 09:50:11 +00:00
|
|
|
import { Session as ExpressSession } from 'express-session';
|
|
|
|
|
|
|
|
import { AppService } from './app.service';
|
|
|
|
import { LoggerService } from './logger/logger.service';
|
|
|
|
import { Roles } from './utils/decorators/roles.decorator';
|
|
|
|
|
|
|
|
@Controller()
|
|
|
|
export class AppController {
|
|
|
|
constructor(
|
|
|
|
private readonly appService: AppService,
|
|
|
|
private readonly logger: LoggerService,
|
|
|
|
) {}
|
|
|
|
|
|
|
|
@Roles('public')
|
|
|
|
@Get()
|
|
|
|
getHello(): string {
|
|
|
|
return this.appService.getHello();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Roles('public')
|
|
|
|
@Get('csrftoken')
|
|
|
|
@CsrfCheck(false)
|
|
|
|
@CsrfGenAuth(true)
|
|
|
|
csrf(@Session() session: ExpressSession) {
|
|
|
|
return {
|
|
|
|
_csrf: session?.csrfSecret
|
|
|
|
? new CsrfGenerator().create(session.csrfSecret)
|
|
|
|
: '',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
@Roles('public')
|
|
|
|
@Get('__getcookie')
|
|
|
|
cookies(@Req() req: Request): string {
|
|
|
|
req.session.anonymous = true;
|
2024-11-06 09:57:17 +00:00
|
|
|
return '';
|
2024-09-10 09:50:11 +00:00
|
|
|
}
|
|
|
|
}
|