@@ -4,6 +4,8 @@ const pkgversion = require('../../package.json').version
4
4
const { Multiaddr } = require ( 'multiaddr' )
5
5
const withTimeoutOption = require ( 'ipfs-core-utils/src/with-timeout-option' )
6
6
const uint8ArrayToString = require ( 'uint8arrays/to-string' )
7
+ const PeerId = require ( 'peer-id' )
8
+ const { NotStartedError } = require ( '../errors' )
7
9
8
10
/**
9
11
* @param {Object } config
@@ -14,54 +16,61 @@ module.exports = ({ peerId, network }) => {
14
16
/**
15
17
* @type {import('ipfs-core-types/src/root').API["id"] }
16
18
*/
17
- async function id ( _options = { } ) { // eslint-disable-line require-await
18
- const id = peerId . toB58String ( )
19
- /** @type {Multiaddr[] } */
20
- let addresses = [ ]
21
- /** @type {string[] } */
22
- let protocols = [ ]
19
+ async function id ( options = { } ) { // eslint-disable-line require-await
20
+ if ( options . peerId === peerId . toB58String ( ) ) {
21
+ delete options . peerId
22
+ }
23
23
24
24
const net = network . try ( )
25
25
26
- if ( net ) {
27
- const { libp2p } = net
28
- // only available while the node is running
29
- addresses = libp2p . multiaddrs
30
- protocols = Array . from ( libp2p . upgrader . protocols . keys ( ) )
26
+ if ( ! net ) {
27
+ if ( options . peerId ) {
28
+ throw new NotStartedError ( )
29
+ }
30
+
31
+ const idStr = peerId . toB58String ( )
32
+
33
+ return {
34
+ id : idStr ,
35
+ publicKey : uint8ArrayToString ( peerId . pubKey . bytes , 'base64pad' ) ,
36
+ addresses : [ ] ,
37
+ agentVersion : `js-ipfs/${ pkgversion } ` ,
38
+ protocolVersion : '9000' ,
39
+ protocols : [ ]
40
+ }
31
41
}
32
42
43
+ const id = options . peerId ? PeerId . createFromB58String ( options . peerId . toString ( ) ) : peerId
44
+ const { libp2p } = net
45
+
46
+ const publicKey = options . peerId ? libp2p . peerStore . keyBook . get ( id ) : id . pubKey
47
+ const addresses = options . peerId ? libp2p . peerStore . addressBook . getMultiaddrsForPeer ( id ) : libp2p . multiaddrs
48
+ const protocols = options . peerId ? libp2p . peerStore . protoBook . get ( id ) : Array . from ( libp2p . upgrader . protocols . keys ( ) )
49
+ const agentVersion = uint8ArrayToString ( libp2p . peerStore . metadataBook . getValue ( id , 'AgentVersion' ) || new Uint8Array ( ) )
50
+ const protocolVersion = uint8ArrayToString ( libp2p . peerStore . metadataBook . getValue ( id , 'ProtocolVersion' ) || new Uint8Array ( ) )
51
+ const idStr = id . toB58String ( )
52
+
33
53
return {
34
- id,
35
- publicKey : uint8ArrayToString ( peerId . pubKey . bytes , 'base64pad' ) ,
36
- addresses : addresses
54
+ id : idStr ,
55
+ publicKey : uint8ArrayToString ( publicKey . bytes , 'base64pad' ) ,
56
+ addresses : ( addresses || [ ] )
37
57
. map ( ma => {
38
58
const str = ma . toString ( )
39
59
40
60
// some relay-style transports add our peer id to the ma for us
41
61
// so don't double-add
42
- if ( str . endsWith ( `/p2p/${ id } ` ) ) {
62
+ if ( str . endsWith ( `/p2p/${ idStr } ` ) ) {
43
63
return str
44
64
}
45
65
46
- return `${ str } /p2p/${ id } `
66
+ return `${ str } /p2p/${ idStr } `
47
67
} )
48
68
. sort ( )
49
69
. map ( ma => new Multiaddr ( ma ) ) ,
50
- agentVersion : `js-ipfs/ ${ pkgversion } ` ,
51
- protocolVersion : '9000' ,
52
- protocols : protocols . sort ( )
70
+ agentVersion,
71
+ protocolVersion,
72
+ protocols : ( protocols || [ ] ) . sort ( )
53
73
}
54
74
}
55
75
return withTimeoutOption ( id )
56
76
}
57
-
58
- /**
59
- * @typedef {object } ID
60
- * The Peer identity
61
- * @property {string } id - the Peer ID
62
- * @property {string } publicKey - the public key of the peer as a base64 encoded string
63
- * @property {Multiaddr[] } addresses - A list of multiaddrs this node is listening on
64
- * @property {string } agentVersion - The agent version
65
- * @property {string } protocolVersion - The supported protocol version
66
- * @property {string[] } protocols - The supported protocols
67
- */
0 commit comments