2
1
mirror of https://github.com/Thream/socketio-jwt.git synced 2024-07-21 09:38:31 +02:00
socketio-jwt/test/fixture/namespace.js

78 lines
1.7 KiB
JavaScript
Raw Normal View History

2020-12-27 17:25:44 +01:00
'use strict' // Node 4.x workaround
2019-10-14 04:13:25 +02:00
2020-12-27 17:25:44 +01:00
const express = require('express')
const http = require('http')
2015-08-31 16:04:04 +02:00
2020-12-27 17:25:44 +01:00
const socketIo = require('socket.io')
const socketio_jwt = require('../../lib')
2015-08-31 16:04:04 +02:00
2020-12-27 17:25:44 +01:00
const jwt = require('jsonwebtoken')
const xtend = require('xtend')
const enableDestroy = require('server-destroy')
2015-08-31 16:04:04 +02:00
2020-12-27 17:25:44 +01:00
let sio
2015-08-31 16:04:04 +02:00
/**
* This is an example server that shows how to do namespace authentication.
*
* The /admin namespace is protected by JWTs while the global namespace is public.
*/
exports.start = (callback) => {
const options = {
2015-08-31 16:04:04 +02:00
secret: 'aaafoo super sercret',
timeout: 1000,
handshake: false
2020-12-27 17:25:44 +01:00
}
2015-08-31 16:04:04 +02:00
2020-12-27 17:25:44 +01:00
const app = express()
const server = http.createServer(app)
sio = socketIo.listen(server)
2015-08-31 16:04:04 +02:00
2020-12-27 17:25:44 +01:00
app.use(express.json())
app.post('/login', (req, res) => {
const profile = {
2015-08-31 16:04:04 +02:00
first_name: 'John',
last_name: 'Doe',
email: 'john@doe.com',
id: 123
2020-12-27 17:25:44 +01:00
}
2015-08-31 16:04:04 +02:00
// We are sending the profile inside the token
2020-12-27 17:25:44 +01:00
const token = jwt.sign(profile, options.secret, { expiresIn: 60 * 60 * 5 })
res.json({ token: token })
})
2015-08-31 16:04:04 +02:00
// Global namespace (public)
sio.on('connection', (socket) => {
2020-12-27 17:25:44 +01:00
socket.emit('hi')
})
2015-08-31 16:04:04 +02:00
// Second roundtrip
2020-12-27 17:25:44 +01:00
const admin_nsp = sio.of('/admin')
2015-08-31 16:04:04 +02:00
2020-12-27 17:25:44 +01:00
admin_nsp
.on('connection', socketio_jwt.authorize(options))
.on('authenticated', (socket) => {
2020-12-27 17:25:44 +01:00
socket.emit('hi admin')
})
// One roundtrip
2020-12-27 17:25:44 +01:00
const admin_nsp_hs = sio.of('/admin_hs')
2020-12-27 17:25:44 +01:00
admin_nsp_hs.use(socketio_jwt.authorize(xtend(options, { handshake: true })))
admin_nsp_hs.on('connection', (socket) => {
2020-12-27 17:25:44 +01:00
socket.emit('hi admin')
})
2015-08-31 16:04:04 +02:00
2020-12-27 17:25:44 +01:00
server.listen(9000, callback)
enableDestroy(server)
}
2015-08-31 16:04:04 +02:00
exports.stop = (callback) => {
2020-12-27 17:25:44 +01:00
sio.close()
2015-08-31 16:14:48 +02:00
try {
2020-12-27 17:25:44 +01:00
server.destroy()
2015-08-31 16:14:48 +02:00
} catch (er) {}
2020-12-27 17:25:44 +01:00
callback()
}