Git Product home page Git Product logo

Comments (7)

ricardosaracino avatar ricardosaracino commented on April 28, 2024

I guess i can also say this is due to issue #21
https://github.com/nestjs/passport/issues/21

from passport.

ricardosaracino avatar ricardosaracino commented on April 28, 2024

Another thing i would like to note is that I tried to use an interceptor for common logic but it was not executing (as expected?)

    @Get('login/azure')
    @UseGuards(AuthGuard('azure'))
    @UseInterceptors(PassportLoginInterceptor)
    @ApiOperation({title: 'Handles the azure login'})
    public loginAzure() {
        return {};
    }

from passport.

kamilmysliwiec avatar kamilmysliwiec commented on April 28, 2024

Please, provide a minimal repository which reproduces your issue.

from passport.

boenrobot avatar boenrobot commented on April 28, 2024

Here's an example repo:
https://github.com/boenrobot/nestjs-issues/tree/master/auth-guard-nondry

I have a different use case, but same request...

I want to invert the way auth guards are applied - have all routes protected by default, except those featuring a custom decorator called @Public. I can do that, but adding support for it is done per authentication strategy, which means lots of duplicated code, and one more thing to remember doing if a new auth method is added.

In the example, I've added two local strategies, but you can imagine an app with various other auth methods (Google, Facebook, etc.). The files with duplicated code are public-aware-auth-local-primary.guard.ts and public-aware-auth-local-secondary.guard.ts.

from passport.

kamilmysliwiec avatar kamilmysliwiec commented on April 28, 2024

Would you like to create PR for this issue?

from passport.

kamilmysliwiec avatar kamilmysliwiec commented on April 28, 2024

There is no enough bandwidth to fix this issue.

from passport.

sidraw27 avatar sidraw27 commented on April 28, 2024

I thought you might like this.

controller

type Provider = 'google' | 'facebook';

@Controller()
export class AuthController {
  @Get(':provider')
  @UseGuards(OauthGuard)
  public async googleOauth(@Param() provider: Provider) {
    Logger.log(`${provider} login`);
  }
}

guard

@Injectable()
export class OauthGuard implements CanActivate {
  canActivate(
    context: ExecutionContext,
  ): boolean | Promise<boolean> | Observable<boolean> {
    const { provider } = context.switchToHttp().getRequest().params;

    const Guard = AuthGuard(provider);

    return new Guard('google').canActivate(context);
  }
}

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.