New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

loopback-component-flatstorage

Package Overview
Dependencies
Maintainers
0
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

loopback-component-flatstorage

loopback component for attaching to various cloud storage providers with ACL functionality

latest
Source
npmnpm
Version
1.2.0
Version published
Maintainers
0
Created
Source

loopback-component-flatstorage

loopback component for attaching to various cloud storage providers with ACL and relations functionality

LoopBack flatstorage component provides Node.js and REST APIs to manage binary file contents using pluggable storage providers, such as local file systems, Amazon S3, or Rackspace cloud files. It uses pkgcloud to support cloud-based storage services.

The module is only tested on amazon but potentially can work on all cloud providers - use at own risk! or better yet - contribute!

This module is based entirely on loopback-component-storage

The differences are:

  • container (bucket) is defined at the data source level
  • the model base should be 'PersistedModel' which enables relations and ACL
  • the id of the model is the root 'folder'

API

DescriptionREST URI
List all filesGET /api/mystorage
List all files in a specified folderGET /api/mystorage/myfolder
Get information for specified file within a specified folderGET /api/mystorage/myfolder/files/myfile
Delete a specified file within a specified folderDELETE /api/mystorage/myfolder/files/myfile
Download a specified file within a specified folderGET /api/mystorage/myfolder/download/myfile
Upload one or more files into a specified container. The request body must use multipart/form-data which is the file input type HTML usesPOST /api/mystorage/myfolder/files/upload

Configuration

To create a model for images storage per user:

datasource.json:

{
  "ImagesS3": {
    "name": "ImagesS3",
    "provider": "amazon",
    "connector": "loopback-component-flatstorage",
    "container": "user-images",
    "region": "eu-central-1",
    "key": "<key>",
    "keyId": "<key-id>"
  }
}

images.json:

{
  "name": "Images",
  "plural": "Images",
  "base": "PersistedModel",
  "idInjection": false,
  "properties": {
    "userId": {
      "type": "string",
      "required": true,
      "id": true,
      "generated": false
    }
  },
  "validations": [],
  "relations": {
    "user": {
      "type": "belongsTo",
      "model": "User",
      "foreignKey": "userId",
      "required": true
    }
  },
  "acls": [
    {
      "accessType": "*",
      "principalType": "ROLE",
      "principalId": "$everyone",
      "permission": "DENY"
    },
    {
      "accessType": "*",
      "principalType": "ROLE",
      "principalId": "$owner",
      "permission": "ALLOW"
    }
  ],
  "methods": {}
}

user.json:

...
  "relations": {
    "images": {
      "type": "hasOne",
      "model": "Images",
      "foreignKey": "userId"
    }
  }
...

Nested Queries

The model can be used in nested queries.

To continue our example, we can enable the following nested rest api for a user to give him control over his files:

  • /api/user/<user>/images/files/<my file>
  • /api/user/<user>/images/download/<my file>
  • /api/user/<user>/images/files/upload

To configure:

  app.models.User && app.models.Images && app.models.User.nestRemoting('images', {
    filterMethod: function (method, relation) {
      var matches = method.name.indexOf('removeFile') > -1 || method.name.indexOf('file') > -1 || method.name.indexOf('download') > -1 || method.name.indexOf('upload') > -1;
      if (matches) {
        return '__' + method.name + '__' + relation.name;
      }
    }
  });

Keywords

loopback

FAQs

Package last updated on 28 Jan 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts