@getlarge/keto-client-wrapper
TypeScript icon, indicating that this package has built-in type declarations

0.2.6 • Public • Published

keto-client-wrapper

npm

This library is a wrapper around the Ory Keto client - @ory/client. It provides :

  • OryRelationshipsModule: a module to interact with the Ory Keto Relationships API
  • OryPermissionsModule: a module to interact with the Ory Keto Permissions API
  • OryAuthorizationGuard: a guard to protect your routes based on the Ory Keto permissions

Install

npm install @getlarge/keto-client-wrapper

Usage

Import the module in your app:

import {
  OryRelationshipsModule,
  OryPermissionsModule,
} from '@getlarge/keto-client-wrapper';
import { Module } from '@nestjs/common';

@Module({
   imports: [
    OryRelationshipsModule.forRoot({
      basePath: 'http://localhost:4467',
      accessToken: 'my-access-token',
    }),
    OryPermissionsModule.forRootAsync({
      useFactory: () => ({
        baseUrl: 'http://localhost:4466',
      }),
    }),
  ],
})

Inject the service in your provider:

import { OryRelationshipsService } from '@getlarge/keto-client-wrapper';
import { Injectable } from '@nestjs/common';

@Injectable()
export class YourService {
  constructor(
    private readonly oryRelationshipsService: OryRelationshipsService
  ) {}
}

Use the Guard to protect your routes:

import {
  OryAuthorizationGuard,
  OryPermissionChecks,
} from '@getlarge/keto-client-wrapper';
import { RelationTupleBuilder } from '@getlarge/keto-relations-parser';
import { Controller, Get, Logger, UseGuards } from '@nestjs/common';

@Controller()
export class YourController {
  @OryPermissionChecks((ctx) => {
    const req = ctx.switchToHttp().getRequest();
    const currentUserId = req.headers['x-current-user-id'] as string;
    const resourceId = req.params.id;
    return new RelationTupleBuilder()
      .subject('User', currentUserId)
      .isIn('owners')
      .of('Toy', resourceId)
      .toString();
  })
  @UseGuards(
    OryAuthorizationGuard({
      postCheck(relationTuple, isPermitted) {
        Logger.log('relationTuple', relationTuple);
        Logger.log('isPermitted', isPermitted);
      },
    })
  )
  @Get()
  getArticles() {
    return 'Articles';
  }
}

Development

Building

Run nx build keto-client-wrapper to build the library.

Running unit tests

Run nx test keto-client-wrapper to execute the unit tests via Jest.

Readme

Keywords

none

Package Sidebar

Install

npm i @getlarge/keto-client-wrapper

Weekly Downloads

74

Version

0.2.6

License

MIT

Unpacked Size

68.9 kB

Total Files

54

Last publish

Collaborators

  • getlarge