js-libp2p/src/pubsub.js

127 lines
3.6 KiB
JavaScript
Raw Normal View History

2018-02-14 11:30:36 +01:00
'use strict'
const nextTick = require('async/nextTick')
const { messages, codes } = require('./errors')
2018-02-14 11:30:36 +01:00
const FloodSub = require('libp2p-floodsub')
const promisify = require('promisify-es6')
2018-02-14 11:30:36 +01: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: promisify((topic, options, handler, callback) => {
2018-02-14 11:30:36 +01:00
if (typeof options === 'function') {
callback = handler
handler = options
options = {}
}
2018-02-15 20:14:54 +01:00
if (!node.isStarted() && !floodSub.started) {
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)
nextTick(cb)
2018-02-14 11:30:36 +01:00
}
subscribe(callback)
}),
/**
* Unsubscribes from a pubsub topic
*
* @param {string} topic
* @param {function|null} handler The handler to unsubscribe from
* @param {function} [callback] An optional callback
*
* @returns {Promise|void} A promise is returned if no callback is provided
*
* @example <caption>Unsubscribe a topic for all handlers</caption>
*
* // `null` must be passed until unsubscribe is no longer using promisify
* await libp2p.unsubscribe(topic, null)
*
* @example <caption>Unsubscribe a topic for 1 handler</caption>
*
* await libp2p.unsubscribe(topic, handler)
*
* @example <caption>Use a callback instead of the Promise api</caption>
*
* libp2p.unsubscribe(topic, handler, callback)
*/
unsubscribe: promisify((topic, handler, callback) => {
2018-02-15 19:39:06 +01:00
if (!node.isStarted() && !floodSub.started) {
return nextTick(callback, errCode(new Error(messages.NOT_STARTED_YET), codes.PUBSUB_NOT_STARTED))
2018-02-15 19:39:06 +01:00
}
if (!handler) {
floodSub.removeAllListeners(topic)
} else {
floodSub.removeListener(topic, handler)
}
2018-02-14 11:30:36 +01:00
if (floodSub.listenerCount(topic) === 0) {
floodSub.unsubscribe(topic)
}
if (typeof callback === 'function') {
return nextTick(() => callback())
}
2018-02-14 11:30:36 +01:00
return Promise.resolve()
}),
publish: promisify((topic, data, callback) => {
2018-02-15 19:39:06 +01:00
if (!node.isStarted() && !floodSub.started) {
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)) {
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
}
floodSub.publish(topic, data, callback)
}),
2018-02-14 11:30:36 +01:00
ls: promisify((callback) => {
2018-02-15 19:39:06 +01:00
if (!node.isStarted() && !floodSub.started) {
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)
nextTick(() => callback(null, subscriptions))
}),
2018-02-14 11:30:36 +01:00
peers: promisify((topic, callback) => {
2018-02-15 19:39:06 +01:00
if (!node.isStarted() && !floodSub.started) {
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())
nextTick(() => callback(null, peers))
}),
2018-02-14 11:30:36 +01:00
setMaxListeners (n) {
return floodSub.setMaxListeners(n)
}
}
}