Skip to content

Commit 930e670

Browse files
committed
refactor(wip): async iterators
Switches JS API to async iterators where possible. Includes switch to libp2p config override via ipfs/js-ipfs#2591 BREAKING CHANGE: switched to Async Iterators version of JS API https://blog.ipfs.io/2020-02-01-async-await-refactor/
1 parent 9467fd2 commit 930e670

19 files changed

+2014
-2744
lines changed

add-on/src/lib/dir-view.js

-79
This file was deleted.

add-on/src/lib/ipfs-client/embedded-chromesockets/config.js

+42-7
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,22 @@
33
const browser = require('webextension-polyfill')
44

55
const { optionDefaults } = require('../../options')
6-
const chromeSocketsBundle = require('./libp2p-bundle')
76
const mergeOptions = require('merge-options')
87
const getPort = require('get-port')
98
const { getIPv4, getIPv6 } = require('webrtc-ips')
109

10+
const Libp2p = require('libp2p')
11+
const TCP = require('libp2p-tcp')
12+
const MulticastDNS = require('libp2p-mdns')
13+
1114
const multiaddr = require('multiaddr')
1215
const maToUri = require('multiaddr-to-uri')
1316
const multiaddr2httpUrl = (ma) => maToUri(ma.includes('/http') ? ma : multiaddr(ma).encapsulate('/http'))
1417

18+
const debug = require('debug')
19+
const log = debug('ipfs-companion:client:embedded:config')
20+
log.error = debug('ipfs-companion:client:embedded:config:error')
21+
1522
// additional default js-ipfs config specific to runtime with chrome.sockets APIs
1623
const chromeDefaultOpts = {
1724
config: {
@@ -25,11 +32,10 @@ const chromeDefaultOpts = {
2532
Swarm: [
2633
// optional ws-star signaling provides a backup for non-LAN peer discovery
2734
// (this will be removed when autorelay and DHT are stable in js-ipfs)
28-
'/dns4/ws-star.discovery.libp2p.io/tcp/443/wss/p2p-websocket-star'
35+
'/dns4/wrtc-star.discovery.libp2p.io/tcp/443/wss/p2p-webrtc-star'
2936
],
3037
// Delegated Content and Peer Routing: https://github.com/ipfs/js-ipfs/pull/2195
31-
Delegates: // [] // TODO: enable delegates
32-
[
38+
Delegates: [
3339
'/dns4/node1.delegate.ipfs.io/tcp/443/https',
3440
'/dns4/node0.delegate.ipfs.io/tcp/443/https'
3541
]
@@ -42,8 +48,8 @@ const chromeDefaultOpts = {
4248
},
4349
Swarm: {
4450
ConnMgr: {
45-
LowWater: 100,
46-
HighWater: 250
51+
LowWater: 50,
52+
HighWater: 150
4753
}
4854
},
4955
Bootstrap: [
@@ -113,7 +119,36 @@ async function buildConfig (opts, log) {
113119
// merge configs
114120
const finalOpts = {
115121
start: false,
116-
libp2p: chromeSocketsBundle
122+
// a function that customizes libp2p config: https://github.com/ipfs/js-ipfs/pull/2591
123+
libp2p: ({ libp2pOptions, peerInfo }) => {
124+
libp2pOptions.modules = mergeOptions.call({ concatArrays: true }, libp2pOptions.modules, {
125+
transports: [TCP]
126+
})
127+
128+
libp2pOptions.modules = mergeOptions.call({ concatArrays: true }, libp2pOptions.modules, {
129+
peerDiscovery: [MulticastDNS]
130+
})
131+
132+
libp2pOptions.config = mergeOptions(libp2pOptions.config, {
133+
peerDiscovery: {
134+
autoDial: true,
135+
mdns: {
136+
enabled: true
137+
},
138+
bootstrap: {
139+
enabled: true
140+
},
141+
webRTCStar: {
142+
enabled: true
143+
}
144+
}
145+
})
146+
147+
libp2pOptions.metrics = { enabled: false }
148+
149+
log('initializing libp2p with libp2pOptions', libp2pOptions)
150+
return new Libp2p(libp2pOptions)
151+
}
117152
}
118153
const ipfsNodeConfig = mergeOptions(defaultOpts, userOpts, chromeOpts, finalOpts)
119154

add-on/src/lib/ipfs-client/embedded-chromesockets/libp2p-bundle.js

-107
This file was deleted.

add-on/src/lib/ipfs-client/embedded-chromesockets/libp2p.js

-91
This file was deleted.

add-on/src/lib/ipfs-client/index.js

+2-20
Original file line numberDiff line numberDiff line change
@@ -75,29 +75,11 @@ async function _reloadIpfsClientDependents (instance, opts) {
7575
}
7676
}
7777

78-
const movedFilesApis = ['add', 'addPullStream', 'addReadableStream', 'cat', 'catPullStream', 'catReadableStream', 'get', 'getPullStream', 'getReadableStream']
79-
8078
// This enables use of dependencies without worrying if they already migrated to the new API.
8179
function easeApiChanges (ipfs) {
82-
if (!ipfs) return
83-
// Handle the move of regular files api to top level
84-
// https://github.com/ipfs/interface-ipfs-core/pull/378
85-
// https://github.com/ipfs/js-ipfs/releases/tag/v0.34.0-pre.0
86-
movedFilesApis.forEach(cmd => {
87-
// Fix old backend (add new methods)
88-
if (typeof ipfs[cmd] !== 'function' && ipfs.files && typeof ipfs.files[cmd] === 'function') {
89-
ipfs[cmd] = ipfs.files[cmd]
90-
// console.log(`[ipfs-companion] fixed missing ipfs.${cmd}: added an alias for ipfs.files.${cmd}`)
91-
}
92-
// Fix new backend (add old methods)
93-
// This ensures ipfs-postmsg-proxy always works and can be migrated later
94-
if (ipfs.files && typeof ipfs.files[cmd] !== 'function' && typeof ipfs[cmd] === 'function') {
95-
ipfs.files[cmd] = ipfs[cmd]
96-
// console.log(`[ipfs-companion] fixed missing ipfs.files.${cmd}: added an alias for ipfs.${cmd}`)
97-
}
98-
})
80+
// no-op: used in past, not used atm
81+
// if (!ipfs) return
9982
}
10083

101-
exports.movedFilesApis = movedFilesApis
10284
exports.initIpfsClient = initIpfsClient
10385
exports.destroyIpfsClient = destroyIpfsClient

0 commit comments

Comments
 (0)