Socket
Socket
Sign inDemoInstall

hapi-couchdb-auth-bearer-plugin

Package Overview
Dependencies
3
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    hapi-couchdb-auth-bearer-plugin

Hapi CouchDB Auth Bearer Plugin


Version published
Weekly downloads
3
increased by50%
Maintainers
1
Install size
361 kB
Created
Weekly downloads
 

Changelog

Source

v0.0.5 - 08/04/2015

Changed

  • Added default value for couchDbUrl

Readme

Source

hapi-couchdb-auth-bearer-plugin

Hapi CouchDB Auth Bearer Plugin

Installation

npm i -S hapi-couchdb-auth-bearer-plugin

Usage

Options

  • sessions bool - enable _session proxy exposes GET, POST & DELETE methods on _session endpoint (default: false)

Hapi Server methods

  • getBearerToken(request, callback) - extract Bearer token from request
  • mapProxyPath(request, callback) - map the bearer token to a couch AuthSession Cookie for given request
  • addCorsAndBearerToken(err, res, request, reply) - map couch AuthSession cookie to bearer token and provide cords support

Examples

Session proxy
server.register({
  register: require('hapi-couchdb-auth-bearer-plugin'),
  options: {
    couchUrl: COUCHDB_URL,
    sessions: true,
  }
}, function(err) {
  console.log(err);
});
Get Bearer token + pass to nano
...
handler: function(request, reply) {
    server.methods.getBearerToken(request, function(err, token) {
      if (err) {
        return reply(err);
      }

      var nanoConfig = {
        url: COUCHDB_URL
      };
      if (token) {
        nanoConfig.cookie = 'AuthSession ' + token;
      }

      var db = nano(nanoConfig);

      ...

    });
})
Proxy pass-through
handler: {
  proxy: {
    passThrough: true,
    mapUri: hapi.methods.mapProxyPath,
    onResponse: hapi.methods.addCorsAndBearerToken
  }
}

License

Copyright 2015 Matt Richards matt.richards@ehealthnigeria.org

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

FAQs

Last updated on 08 Apr 2015

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc