overleaf/services/real-time/app/coffee/ChannelManager.coffee

47 lines
2 KiB
CoffeeScript
Raw Normal View History

logger = require 'logger-sharelatex'
metrics = require "metrics-sharelatex"
settings = require "settings-sharelatex"
ClientMap = new Map() # for each redis client, stores a Set of subscribed channels
# Manage redis pubsub subscriptions for individual projects and docs, ensuring
# that we never subscribe to a channel multiple times. The socket.io side is
# handled by RoomManager.
module.exports = ChannelManager =
2019-07-22 06:23:33 -04:00
getClientMapEntry: (rclient) ->
# return the rclient channel set if it exists, otherwise create and
# return an empty set for the client.
ClientMap.get(rclient) || ClientMap.set(rclient, new Set()).get(rclient)
subscribe: (rclient, baseChannel, id) ->
2019-07-22 06:23:33 -04:00
existingChannelSet = @getClientMapEntry(rclient)
channel = "#{baseChannel}:#{id}"
if existingChannelSet.has(channel)
logger.error {channel}, "already subscribed - shouldn't happen"
else
rclient.subscribe channel # completes in the background
existingChannelSet.add(channel)
logger.log {channel}, "subscribed to new channel"
metrics.inc "subscribe.#{baseChannel}"
unsubscribe: (rclient, baseChannel, id) ->
2019-07-22 06:23:33 -04:00
existingChannelSet = @getClientMapEntry(rclient)
channel = "#{baseChannel}:#{id}"
if !existingChannelSet.has(channel)
logger.error {channel}, "not subscribed - shouldn't happen"
else
rclient.unsubscribe channel # completes in the background
existingChannelSet.delete(channel)
logger.log {channel}, "unsubscribed from channel"
metrics.inc "unsubscribe.#{baseChannel}"
publish: (rclient, baseChannel, id, data) ->
if id is 'all' or !settings.publishOnIndividualChannels
channel = baseChannel
else
channel = "#{baseChannel}:#{id}"
# we publish on a different client to the subscribe, so we can't
# check for the channel existing here
2019-07-22 07:25:41 -04:00
rclient.publish channel, data