2019-08-16 17:30:03 +02:00
|
|
|
'use strict'
|
|
|
|
|
2019-11-29 16:41:08 +01:00
|
|
|
const EventEmitter = require('events')
|
2019-08-16 17:30:03 +02:00
|
|
|
const multiaddr = require('multiaddr')
|
|
|
|
|
|
|
|
const debug = require('debug')
|
|
|
|
const log = debug('libp2p:circuit:listener')
|
|
|
|
log.err = debug('libp2p:circuit:error:listener')
|
|
|
|
|
2019-11-29 16:41:08 +01:00
|
|
|
/**
|
|
|
|
* @param {*} circuit
|
|
|
|
* @returns {Listener} a transport listener
|
|
|
|
*/
|
|
|
|
module.exports = (circuit) => {
|
|
|
|
const listener = new EventEmitter()
|
|
|
|
const listeningAddrs = new Map()
|
2019-08-16 17:30:03 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add swarm handler and listen for incoming connections
|
|
|
|
*
|
2019-11-29 16:41:08 +01:00
|
|
|
* @param {Multiaddr} addr
|
2019-08-16 17:30:03 +02:00
|
|
|
* @return {void}
|
|
|
|
*/
|
2019-11-29 16:41:08 +01:00
|
|
|
listener.listen = async (addr) => {
|
|
|
|
const [addrString] = String(addr).split('/p2p-circuit').slice(-1)
|
2019-08-16 17:30:03 +02:00
|
|
|
|
2019-12-15 17:33:16 +01:00
|
|
|
const relayConn = await circuit._dialer.connectToPeer(multiaddr(addrString))
|
2019-11-29 16:41:08 +01:00
|
|
|
const relayedAddr = relayConn.remoteAddr.encapsulate('/p2p-circuit')
|
2019-08-16 17:30:03 +02:00
|
|
|
|
2019-11-29 16:41:08 +01:00
|
|
|
listeningAddrs.set(relayConn.remotePeer.toB58String(), relayedAddr)
|
|
|
|
listener.emit('listening')
|
2019-08-16 17:30:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-11-29 16:41:08 +01:00
|
|
|
* TODO: Remove the peers from our topology
|
2019-08-16 17:30:03 +02:00
|
|
|
*
|
|
|
|
* @return {void}
|
|
|
|
*/
|
2019-11-29 16:41:08 +01:00
|
|
|
listener.close = () => {}
|
2019-08-16 17:30:03 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get fixed up multiaddrs
|
|
|
|
*
|
|
|
|
* NOTE: This method will grab the peers multiaddrs and expand them such that:
|
|
|
|
*
|
|
|
|
* a) If it's an existing /p2p-circuit address for a specific relay i.e.
|
|
|
|
* `/ip4/0.0.0.0/tcp/0/ipfs/QmRelay/p2p-circuit` this method will expand the
|
|
|
|
* address to `/ip4/0.0.0.0/tcp/0/ipfs/QmRelay/p2p-circuit/ipfs/QmPeer` where
|
|
|
|
* `QmPeer` is this peers id
|
|
|
|
* b) If it's not a /p2p-circuit address, it will encapsulate the address as a /p2p-circuit
|
|
|
|
* addr, such when dialing over a relay with this address, it will create the circuit using
|
|
|
|
* the encapsulated transport address. This is useful when for example, a peer should only
|
|
|
|
* be dialed over TCP rather than any other transport
|
|
|
|
*
|
2019-11-29 16:41:08 +01:00
|
|
|
* @return {Multiaddr[]}
|
2019-08-16 17:30:03 +02:00
|
|
|
*/
|
2019-11-29 16:41:08 +01:00
|
|
|
listener.getAddrs = () => {
|
|
|
|
const addrs = []
|
|
|
|
for (const addr of listeningAddrs.values()) {
|
|
|
|
addrs.push(addr)
|
2019-08-16 17:30:03 +02:00
|
|
|
}
|
2019-11-29 16:41:08 +01:00
|
|
|
return addrs
|
2019-08-16 17:30:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return listener
|
|
|
|
}
|