1.2.0 • Published 5 years ago

skipper-openstack-v2 v1.2.0

Weekly downloads
3
License
APSL-2.0
Repository
github
Last release
5 years ago

adapter for OpenStack Swift

NPM version     Dependencies

Skipper is a piece of middleware for Express that allows you to pipe/stream multipart form uploads for various storage endpoints. This project implements an OpenStack Swift adapter for Skipper.

This adapter is a new version of skipper-openstack that is up-to-date, actually working and more feature complete. It's written in ES6.

Examples

// api/controllers/UploadController.js
const crypto = require('crypto');
const skipperSwift = require('skipper-openstack-v2');

const algorithm = 'aes-256-ctr';

module.exports = {
  download: (req, res) => {
    const password = 'my-encryption-password';

    skipperSwift.read({
      container: 'my-container',
      credentials: {
        username: 'my-user@example.com',
        password: 'MySecretPasswordHere1337',
        authUrl: 'https://auth.my.openstack.url.com:5000',
        tenantId: '<tenant id (md5 hash)>',
        region: 'regionOne',
      },
      fileEncryption: {
        enabled: true,
        algorithm: 'aes-256-ctr',
        password: 'super-secret-pw',
      },
      getFilename: (newFile) => newFile.fd,
    }, req.params.filename, res);
  },
};

Configuration options

-

TODO

  • Write tests