Coder Social home page Coder Social logo

Comments (3)

Delapouite avatar Delapouite commented on June 17, 2024 2

Thanks a lot both of you for your help. As pointed out, the documentation explained it but I wrongly though that this was the default behavior and I did not thought that Passport error could be available in the info var. (I have no suggestion for better naming).

So in the end, I did add this in my codebase for now:

import { Injectable, Logger, UnauthorizedException } from "@nestjs/common";
import { AuthGuard } from "@nestjs/passport";

@Injectable()
export class JwtAuthGuard extends AuthGuard("jwt") {
    private readonly logger = new Logger("JwtAuthGuard");

    handleRequest(err: Error, user: any, info?: Error) {
        if (err || !user) {
            // despite the name, info can be a Passport error, like
            // JsonWebTokenError: jwt audience invalid. expected: foo
            if (info) {
                this.logger.warn(info);
            }

            throw err || new UnauthorizedException();
        }
        return user;
    }
}

Thanks again.

from passport.

jmcdo29 avatar jmcdo29 commented on June 17, 2024

We could possibly add info to the UnauthorizedException if it's not null. Do something like throw err || new UnauthorizedException(info ?? undefined). I've definitely seen a lot of issues with JWT integration based on things like audience or expired tokens that just throws a 401 without more info. This would be helpful for sure

from passport.

kamilmysliwiec avatar kamilmysliwiec commented on June 17, 2024

We could possibly add info to the UnauthorizedException if it's not null. Do something like throw err || new UnauthorizedException(info ?? undefined). I've definitely seen a lot of issues with JWT integration based on things like audience or expired tokens that just throws a 401 without more info. This would be helpful for sure

This would be a breaking change.

Could adding an optional logger.error() statement, outputting the content of the info variable (if not empty) be possible?

We could add logger.verbose() call here I guess.

provided to the handleRequest method, but unfortunately it is not used and there does not seem an easy way to retrieve it.

There's a very straightforward way to override the default behavior, check out this section https://docs.nestjs.com/security/authentication#extending-guards

from passport.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.