GithubHelp home page GithubHelp logo

Comments (3)

lkavicky avatar lkavicky commented on April 26, 2024 4

Passport does automatically set the WWW-Authenticate header when all strategies failed if you provide no callback to the authenticate method (implementation here)
nestjs/passport always provides the callback:

passport.authenticate(type, options, (err, user, info, status) => {

So that functionality is not accessible when using nestjs/passport.
You get the challenges passport uses to generate the WWW-Authenticate header in callback's 3rd parameter (info), but nestjs/passport is not doing anything with that param:
handleRequest(err, user, info, context, status): TUser {
if (err || !user) {
throw err || new UnauthorizedException();
}
return user;
}

from passport.

Jtalk avatar Jtalk commented on April 26, 2024 2

I think this should be reopened. I've just spent an hour, and then some, debugging nestjs-passport over this specific issue.

As @lkavicky has correctly pointed out, passport does set WWW-Authenticate, but Nest.js uses the callback flow, which is passport-speak for "Hold my beer, I'll deal with it myself". Failing to then deal with it is a 100% bug.

The behaviour of Nest.js Passport is also not RFC-compliant now: WWW-Authenticate is mandatory for 401 Unauthorized (i.e. the MUST thing vs SHOULD thing).

Right now we have to maintain our own AuthGuard with patches around it (calling setHeader in handleRequest, because we're HTTP-only). I'm happy to contribute it upstream if you guys want it.

@jmcdo29 @kamilmysliwiec

from passport.

jmcdo29 avatar jmcdo29 commented on April 26, 2024 1

Does passport normally do this with express? @nestjs/passport is only a wrapper around passport with funcitonality to make it work in a nest-like fashion. If this doesn't happen automatically by passport, then @nestjs/passport won't do it either

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.