Git Product home page Git Product logo

typegraphql-authchecker's Introduction

TypeGraphQL AuthChecker

Write rules for Authorised() decorator of TypeGraphQL resolvers.

Introduction

I wanted to make rules for using Authorised decorator in TypeGraphQL resolvers just like I used to make them for graphql-shield.

TypeGraphQL allows creating custom authCheckers to use authorization rules. However, it seems limited by the fact that it checks against roles and not rules that can be defined by the developer. Additionally, there seems to be no way to define conditionals such as AND or OR in the authChecker unless implemented by the user from scratch.

This library allows you to define rules for Authorised() decorator in TypeGraphQL resolvers.

Usage

Import the authChecker from typegraphql-authchecker. Then use the authChecker as TypeGraphQL's custom authChecker.

import authChecker from "typegraphql-authchecker";

// Use the authChecker as the custom authChecker for TypeGraphQL
buildSchema({
  resolvers,
  emitSchemaFile: true,
  authChecker: authChecker,
}).then((schema) => {});

Now, you can start creating rules and start using them!

For example, to check if user is authenticated:

import { Rule } from "typegraphql-authchecker";
import { Context } from "../context";

export const isAuthenticated: Rule<Context> = ({ context }) => {
  if (context.user) {
    return true;
  }
  return false;
};

Context in the Rule<Context> is the type of your GraphQL server context.

Use this rule for a resolver:

@Resolver()
export class UserResolver {
  @Authorized(isAuthenticated)
  @Query((returns) => User)
  async me(@Ctx() ctx: Context) {
    return ctx.user;
  }
}

Using AND, OR and NOT conditionals

Rules can be combined using AND, OR and NOT conditionals to perform complex authorization checks.

For example, by default, this will check if user is authenticated and if user is an admin.

@Authorized([isAuthenticated, isAdmin])

Another example, to check if user is admin or if user is a member, use OR conditional:

@Authorized([{OR: [isAdmin, isMember]}])

The conditionals can be nested, for example:

@Authorized([{ OR: [isAdmin, { AND: [isAuthenticated, isOwner]} ] }])

Want to help?

Thank you! Please open issues and pull requests on GitHub!

typegraphql-authchecker's People

Contributors

utkarsh867 avatar

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.