npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

quoti-auth-nestjs

v1.2.0

Published

Utils to help using Quoti Auth in Nest.js

Downloads

4

Readme

Introdução

Essa biblioteca é um simples wrapper para o Quoti Auth que é compatível com o Nest.js. Ela possui um módulo global que recebe os mesmos parâmetros que o método setup() do Quoti Auth e permite que uma única instância do Quoti Auth esteja disponível para toda a aplicação via Dependency Injection.

Requisitos

Para utilizar esse package é necessário ter os packages @nestjs/platform-express, @nestjs/common, @nestjs/core e quoti-auth instalados no seu projeto (idealmente com a mesma versão que consta no package.json desse projeto), pois eles são peer dependencies. As versões mínimas são as seguintes:

"@nestjs/common": "8.2.6",
"@nestjs/core": "8.2.6",
"@nestjs/platform-express": "8.2.6",
"quoti-auth": "^1.6.1"

Setup

O setup do Quoti Auth deve ser feito no módulo principal da aplicação, dessa forma o decorator @Auth poderá ser utilizado em qualquer lugar da aplicação. Por exemplo:

import { QuotiAuthModule } from 'quoti-auth-nestjs';

@Module({
  imports: [
    ... outros módulos da API ...,

    // O método .register recebe o mesmo objeto de configuração que o método .setup do Quoti Auth
    QuotiAuthModule.register({
      orgSlug: 'Slug da sua organização no Quoti',
      apiKey: 'Sua API key para utilização do Quoti Auth',
      ...
    }),
  ],
  ...
  providers: [...],
})
export class AppModule implements NestModule {
  ...
}

Decorator @Auth

Autenticação

A biblioteca possui um decorator @Auth que cuida da autenticação via Quoti Auth para qualquer rota de um controller. Para requerer autenticação do usuário basta adicionar o decorator em um método de um controller, e.g:

import { Auth } from 'quoti-auth-nestjs';

@Controller({ path: 'foos', version: '1' })
export class FooController {

  @Get()
  @Auth()
  async getFoos(): Promise<Foo> {
    ...
    return [new Foo()]
  }
}

Agora, para que um usuário possa chamar o endpoint GET /foos ele deve fazer uma chamada passando algum dos tokens de autenticação que o Quoti Auth permite na requisição. Caso isso não ocorra, o Nest irá automaticamente responder com status 401, Forbidden.

Autorização

Também é possível realizar chegagens de permissões com o decorator @Auth, ele aceita um array de arrays de string (string[][]) que contém quais permissões o usuário deve ter para poder acessar a rota, por exemplo:

import { Auth } from 'quoti-auth-nestjs';

@Controller({ path: 'foos', version: '1' })
export class FooController {

  @Get()
  @Auth([['list.foo']])
  async getFoos(): Promise<Foo> {
    ...
    return [new Foo()]
  }
}

Agora, para que um usuário acesse a rota GET /foos precisa ter a permissão list.foos. O decorator @Auth e a função .middleware(..) do Quoti Auth, eles recebem os mesmos parâmetros e tem a mesma funcionalidade.