Skip to content

Commit c82cb77

Browse files
committed
fix!: remove deprecated transports and do not automatically append peer ids
Removes support for parsing old p2p-webrtc-direct and p2p-websocket-star addresses into URLs. Also removes support for appending `/p2p/Qmfoo`/`/ipfs/Qmfoo` to URLs automatically - we have `/http-path` now so if this is required, we should use that. BREAKING CHANGE: p2p-webrtc-direct/p2p-websocket-star support has been removed
1 parent c3036d6 commit c82cb77

File tree

2 files changed

+5
-66
lines changed

2 files changed

+5
-66
lines changed

src/index.ts

+2-23
Original file line numberDiff line numberDiff line change
@@ -109,14 +109,14 @@ const interpreters: Record<string, Interpreter> = {
109109
if (tailProto === undefined) {
110110
throw new Error('Unexpected end of multiaddr')
111111
}
112-
return `${interpretNext(tailProto[0], tailProto[1] ?? '', restMa)}/ipfs/${value}`
112+
return `${interpretNext(tailProto[0], tailProto[1] ?? '', restMa)}`
113113
},
114114
p2p: (value: string, restMa: StringTuple[]) => {
115115
const tailProto = restMa.pop()
116116
if (tailProto === undefined) {
117117
throw new Error('Unexpected end of multiaddr')
118118
}
119-
return `${interpretNext(tailProto[0], tailProto[1] ?? '', restMa)}/p2p/${value}`
119+
return `${interpretNext(tailProto[0], tailProto[1] ?? '', restMa)}`
120120
},
121121
http: (value: string, restMa: StringTuple[]) => {
122122
const maHasTLS = hasTLS(restMa)
@@ -196,27 +196,6 @@ const interpreters: Record<string, Interpreter> = {
196196
// We are reinterpreting the base as http, so we need to remove the tcp:// if it's there
197197
baseVal = baseVal.replace('tcp://', '')
198198
return `wss://${baseVal}`
199-
},
200-
'p2p-websocket-star': (value: string, restMa: StringTuple[]) => {
201-
const tailProto = restMa.pop()
202-
if (tailProto === undefined) {
203-
throw new Error('Unexpected end of multiaddr')
204-
}
205-
return `${interpretNext(tailProto[0], tailProto[1] ?? '', restMa)}/p2p-websocket-star`
206-
},
207-
'p2p-webrtc-star': (value: string, restMa: StringTuple[]) => {
208-
const tailProto = restMa.pop()
209-
if (tailProto === undefined) {
210-
throw new Error('Unexpected end of multiaddr')
211-
}
212-
return `${interpretNext(tailProto[0], tailProto[1] ?? '', restMa)}/p2p-webrtc-star`
213-
},
214-
'p2p-webrtc-direct': (value: string, restMa: StringTuple[]) => {
215-
const tailProto = restMa.pop()
216-
if (tailProto === undefined) {
217-
throw new Error('Unexpected end of multiaddr')
218-
}
219-
return `${interpretNext(tailProto[0], tailProto[1] ?? '', restMa)}/p2p-webrtc-direct`
220199
}
221200
}
222201

test/test.spec.ts

