-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
26 lines (22 loc) · 851 Bytes
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
const io = require('socket.io').listen(8001)
const redis = require('redis')
io.of('/notifications')
.on('connection', function (socket) {
console.log('New connection: ' + socket.id)
// Send the message of connection for receiving the user ID
socket.emit('connected')
// Receive the ID
socket.on('join', function (userId) {
const channel = 'push:notifications:' + userId
console.log('Connecting to redis: ' + channel)
// store in the socket our connection
socket.redisClient = redis.createClient()
socket.redisClient.subscribe(channel)
// subscribe to our channel (We don't need to check because we have a
// connection per channel/user)
socket.redisClient.on('message', (channel, message) => {
console.log(channel + ': ' + message)
socket.emit('notification', channel, message)
})
})
})