I create a guard that are like these
import { Injectable, CanActivate, ExecutionContext } from '@nestjs/mon';
import { AuthService } from './auth.service';
@Injectable()
export class CompanyGuard implements CanActivate {
constructor(private readonly authService: AuthService) {}
async canActivate(context: ExecutionContext): Promise<boolean> {
const request = context.switchToHttp().getRequest();
const token = request.headers['token'];
if (token) {
const pany = await this.authService.validateToken(token);
return pany ? true : false;
} else {
return false;
}
}
}
I want to keep the value of pany on the request object, so I can use it later on my controller. How to do that in Nest.js? I tried to look it on the docs, but I'm confused. Should I use the session or there are more simple way to do that?
I create a guard that are like these
import { Injectable, CanActivate, ExecutionContext } from '@nestjs/mon';
import { AuthService } from './auth.service';
@Injectable()
export class CompanyGuard implements CanActivate {
constructor(private readonly authService: AuthService) {}
async canActivate(context: ExecutionContext): Promise<boolean> {
const request = context.switchToHttp().getRequest();
const token = request.headers['token'];
if (token) {
const pany = await this.authService.validateToken(token);
return pany ? true : false;
} else {
return false;
}
}
}
I want to keep the value of pany on the request object, so I can use it later on my controller. How to do that in Nest.js? I tried to look it on the docs, but I'm confused. Should I use the session or there are more simple way to do that?
Share Improve this question edited May 11, 2021 at 3:07 SuperStormer 5,4275 gold badges28 silver badges39 bronze badges asked May 11, 2021 at 3:01 mandaputtramandaputtra 1,0705 gold badges23 silver badges41 bronze badges1 Answer
Reset to default 9You can just add the pany
to a custom field on the request. request.pany = pany
and then in the controller you can use @Req()
to get the request object and .pany
to get the pany value. Or you could create a custom decorator to get the pany for you.