1.0.4 • Published 2 years ago

hapi-signed-url v1.0.4

Weekly downloads
-
License
UNLICENSE
Repository
github
Last release
2 years ago

Signed URL Plugin

This plugin allows generating a signed url for a file link/id. Useful when using with AWS S3 sign urls for private objects.

Status

Package CI

Installation

npm i hapi-signed-url

Route Options

KeyTypeDescription
lensesLens<object, string>[]Array of lenses, this should be R.lensProp<string, string>(key)
pathToSourceLens<object, object | object[]>Path to the nested object, this should be R.lensPath(['somepath', '...'])

Basic Usage

  • Import the plugin
import { signedUrl } from 'hapi-signed-url';
  • Register the plugin
await server.register([
  {
    plugin: signedUrl,
    options: {
      getSignedUrl: (key: string): string => 'my_custom_sign', // takes in function to sign the id
    },
  },
]);
  • Dummy response
{
  "file": "random_id",
  "name": "this is a file"
}
  • Create a lens using ramda for the above object. Ramda lenses
const lens = R.lensProp<string, any>('file') // here file is the key from object
  • Use it in the route
server.route({
    method: 'GET',
    path: '/sample',
    options: {
        handler: handler.performAction,
        plugins: {
            // define the plugin
            signedUrl: {
                // add the array of lenses for multiple keys
                lenses: [lens],
            },
        },
        ...
    },
});
  • Final response
{
  "file": "random_id_SIGNATURE", // this value is updated
  "name": "this is a file"
}

For nested objects

// example response which needs to be updated
{
    name: "some name",
    more: "some more data",
    ...,
    documents: [
        {
            asset: "thisisafile", // want to update this
            other: "other details",
            ...
        }
    ]
}

// notice we dont change the basic lens
const lens = R.lensProp<string, any>('asset');

// but we add extra options, pathToSource
// you can add multiple layer of paths
const path = R.lensPath(['documents']);

// in route it looks like
server.route({
    method: 'GET',
    path: '/sample',
    options: {
        handler: handler.performAction,
        plugins: {
            signedUrl: {
                lenses: [lens],
                pathToSource: path, // add the path to source
            },
        },
        ...
    },
});

For multiple nested keys

Example with multiple options

const responseObject = {
  name: 'atul',
  profile: '1212121', // to sign
  projects: [
    {
      id: '1',
      files: '1234', // to sign
    },
    {
      id: '2',
      files: '123232', // to sign
    },
  ],
};

// lenses for the entire object
const profileLens = R.lensProp<string, string>('profile');
const filesLens = R.lensProp<string, string>('files');

// path for nested object
const projectPath = R.lensPath(['projects']);

// server route config
server.route({
    method: 'GET',
    path: '/sample',
    options: {
        handler: handler.performAction,
        plugins: {
            signedUrl: [
              // for profile sign
              {
                lenses: [profileLens],
              },

              // for files signing
              {
                lenses: [fileLens],
                pathToSource: projectPath,
              }
            ]
        },
        ...
    },
});
1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago