This repository has been archived by the owner on Jul 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: using libp2p new state methods (#12)
* feat: using libp2p new state methods * fix: remove dep of previous bundles
- Loading branch information
Showing
9 changed files
with
182 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
'use strict' | ||
|
||
const WS = require('libp2p-websockets') | ||
const WebRTCStar = require('libp2p-webrtc-star') | ||
const spdy = require('libp2p-spdy') | ||
const multiplex = require('libp2p-multiplex') | ||
const secio = require('libp2p-secio') | ||
const Railing = require('libp2p-railing') | ||
const libp2p = require('libp2p') | ||
|
||
function mapMuxers (list) { | ||
return list.map((pref) => { | ||
if (typeof pref !== 'string') { | ||
return pref | ||
} | ||
switch (pref.trim().toLowerCase()) { | ||
case 'spdy': | ||
return spdy | ||
case 'multiplex': | ||
return multiplex | ||
default: | ||
throw new Error(pref + ' muxer not available') | ||
} | ||
}) | ||
} | ||
|
||
function getMuxers (options) { | ||
if (options) { | ||
return mapMuxers(options) | ||
} else { | ||
return [multiplex, spdy] | ||
} | ||
} | ||
|
||
class Node extends libp2p { | ||
constructor (peerInfo, peerBook, options) { | ||
options = options || {} | ||
const webRTCStar = new WebRTCStar() | ||
|
||
const modules = { | ||
transport: [ | ||
new WS(), | ||
webRTCStar | ||
], | ||
connection: { | ||
muxer: getMuxers(options.muxer), | ||
crypto: [ | ||
secio | ||
] | ||
}, | ||
discovery: [] | ||
} | ||
|
||
if (options.webRTCStar) { | ||
modules.discovery.push(webRTCStar.discovery) | ||
} | ||
|
||
if (options.bootstrap) { | ||
const r = new Railing(options.bootstrap) | ||
modules.discovery.push(r) | ||
} | ||
|
||
super(modules, peerInfo, peerBook, options) | ||
} | ||
} | ||
|
||
module.exports = Node |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
'use strict' | ||
|
||
const TCP = require('libp2p-tcp') | ||
const MulticastDNS = require('libp2p-mdns') | ||
const WS = require('libp2p-websockets') | ||
const Railing = require('libp2p-railing') | ||
const spdy = require('libp2p-spdy') | ||
const KadDHT = require('..') | ||
const multiplex = require('libp2p-multiplex') | ||
const secio = require('libp2p-secio') | ||
const libp2p = require('libp2p') | ||
|
||
function mapMuxers (list) { | ||
return list.map((pref) => { | ||
if (typeof pref !== 'string') { | ||
return pref | ||
} | ||
switch (pref.trim().toLowerCase()) { | ||
case 'spdy': return spdy | ||
case 'multiplex': return multiplex | ||
default: | ||
throw new Error(pref + ' muxer not available') | ||
} | ||
}) | ||
} | ||
|
||
function getMuxers (muxers) { | ||
const muxerPrefs = process.env.LIBP2P_MUXER | ||
if (muxerPrefs && !muxers) { | ||
return mapMuxers(muxerPrefs.split(',')) | ||
} else if (muxers) { | ||
return mapMuxers(muxers) | ||
} else { | ||
return [multiplex, spdy] | ||
} | ||
} | ||
|
||
class Node extends libp2p { | ||
constructor (peerInfo, peerBook, options) { | ||
options = options || {} | ||
|
||
const modules = { | ||
transport: [ | ||
new TCP(), | ||
new WS() | ||
], | ||
connection: { | ||
muxer: getMuxers(options.muxer), | ||
crypto: [ secio ] | ||
}, | ||
discovery: [] | ||
} | ||
|
||
if (options.dht) { | ||
modules.DHT = KadDHT | ||
} | ||
|
||
if (options.mdns) { | ||
const mdns = new MulticastDNS(peerInfo, 'ipfs.local') | ||
modules.discovery.push(mdns) | ||
} | ||
|
||
if (options.bootstrap) { | ||
const r = new Railing(options.bootstrap) | ||
modules.discovery.push(r) | ||
} | ||
|
||
if (options.modules && options.modules.transport) { | ||
options.modules.transport.forEach((t) => modules.transport.push(t)) | ||
} | ||
|
||
if (options.modules && options.modules.discovery) { | ||
options.modules.discovery.forEach((d) => modules.discovery.push(d)) | ||
} | ||
|
||
super(modules, peerInfo, peerBook, options) | ||
} | ||
} | ||
|
||
module.exports = Node |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters