Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

clout-passport

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clout-passport

Clout module to implement passport

  • 0.0.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

clout-passport

Install

In the directory of your clout-js application, do the following;

  1. Install this package
npm install clout-passport
  1. Add this module to package.json or clout.json
{
    ...
    "modules": ["clout-passport"]
    ...
}

Configure

Create a new file passport.default.js or passport.<YOUR_ENV>.js in /conf directory with the following JavaScript.

module.exports = {
    passport: {
        directory: '/strategies',
        serializeUser: '<PATH_TO_FN>', // e.g. models.User.serializeUser
        deserializeUser: '<PATH_TO_FN>', // e.g. models.User.deserializeUser
        /** Configure strategies */
        facebook: { // this can be seen in passport documentation
            clientID: '<CLIENT_ID>',
            clientSecret: '<CLIENT_SECRET>',
            callbackURL: '<CALLBACK_URL>',
            profileFields: ['id', 'displayName']
        }
        /** load stratergies from this module (default: false) */
        useDefault: true, // load all strategies
        useDefault: ['local'], // selective loading
        /** configure provided stratergy */
        _facebook: {

        }
    }
};

Usage

Create a new directory in your project called /strategies. This directory will contain all your passport stratergies.

Example strategy

local.js

/**
 * Local Stratergy Example
 */
const LocalStrategy = require('passport-local');
module.exports = function (conf) {
    var self = this; // clout context
    return new LocalStrategy(conf, function (username, password, cb) {
        self.models.User
            .authenticate(username, password)
            .then(function (user) {
                cb(null, user);
            }).catch(cb);
    });
};

Default strategies

These strategies can be enabled in the configuration.

Local
Configure
{
    ...
    passport: {
        ...
        _local: {
            authenticateFn: 'models.User.authenticate' // Path to authenticate function
        }
        ...
    }
    ...
}
Usage

Authenticate function should be defined in the models. An example of an authentication function is the following;

var User = module.exports = {},
    clout = require('clout.js');
...
// User Sequalize Model
...
User.authenticate = function authenticate(username, password) {
    var deferred = clout.Q.defer(),
    User.query({
        username: username,
        password: password
    }).then(function (user) {
        if (!user) {
            return deferred.reject('Username or Password is incorrect');
        }
        deferred.resolve(user);
    }, deferred.reject);
    return deferred.promise;
}
Coming Soon
  • Facebook
  • Twitter
  • Google

Keywords

FAQs

Package last updated on 16 Feb 2017

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc