Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit 71949a2

Browse files
committed
fix: validate with inline keys
1 parent afcf142 commit 71949a2

File tree

2 files changed

+9
-30
lines changed

2 files changed

+9
-30
lines changed

packages/ipfs/src/core/ipns/resolver.js

+1-28
Original file line numberDiff line numberDiff line change
@@ -99,34 +99,7 @@ class IpnsResolver {
9999
throw errcode(new Error('found ipns record that we couldn\'t convert to a value'), 'ERR_INVALID_RECORD_RECEIVED')
100100
}
101101

102-
// if the record has a public key validate it
103-
if (ipnsEntry.pubKey) {
104-
return this._validateRecord(peerId, ipnsEntry)
105-
}
106-
107-
// Otherwise, try to get the public key from routing
108-
let pubKey
109-
try {
110-
pubKey = await this._routing.get(routingKey.toBuffer())
111-
} catch (err) {
112-
log.error(err)
113-
114-
if (err.code === ERR_NOT_FOUND) {
115-
throw errcode(new Error(`public key requested for ${name} was not found in the network`), 'ERR_NO_RECORD_FOUND')
116-
}
117-
118-
throw errcode(new Error(`unexpected error getting the public key for the ipns record ${peerId.id}`), 'ERR_UNEXPECTED_ERROR_GETTING_PUB_KEY')
119-
}
120-
121-
try {
122-
// Insert it into the peer id, in order to be validated by IPNS validator
123-
peerId.pubKey = crypto.keys.unmarshalPublicKey(pubKey)
124-
} catch (err) {
125-
log.error(err)
126-
127-
throw errcode(new Error('found public key record that we couldn\'t convert to a value'), 'ERR_INVALID_PUB_KEY_RECEIVED')
128-
}
129-
102+
// We should have the public key by now (inline, or in the entry)
130103
return this._validateRecord(peerId, ipnsEntry)
131104
}
132105

packages/ipfs/test/core/name-pubsub.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ const factory = require('../utils/factory')
1818
const namespace = '/record/'
1919
const ipfsRef = '/ipfs/QmPFVLPmp9zv5Z5KUqLhe2EivAGccQW2r7M7jhVJGLZoZU'
2020

21+
const daemonsOptions = {
22+
ipfsOptions: {
23+
EXPERIMENTAL: { ipnsPubsub: true }
24+
}
25+
}
26+
2127
describe('name-pubsub', function () {
2228
const df = factory()
2329
// TODO make this work in the browser and between daemon and in-proc in nodes
@@ -33,8 +39,8 @@ describe('name-pubsub', function () {
3339
this.timeout(40 * 1000)
3440

3541
nodes = await Promise.all([
36-
df.spawn({ type: 'proc', ipfsOptions: { pass: nanoid(), EXPERIMENTAL: { ipnsPubsub: true } } }),
37-
df.spawn({ type: 'proc', ipfsOptions: { pass: nanoid(), EXPERIMENTAL: { ipnsPubsub: true } } })
42+
df.spawn({ ...daemonsOptions }),
43+
df.spawn({ ...daemonsOptions })
3844
])
3945

4046
nodeA = nodes[0].api

0 commit comments

Comments
 (0)