M-Yankov / passport-cookie

passport-cookie authentication

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

passport-cookie Strategy

authentication with cookies

Description

It's same library as passport-http-bearer. Difference is that authentication is implemented with cookies. No special headers needed while browser sends cookies with any request.

Setup

  • Before using, additional setup should be done. cookie-parser is required:
    var express = require('express');
    var cookieParser = require('cookie-parser');
    var app = express();
    app.use(cookieParser());
  • passport should be installed and configured.
    passport.use(new CookieStrategy(function (token, done) {
        User.findOne({token: token})
            .exec(function (err, user) {
                if (err) {
                    return done(err, null);
                }
                done(null, user);
            });
    });

As a first parameter it can be passed an object with property key, which sets the key of the cookie, to authorize. If not provided default key is set Authorization:

new CookieStrategy( {key: 'my-custom-key'}, function(token, done) { ... }

  • Access to the key:
   var cookieAuthKey = require('../src/passport-cookie').key();
  • On login(or whatever public route) set the cookie to the client.
   router.post('/login', function (req, res) {
           // code... 
           res.cookie(cookieAuthKey, user.token);
           res.send('Welcome ' + user.username);
   });            
  • Set to any route middleware like this and will have access to req.user. If this middleware does'n exits, req.user will be undefined.
    router.get('/profile',
        passport.authenticate('cookie', { session: false }), 
        function (req, res) {
            res.json(req.user);
        });
  • To clear cookie
   router.post('/logout', function (req, res) {
           req.logout();
           res.clearCookie(cookieAuthKey);
           res.send('Success logout!');
       });
  • Warning while making configuration, passport strategy should be configured before routes.

Example

open cmd on windows and navigate to example folder

  • Link

  • ..\passport-cookie\example> npm install

  • ..\passport-cookie\example> npm start

    • the example uses an array for storage (on server restart it loses data). Instead you can use a mongodb and mongoose
    • before start, make sure cookies on client are cleared for domain: localhost, else on /auth/profile you will see [object Object]

About

passport-cookie authentication

License:MIT License


Languages

Language:JavaScript 100.0%