Giter VIP home page Giter VIP logo

ious's Introduction

ious NPM version Build Status Dependency Status

use express middleware on socket.io namespaces

Installation

$ npm install --save ious

Usage

// setup
var app = require('express')();
var server = require('http').createServer(app);
var io = require('socket.io')(server);
var ious = require('ious')(io);

// some friendly connect/express middlewares
var cookieParser = require('cookie-parser');
var passport = require('passport');
var JwtStrategy = require('passport-jwt').Strategy;

passport.use(new JwtStrategy({
  secretOrKey: 'YourSecretIsSafeWithMe',
  jwtFromRequest: function(request) {
    var token = null;
    if (request && request.cookies) {
      token = request.cookies.jwt;
    }
    return token;
  }
}, function (credentials, done) {
  // something like this
  require('./user').findOne({ id: credentials.userId }, function(error, user) {
    if(error) {
      return done(error);
    }
    if(user) {
      return done(null, user);
    }
    done(null, false);
  });
}));

// now we're cooking with fire
ious(cookieParser());
ious(passport.intialize());

// carry on...

io.on('connection', function (socket) {
  // only allow admin roles on this handler
  socket.on('do something as an admin', function (callback) {
    passport.authenticate('jwt', function (error, user, info) {
      if (error) {
        return callback(error);
      }
      if (info instanceof Error) {
        return callback(info);
      }
      if (!user || user.role !== 'admin') {
        return callback('User Not Authenticated');
      }
      // user is authenticated and authorized
      return require('./admin').doSomething(callback);
    })(socket.request, socket.request.res, callback);
  });
});

License

ISC © Buster Collings

ious's People

Contributors

busterc avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.