2018-02-14 11:30:36 +01:00
|
|
|
'use strict'
|
|
|
|
|
2019-02-26 14:15:30 +00:00
|
|
|
const nextTick = require('async/nextTick')
|
|
|
|
const { messages, codes } = require('./errors')
|
2018-02-14 11:30:36 +01:00
|
|
|
const FloodSub = require('libp2p-floodsub')
|
|
|
|
|
2019-02-26 14:15:30 +00:00
|
|
|
const errCode = require('err-code')
|
|
|
|
|
2018-02-14 11:30:36 +01:00
|
|
|
module.exports = (node) => {
|
|
|
|
const floodSub = new FloodSub(node)
|
|
|
|
|
|
|
|
node._floodSub = floodSub
|
|
|
|
|
|
|
|
return {
|
|
|
|
subscribe: (topic, options, handler, callback) => {
|
|
|
|
if (typeof options === 'function') {
|
|
|
|
callback = handler
|
|
|
|
handler = options
|
|
|
|
options = {}
|
|
|
|
}
|
|
|
|
|
2018-02-15 20:14:54 +01:00
|
|
|
if (!node.isStarted() && !floodSub.started) {
|
2019-02-26 14:15:30 +00:00
|
|
|
return nextTick(callback, errCode(new Error(messages.NOT_STARTED_YET), codes.PUBSUB_NOT_STARTED))
|
2018-02-15 20:14:54 +01:00
|
|
|
}
|
|
|
|
|
2018-02-14 11:30:36 +01:00
|
|
|
function subscribe (cb) {
|
|
|
|
if (floodSub.listenerCount(topic) === 0) {
|
|
|
|
floodSub.subscribe(topic)
|
|
|
|
}
|
|
|
|
|
2018-02-15 19:39:35 +01:00
|
|
|
floodSub.on(topic, handler)
|
2019-02-26 14:15:30 +00:00
|
|
|
nextTick(cb)
|
2018-02-14 11:30:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
subscribe(callback)
|
|
|
|
},
|
|
|
|
|
2018-12-20 11:48:07 -05:00
|
|
|
unsubscribe: (topic, handler, callback) => {
|
2018-02-15 19:39:06 +01:00
|
|
|
if (!node.isStarted() && !floodSub.started) {
|
2019-02-26 14:15:30 +00:00
|
|
|
return nextTick(callback, errCode(new Error(messages.NOT_STARTED_YET), codes.PUBSUB_NOT_STARTED))
|
2018-02-15 19:39:06 +01:00
|
|
|
}
|
2019-02-21 15:46:31 +02:00
|
|
|
if (!handler && !callback) {
|
|
|
|
floodSub.removeAllListeners(topic)
|
|
|
|
} else {
|
|
|
|
floodSub.removeListener(topic, handler)
|
|
|
|
}
|
2018-02-14 11:30:36 +01:00
|
|
|
|
|
|
|
if (floodSub.listenerCount(topic) === 0) {
|
|
|
|
floodSub.unsubscribe(topic)
|
|
|
|
}
|
2018-12-20 11:48:07 -05:00
|
|
|
|
|
|
|
if (typeof callback === 'function') {
|
2019-02-26 14:15:30 +00:00
|
|
|
nextTick(() => callback())
|
2018-12-20 11:48:07 -05:00
|
|
|
}
|
2018-02-14 11:30:36 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
publish: (topic, data, callback) => {
|
2018-02-15 19:39:06 +01:00
|
|
|
if (!node.isStarted() && !floodSub.started) {
|
2019-02-26 14:15:30 +00:00
|
|
|
return nextTick(callback, errCode(new Error(messages.NOT_STARTED_YET), codes.PUBSUB_NOT_STARTED))
|
2018-02-14 11:30:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!Buffer.isBuffer(data)) {
|
2019-02-26 14:15:30 +00:00
|
|
|
return nextTick(callback, errCode(new Error('data must be a Buffer'), 'ERR_DATA_IS_NOT_A_BUFFER'))
|
2018-02-14 11:30:36 +01:00
|
|
|
}
|
|
|
|
|
2019-05-07 13:45:59 +02:00
|
|
|
floodSub.publish(topic, data, callback)
|
2018-02-14 11:30:36 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
ls: (callback) => {
|
2018-02-15 19:39:06 +01:00
|
|
|
if (!node.isStarted() && !floodSub.started) {
|
2019-02-26 14:15:30 +00:00
|
|
|
return nextTick(callback, errCode(new Error(messages.NOT_STARTED_YET), codes.PUBSUB_NOT_STARTED))
|
2018-02-14 11:30:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const subscriptions = Array.from(floodSub.subscriptions)
|
|
|
|
|
2019-02-26 14:15:30 +00:00
|
|
|
nextTick(() => callback(null, subscriptions))
|
2018-02-14 11:30:36 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
peers: (topic, callback) => {
|
2018-02-15 19:39:06 +01:00
|
|
|
if (!node.isStarted() && !floodSub.started) {
|
2019-02-26 14:15:30 +00:00
|
|
|
return nextTick(callback, errCode(new Error(messages.NOT_STARTED_YET), codes.PUBSUB_NOT_STARTED))
|
2018-02-14 11:30:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof topic === 'function') {
|
|
|
|
callback = topic
|
|
|
|
topic = null
|
|
|
|
}
|
|
|
|
|
|
|
|
const peers = Array.from(floodSub.peers.values())
|
|
|
|
.filter((peer) => topic ? peer.topics.has(topic) : true)
|
|
|
|
.map((peer) => peer.info.id.toB58String())
|
|
|
|
|
2019-02-26 14:15:30 +00:00
|
|
|
nextTick(() => callback(null, peers))
|
2018-02-14 11:30:36 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
setMaxListeners (n) {
|
|
|
|
return floodSub.setMaxListeners(n)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|