+3-43
Original file line numberDiff line numberDiff line change
@@ -38,61 +38,21 @@ describe('multiaddr-to-uri', () => {
3838
['/ip4/1.2.3.4/tcp/1234/tls/sni/ipfs.io/ws', 'wss://ipfs.io'],
3939
['/ip4/1.2.3.4/tcp/3456/wss', 'wss://1.2.3.4:3456'],
4040
['/ip6/::/tcp/0/wss', 'wss://[::]:0'],
41-
[
42-
'/ip4/1.2.3.4/tcp/3456/ws/p2p-webrtc-star/ipfs/QmWo6sLpfuhLnPNF1d2X6s9PXC5NvsRbC69uvHAJhZW9bk',
43-
'ws://1.2.3.4:3456/p2p-webrtc-star/p2p/QmWo6sLpfuhLnPNF1d2X6s9PXC5NvsRbC69uvHAJhZW9bk'
44-
],
45-
[
46-
'/dnsaddr/ipfs.io/ws/p2p-webrtc-star/ipfs/QmcNwyju7SWoizsAuf6kjaaRoxe762ovsT3hz6qt3xxcsK',
47-
'ws://ipfs.io/p2p-webrtc-star/p2p/QmcNwyju7SWoizsAuf6kjaaRoxe762ovsT3hz6qt3xxcsK'
48-
],
49-
[
50-
'/dnsaddr/ipfs.io/wss/p2p-webrtc-star/ipfs/QmcNwyju7SWoizsAuf6kjaaRoxe762ovsT3hz6qt3xxcsK',
51-
'wss://ipfs.io/p2p-webrtc-star/p2p/QmcNwyju7SWoizsAuf6kjaaRoxe762ovsT3hz6qt3xxcsK'
52-
],
53-
[
54-
'/ip6/::/tcp/0/ws/p2p-webrtc-star/ipfs/QmcgpsyWgH8Y8ajJz1Cu72KnS5uo2Aa2LpzU7kinSoooo5',
55-
'ws://[::]:0/p2p-webrtc-star/p2p/QmcgpsyWgH8Y8ajJz1Cu72KnS5uo2Aa2LpzU7kinSoooo5'
56-
],
57-
[
58-
'/dns4/wrtc-star.discovery.libp2p.io/tcp/443/wss/p2p-webrtc-star/ipfs/QmTysQQiTGMdfRsDQp516oZ9bR3FiSCDnicUnqny2q1d79',
59-
'wss://wrtc-star.discovery.libp2p.io:443/p2p-webrtc-star/p2p/QmTysQQiTGMdfRsDQp516oZ9bR3FiSCDnicUnqny2q1d79'
60-
],
61-
['/ip4/1.2.3.4/tcp/3456/http/p2p-webrtc-direct', 'http://1.2.3.4:3456/p2p-webrtc-direct'],
62-
['/ip6/::/tcp/0/http/p2p-webrtc-direct', 'http://[::]:0/p2p-webrtc-direct'],
63-
['/ip4/1.2.3.4/tcp/3456/ws/p2p-websocket-star', 'ws://1.2.3.4:3456/p2p-websocket-star'],
64-
['/ip6/::/tcp/0/ws/p2p-websocket-star', 'ws://[::]:0/p2p-websocket-star'],
65-
[
66-
'/dnsaddr/localhost/ws/p2p-websocket-star/ipfs/QmcNwyju7SWoizsAuf6kjaaRoxe762ovsT3hz6qt3xxcsK',
67-
'ws://localhost/p2p-websocket-star/p2p/QmcNwyju7SWoizsAuf6kjaaRoxe762ovsT3hz6qt3xxcsK'
68-
],
69-
[
70-
'/ip4/1.2.3.4/tcp/3456/ws/p2p-websocket-star/ipfs/QmcNwyju7SWoizsAuf6kjaaRoxe762ovsT3hz6qt3xxcsK',
71-
'ws://1.2.3.4:3456/p2p-websocket-star/p2p/QmcNwyju7SWoizsAuf6kjaaRoxe762ovsT3hz6qt3xxcsK'
72-
],
73-
[
74-
'/dns4/ws-star.discovery.libp2p.io/tcp/443/wss/p2p-websocket-star/ipfs/QmP3vadpN9dqZ7j6KtmwP5Y4prg7XqdS7ixgZMWtXxBAbp',
75-
'wss://ws-star.discovery.libp2p.io:443/p2p-websocket-star/p2p/QmP3vadpN9dqZ7j6KtmwP5Y4prg7XqdS7ixgZMWtXxBAbp'
76-
],
7741
[
7842
'/ip4/127.0.0.1/tcp/20008/ws/ipfs/QmUjNmr8TgJCn1Ao7DvMy4cjoZU15b9bwSCBLE3vwXiwgj',
79-
'ws://127.0.0.1:20008/p2p/QmUjNmr8TgJCn1Ao7DvMy4cjoZU15b9bwSCBLE3vwXiwgj'
80-
],
81-
[
82-
'/ip4/1.2.3.4/tcp/3456/ws/p2p-webrtc-star/ipfs/QmcNwyju7SWoizsAuf6kjaaRoxe762ovsT3hz6qt3xxcsK',
83-
'ws://1.2.3.4:3456/p2p-webrtc-star/p2p/QmcNwyju7SWoizsAuf6kjaaRoxe762ovsT3hz6qt3xxcsK'
43+
'ws://127.0.0.1:20008'
8444
],
8545
[
8646
'/ip4/1.2.3.4/tcp/3456/ipfs/QmcNwyju7SWoizsAuf6kjaaRoxe762ovsT3hz6qt3xxcsK',
87-
'tcp://1.2.3.4:3456/p2p/QmcNwyju7SWoizsAuf6kjaaRoxe762ovsT3hz6qt3xxcsK'
47+
'tcp://1.2.3.4:3456'
8848
],
8949
[
9050
'/ip4/1.2.3.4/tcp/3456/http/http-path/foo%2fbar',
9151
'http://1.2.3.4:3456/foo/bar'
9252
],
9353
[
9454
'/ip4/1.2.3.4/tcp/3456/p2p/QmcNwyju7SWoizsAuf6kjaaRoxe762ovsT3hz6qt3xxcsK',
95-
'tcp://1.2.3.4:3456/p2p/QmcNwyju7SWoizsAuf6kjaaRoxe762ovsT3hz6qt3xxcsK'
55+
'tcp://1.2.3.4:3456'
9656
]
9757
]
9858

0 commit comments

Comments
 (0)