0.0.30 • Published 7 years ago

koa-jwt-redis-session v0.0.30

Weekly downloads
26
License
MIT
Repository
github
Last release
7 years ago

#JWT Redis Session for Koa 2

Pure JWT implementation using Redis as session storage for Koa 2, without any cookies

Quick Start

As middleware:

const koa = require('koa'),
      bodyParser = require('koa-bodyparser'),
      session = require('koa-jwt-redis-session')
// import session from 'koa-jwt-redis-session'

const app = new koa()
app.use(bodyParser())

app.use(session.default())

// If using import
// app.use(session()) 

app.use(async function(ctx, next){
    let views = ctx.session.views || 0
    ctx.session.views = ++views
    try{
       ctx.body = {views: ctx.session.views}
       await next()
    }catch(ex){
       console.error('something wrong:', ex)
       ctx.status = 500
       ctx.body = 'something wrong'
    }
})

app.listen(3333)

As a function:

// After used as middleware
// Somewhere when using as backdore
import {createSession, authoriseRequest} from 'koa-jwt-redis-session'

let openDoorHandler = async (ctx, next)=>{
    let userObj = {account: 'sneaky', password: 'open_the_back_door'};
    let token = await createSession(ctx, userObj);
    ctx.body = token;
    // Token is in JSON format: {token: ..... , expiresIn: 3600}
    // expiresIn is the expire time in seconds, default is 3600
}

let guardHandler = async (ctx, next)=>{
    let user = await authoriseRequest(ctx);
    if( user != undefined){
        ctx.body = user;
    }else{
        ctx.throw(new Error('Unauthorized'));
    }
}

Options

When creating session instance, you can pass in an option object

const sessionOptions = {
       // ......
}
app.use(session.default(sessionOptions))

// If using import
app.use(session(sessionOptions))

Here is the default option values

{
  jwt: {
    contentType: 'application/json',
    charset: 'utf-8',
    secret: 'koa-jwt-redis-session' + new Date().getTime(),
    authPath: '/authorize',
    registerPath: '/register',
    refreshTokenPath: '/refreshToken',
    expiresIn: 3600,
    accountKey: 'account',
    passwordKey: 'password',
    authHandler: function (account, password) {
            		if (account && password) {
 				let user = {};
				user[accountKey] = account;
				return user;
			}
			else return false;
        },
    registerHandler: function (account, password) {
           		if (account && password) {
				let user = {};
				user[accountKey] = account;
				return user;
			}
			else return false; 
        }
  },
  session: {
    sessionKey: 'session',
    sidKey: 'koa:sess',
  },
  redis: {
    port: 6379,
    host: '127.0.0.1',
    db: 0,
    ttl: 3600,
    options: {}
  }
}

Action flow

  1. Anonymous client post JSON user credential information { account: "...", password: "..." } to /register to register an account,
  2. or post to /authorize to get authorization
  3. Client get token in JSON like { token: "...", expiresIn: 3600 }, or an 401 error if not authorized
  4. From then on, client send every request by the http header: Authorization: Bearer <token>,
  5. or client would get 401 error if not authorized or token expired
  6. On the server side, afterward middlewares can operate ctx.session as will

Enjoy!

0.0.30

7 years ago

0.0.29

8 years ago

0.0.28

8 years ago

0.0.27

8 years ago

0.0.26

8 years ago

0.0.25

8 years ago

0.0.24

8 years ago

0.0.23

8 years ago

0.0.22

8 years ago

0.0.21

8 years ago

0.0.20

8 years ago

0.0.19

8 years ago

0.0.18

8 years ago

0.0.17

8 years ago

0.0.17-alpha2

8 years ago

0.0.17-alpha1

8 years ago

0.0.17-alpha

8 years ago

0.0.16

8 years ago

0.0.15

8 years ago

0.0.14

8 years ago

0.0.13

8 years ago

0.0.12

8 years ago

0.0.11

8 years ago

0.0.10

8 years ago

0.0.9

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago