@libp2p/identify 0.0.0-97ab31c0c
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +4 -0
- package/README.md +53 -0
- package/dist/index.min.js +45 -0
- package/dist/src/consts.d.ts +9 -0
- package/dist/src/consts.d.ts.map +1 -0
- package/dist/src/consts.js +9 -0
- package/dist/src/consts.js.map +1 -0
- package/dist/src/identify.d.ts +55 -0
- package/dist/src/identify.d.ts.map +1 -0
- package/dist/src/identify.js +446 -0
- package/dist/src/identify.js.map +1 -0
- package/dist/src/index.d.ts +88 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +32 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/pb/message.d.ts +17 -0
- package/dist/src/pb/message.d.ts.map +1 -0
- package/dist/src/pb/message.js +98 -0
- package/dist/src/pb/message.js.map +1 -0
- package/package.json +75 -0
- package/src/consts.ts +9 -0
- package/src/identify.ts +559 -0
- package/src/index.ts +108 -0
- package/src/pb/message.proto +30 -0
- package/src/pb/message.ts +126 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const PROTOCOL_VERSION = "ipfs/0.1.0";
|
|
2
|
+
export declare const MULTICODEC_IDENTIFY = "/ipfs/id/1.0.0";
|
|
3
|
+
export declare const MULTICODEC_IDENTIFY_PUSH = "/ipfs/id/push/1.0.0";
|
|
4
|
+
export declare const IDENTIFY_PROTOCOL_VERSION = "0.1.0";
|
|
5
|
+
export declare const MULTICODEC_IDENTIFY_PROTOCOL_NAME = "id";
|
|
6
|
+
export declare const MULTICODEC_IDENTIFY_PUSH_PROTOCOL_NAME = "id/push";
|
|
7
|
+
export declare const MULTICODEC_IDENTIFY_PROTOCOL_VERSION = "1.0.0";
|
|
8
|
+
export declare const MULTICODEC_IDENTIFY_PUSH_PROTOCOL_VERSION = "1.0.0";
|
|
9
|
+
//# sourceMappingURL=consts.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../src/consts.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,gBAAgB,eAAe,CAAA;AAC5C,eAAO,MAAM,mBAAmB,mBAAmB,CAAA;AACnD,eAAO,MAAM,wBAAwB,wBAAwB,CAAA;AAE7D,eAAO,MAAM,yBAAyB,UAAU,CAAA;AAChD,eAAO,MAAM,iCAAiC,OAAO,CAAA;AACrD,eAAO,MAAM,sCAAsC,YAAY,CAAA;AAC/D,eAAO,MAAM,oCAAoC,UAAU,CAAA;AAC3D,eAAO,MAAM,yCAAyC,UAAU,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export const PROTOCOL_VERSION = 'ipfs/0.1.0'; // deprecated
|
|
2
|
+
export const MULTICODEC_IDENTIFY = '/ipfs/id/1.0.0'; // deprecated
|
|
3
|
+
export const MULTICODEC_IDENTIFY_PUSH = '/ipfs/id/push/1.0.0'; // deprecated
|
|
4
|
+
export const IDENTIFY_PROTOCOL_VERSION = '0.1.0';
|
|
5
|
+
export const MULTICODEC_IDENTIFY_PROTOCOL_NAME = 'id';
|
|
6
|
+
export const MULTICODEC_IDENTIFY_PUSH_PROTOCOL_NAME = 'id/push';
|
|
7
|
+
export const MULTICODEC_IDENTIFY_PROTOCOL_VERSION = '1.0.0';
|
|
8
|
+
export const MULTICODEC_IDENTIFY_PUSH_PROTOCOL_VERSION = '1.0.0';
|
|
9
|
+
//# sourceMappingURL=consts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"consts.js","sourceRoot":"","sources":["../../src/consts.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,gBAAgB,GAAG,YAAY,CAAA,CAAC,aAAa;AAC1D,MAAM,CAAC,MAAM,mBAAmB,GAAG,gBAAgB,CAAA,CAAC,aAAa;AACjE,MAAM,CAAC,MAAM,wBAAwB,GAAG,qBAAqB,CAAA,CAAC,aAAa;AAE3E,MAAM,CAAC,MAAM,yBAAyB,GAAG,OAAO,CAAA;AAChD,MAAM,CAAC,MAAM,iCAAiC,GAAG,IAAI,CAAA;AACrD,MAAM,CAAC,MAAM,sCAAsC,GAAG,SAAS,CAAA;AAC/D,MAAM,CAAC,MAAM,oCAAoC,GAAG,OAAO,CAAA;AAC3D,MAAM,CAAC,MAAM,yCAAyC,GAAG,OAAO,CAAA"}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { Identify as IdentifyMessage } from './pb/message.js';
|
|
2
|
+
import type { Identify as IdentifyInterface, IdentifyComponents, IdentifyInit } from './index.js';
|
|
3
|
+
import type { IdentifyResult, AbortOptions } from '@libp2p/interface';
|
|
4
|
+
import type { Connection } from '@libp2p/interface/connection';
|
|
5
|
+
import type { Startable } from '@libp2p/interface/startable';
|
|
6
|
+
import type { IncomingStreamData } from '@libp2p/interface-internal/registrar';
|
|
7
|
+
export declare class Identify implements Startable, IdentifyInterface {
|
|
8
|
+
#private;
|
|
9
|
+
private readonly identifyProtocolStr;
|
|
10
|
+
private readonly identifyPushProtocolStr;
|
|
11
|
+
readonly host: {
|
|
12
|
+
protocolVersion: string;
|
|
13
|
+
agentVersion: string;
|
|
14
|
+
};
|
|
15
|
+
private started;
|
|
16
|
+
private readonly timeout;
|
|
17
|
+
private readonly peerId;
|
|
18
|
+
private readonly peerStore;
|
|
19
|
+
private readonly registrar;
|
|
20
|
+
private readonly connectionManager;
|
|
21
|
+
private readonly addressManager;
|
|
22
|
+
private readonly maxInboundStreams;
|
|
23
|
+
private readonly maxOutboundStreams;
|
|
24
|
+
private readonly maxPushIncomingStreams;
|
|
25
|
+
private readonly maxPushOutgoingStreams;
|
|
26
|
+
private readonly maxIdentifyMessageSize;
|
|
27
|
+
private readonly maxObservedAddresses;
|
|
28
|
+
private readonly events;
|
|
29
|
+
private readonly runOnTransientConnection;
|
|
30
|
+
private readonly log;
|
|
31
|
+
constructor(components: IdentifyComponents, init?: IdentifyInit);
|
|
32
|
+
isStarted(): boolean;
|
|
33
|
+
start(): Promise<void>;
|
|
34
|
+
stop(): Promise<void>;
|
|
35
|
+
/**
|
|
36
|
+
* Send an Identify Push update to the list of connections
|
|
37
|
+
*/
|
|
38
|
+
pushToConnections(connections: Connection[]): Promise<void>;
|
|
39
|
+
/**
|
|
40
|
+
* Calls `push` on all peer connections
|
|
41
|
+
*/
|
|
42
|
+
push(): Promise<void>;
|
|
43
|
+
_identify(connection: Connection, options?: AbortOptions): Promise<IdentifyMessage>;
|
|
44
|
+
identify(connection: Connection, options?: AbortOptions): Promise<IdentifyResult>;
|
|
45
|
+
/**
|
|
46
|
+
* Sends the `Identify` response with the Signed Peer Record
|
|
47
|
+
* to the requesting peer over the given `connection`
|
|
48
|
+
*/
|
|
49
|
+
_handleIdentify(data: IncomingStreamData): Promise<void>;
|
|
50
|
+
/**
|
|
51
|
+
* Reads the Identify Push message from the given `connection`
|
|
52
|
+
*/
|
|
53
|
+
_handlePush(data: IncomingStreamData): Promise<void>;
|
|
54
|
+
}
|
|
55
|
+
//# sourceMappingURL=identify.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"identify.d.ts","sourceRoot":"","sources":["../../src/identify.ts"],"names":[],"mappings":"AAmBA,OAAO,EAAE,QAAQ,IAAI,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAC7D,OAAO,KAAK,EAAE,QAAQ,IAAI,iBAAiB,EAAE,kBAAkB,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AACjG,OAAO,KAAK,EAAgB,cAAc,EAAoB,YAAY,EAAU,MAAM,mBAAmB,CAAA;AAC7G,OAAO,KAAK,EAAE,UAAU,EAAU,MAAM,8BAA8B,CAAA;AAItE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAA;AAG5D,OAAO,KAAK,EAAE,kBAAkB,EAAa,MAAM,sCAAsC,CAAA;AAmBzF,qBAAa,QAAS,YAAW,SAAS,EAAE,iBAAiB;;IAC3D,OAAO,CAAC,QAAQ,CAAC,mBAAmB,CAAQ;IAC5C,OAAO,CAAC,QAAQ,CAAC,uBAAuB,CAAQ;IAChD,SAAgB,IAAI,EAAE;QACpB,eAAe,EAAE,MAAM,CAAA;QACvB,YAAY,EAAE,MAAM,CAAA;KACrB,CAAA;IAED,OAAO,CAAC,OAAO,CAAS;IACxB,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAQ;IAChC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAQ;IAC/B,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAW;IACrC,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAW;IACrC,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAmB;IACrD,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAgB;IAC/C,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAQ;IAC1C,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAAQ;IAC3C,OAAO,CAAC,QAAQ,CAAC,sBAAsB,CAAQ;IAC/C,OAAO,CAAC,QAAQ,CAAC,sBAAsB,CAAQ;IAC/C,OAAO,CAAC,QAAQ,CAAC,sBAAsB,CAAQ;IAC/C,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAQ;IAC7C,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAgC;IACvD,OAAO,CAAC,QAAQ,CAAC,wBAAwB,CAAS;IAClD,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAQ;gBAEf,UAAU,EAAE,kBAAkB,EAAE,IAAI,GAAE,YAAiB;IAkDpE,SAAS,IAAK,OAAO;IAIf,KAAK,IAAK,OAAO,CAAC,IAAI,CAAC;IAkCvB,IAAI,IAAK,OAAO,CAAC,IAAI,CAAC;IAO5B;;OAEG;IACG,iBAAiB,CAAE,WAAW,EAAE,UAAU,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IAmDlE;;OAEG;IACG,IAAI,IAAK,OAAO,CAAC,IAAI,CAAC;IA6BtB,SAAS,CAAE,UAAU,EAAE,UAAU,EAAE,OAAO,GAAE,YAAiB,GAAG,OAAO,CAAC,eAAe,CAAC;IAmCxF,QAAQ,CAAE,UAAU,EAAE,UAAU,EAAE,OAAO,GAAE,YAAiB,GAAG,OAAO,CAAC,cAAc,CAAC;IAqC5F;;;OAGG;IACG,eAAe,CAAE,IAAI,EAAE,kBAAkB,GAAG,OAAO,CAAC,IAAI,CAAC;IAoD/D;;OAEG;IACG,WAAW,CAAE,IAAI,EAAE,kBAAkB,GAAG,OAAO,CAAC,IAAI,CAAC;CAgK5D"}
|
|
@@ -0,0 +1,446 @@
|
|
|
1
|
+
/* eslint-disable complexity */
|
|
2
|
+
import { CodeError, ERR_NOT_FOUND } from '@libp2p/interface/errors';
|
|
3
|
+
import { setMaxListeners } from '@libp2p/interface/events';
|
|
4
|
+
import { peerIdFromKeys } from '@libp2p/peer-id';
|
|
5
|
+
import { RecordEnvelope, PeerRecord } from '@libp2p/peer-record';
|
|
6
|
+
import { multiaddr, protocols } from '@multiformats/multiaddr';
|
|
7
|
+
import { IP_OR_DOMAIN } from '@multiformats/multiaddr-matcher';
|
|
8
|
+
import { pbStream } from 'it-protobuf-stream';
|
|
9
|
+
import { fromString as uint8ArrayFromString } from 'uint8arrays/from-string';
|
|
10
|
+
import { toString as uint8ArrayToString } from 'uint8arrays/to-string';
|
|
11
|
+
import { isNode, isBrowser, isWebWorker, isElectronMain, isElectronRenderer, isReactNative } from 'wherearewe';
|
|
12
|
+
import { IDENTIFY_PROTOCOL_VERSION, MULTICODEC_IDENTIFY_PROTOCOL_NAME, MULTICODEC_IDENTIFY_PUSH_PROTOCOL_NAME, MULTICODEC_IDENTIFY_PROTOCOL_VERSION, MULTICODEC_IDENTIFY_PUSH_PROTOCOL_VERSION } from './consts.js';
|
|
13
|
+
import { Identify as IdentifyMessage } from './pb/message.js';
|
|
14
|
+
// https://github.com/libp2p/go-libp2p/blob/8d2e54e1637041d5cf4fac1e531287560bd1f4ac/p2p/protocol/identify/id.go#L52
|
|
15
|
+
const MAX_IDENTIFY_MESSAGE_SIZE = 1024 * 8;
|
|
16
|
+
const defaultValues = {
|
|
17
|
+
protocolPrefix: 'ipfs',
|
|
18
|
+
// https://github.com/libp2p/go-libp2p/blob/8d2e54e1637041d5cf4fac1e531287560bd1f4ac/p2p/protocol/identify/id.go#L48
|
|
19
|
+
timeout: 60000,
|
|
20
|
+
maxInboundStreams: 1,
|
|
21
|
+
maxOutboundStreams: 1,
|
|
22
|
+
maxPushIncomingStreams: 1,
|
|
23
|
+
maxPushOutgoingStreams: 1,
|
|
24
|
+
maxObservedAddresses: 10,
|
|
25
|
+
maxIdentifyMessageSize: 8192,
|
|
26
|
+
runOnConnectionOpen: true,
|
|
27
|
+
runOnTransientConnection: true
|
|
28
|
+
};
|
|
29
|
+
export class Identify {
|
|
30
|
+
identifyProtocolStr;
|
|
31
|
+
identifyPushProtocolStr;
|
|
32
|
+
host;
|
|
33
|
+
started;
|
|
34
|
+
timeout;
|
|
35
|
+
peerId;
|
|
36
|
+
peerStore;
|
|
37
|
+
registrar;
|
|
38
|
+
connectionManager;
|
|
39
|
+
addressManager;
|
|
40
|
+
maxInboundStreams;
|
|
41
|
+
maxOutboundStreams;
|
|
42
|
+
maxPushIncomingStreams;
|
|
43
|
+
maxPushOutgoingStreams;
|
|
44
|
+
maxIdentifyMessageSize;
|
|
45
|
+
maxObservedAddresses;
|
|
46
|
+
events;
|
|
47
|
+
runOnTransientConnection;
|
|
48
|
+
log;
|
|
49
|
+
constructor(components, init = {}) {
|
|
50
|
+
this.started = false;
|
|
51
|
+
this.peerId = components.peerId;
|
|
52
|
+
this.peerStore = components.peerStore;
|
|
53
|
+
this.registrar = components.registrar;
|
|
54
|
+
this.addressManager = components.addressManager;
|
|
55
|
+
this.connectionManager = components.connectionManager;
|
|
56
|
+
this.events = components.events;
|
|
57
|
+
this.log = components.logger.forComponent('libp2p:identify');
|
|
58
|
+
this.identifyProtocolStr = `/${init.protocolPrefix ?? defaultValues.protocolPrefix}/${MULTICODEC_IDENTIFY_PROTOCOL_NAME}/${MULTICODEC_IDENTIFY_PROTOCOL_VERSION}`;
|
|
59
|
+
this.identifyPushProtocolStr = `/${init.protocolPrefix ?? defaultValues.protocolPrefix}/${MULTICODEC_IDENTIFY_PUSH_PROTOCOL_NAME}/${MULTICODEC_IDENTIFY_PUSH_PROTOCOL_VERSION}`;
|
|
60
|
+
this.timeout = init.timeout ?? defaultValues.timeout;
|
|
61
|
+
this.maxInboundStreams = init.maxInboundStreams ?? defaultValues.maxInboundStreams;
|
|
62
|
+
this.maxOutboundStreams = init.maxOutboundStreams ?? defaultValues.maxOutboundStreams;
|
|
63
|
+
this.maxPushIncomingStreams = init.maxPushIncomingStreams ?? defaultValues.maxPushIncomingStreams;
|
|
64
|
+
this.maxPushOutgoingStreams = init.maxPushOutgoingStreams ?? defaultValues.maxPushOutgoingStreams;
|
|
65
|
+
this.maxIdentifyMessageSize = init.maxIdentifyMessageSize ?? defaultValues.maxIdentifyMessageSize;
|
|
66
|
+
this.maxObservedAddresses = init.maxObservedAddresses ?? defaultValues.maxObservedAddresses;
|
|
67
|
+
this.runOnTransientConnection = init.runOnTransientConnection ?? defaultValues.runOnTransientConnection;
|
|
68
|
+
// Store self host metadata
|
|
69
|
+
this.host = {
|
|
70
|
+
protocolVersion: `${init.protocolPrefix ?? defaultValues.protocolPrefix}/${IDENTIFY_PROTOCOL_VERSION}`,
|
|
71
|
+
agentVersion: init.agentVersion ?? `${components.nodeInfo.name}/${components.nodeInfo.version}`
|
|
72
|
+
};
|
|
73
|
+
if (init.runOnConnectionOpen ?? defaultValues.runOnConnectionOpen) {
|
|
74
|
+
// When a new connection happens, trigger identify
|
|
75
|
+
components.events.addEventListener('connection:open', (evt) => {
|
|
76
|
+
const connection = evt.detail;
|
|
77
|
+
this.identify(connection).catch(err => { this.log.error('error during identify trigged by connection:open', err); });
|
|
78
|
+
});
|
|
79
|
+
}
|
|
80
|
+
// When self peer record changes, trigger identify-push
|
|
81
|
+
components.events.addEventListener('self:peer:update', (evt) => {
|
|
82
|
+
void this.push().catch(err => { this.log.error(err); });
|
|
83
|
+
});
|
|
84
|
+
// Append user agent version to default AGENT_VERSION depending on the environment
|
|
85
|
+
if (this.host.agentVersion === `${components.nodeInfo.name}/${components.nodeInfo.version}`) {
|
|
86
|
+
if (isNode || isElectronMain) {
|
|
87
|
+
this.host.agentVersion += ` UserAgent=${globalThis.process.version}`;
|
|
88
|
+
}
|
|
89
|
+
else if (isBrowser || isWebWorker || isElectronRenderer || isReactNative) {
|
|
90
|
+
this.host.agentVersion += ` UserAgent=${globalThis.navigator.userAgent}`;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
isStarted() {
|
|
95
|
+
return this.started;
|
|
96
|
+
}
|
|
97
|
+
async start() {
|
|
98
|
+
if (this.started) {
|
|
99
|
+
return;
|
|
100
|
+
}
|
|
101
|
+
await this.peerStore.merge(this.peerId, {
|
|
102
|
+
metadata: {
|
|
103
|
+
AgentVersion: uint8ArrayFromString(this.host.agentVersion),
|
|
104
|
+
ProtocolVersion: uint8ArrayFromString(this.host.protocolVersion)
|
|
105
|
+
}
|
|
106
|
+
});
|
|
107
|
+
await this.registrar.handle(this.identifyProtocolStr, (data) => {
|
|
108
|
+
void this._handleIdentify(data).catch(err => {
|
|
109
|
+
this.log.error(err);
|
|
110
|
+
});
|
|
111
|
+
}, {
|
|
112
|
+
maxInboundStreams: this.maxInboundStreams,
|
|
113
|
+
maxOutboundStreams: this.maxOutboundStreams,
|
|
114
|
+
runOnTransientConnection: this.runOnTransientConnection
|
|
115
|
+
});
|
|
116
|
+
await this.registrar.handle(this.identifyPushProtocolStr, (data) => {
|
|
117
|
+
void this._handlePush(data).catch(err => {
|
|
118
|
+
this.log.error(err);
|
|
119
|
+
});
|
|
120
|
+
}, {
|
|
121
|
+
maxInboundStreams: this.maxPushIncomingStreams,
|
|
122
|
+
maxOutboundStreams: this.maxPushOutgoingStreams,
|
|
123
|
+
runOnTransientConnection: this.runOnTransientConnection
|
|
124
|
+
});
|
|
125
|
+
this.started = true;
|
|
126
|
+
}
|
|
127
|
+
async stop() {
|
|
128
|
+
await this.registrar.unhandle(this.identifyProtocolStr);
|
|
129
|
+
await this.registrar.unhandle(this.identifyPushProtocolStr);
|
|
130
|
+
this.started = false;
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* Send an Identify Push update to the list of connections
|
|
134
|
+
*/
|
|
135
|
+
async pushToConnections(connections) {
|
|
136
|
+
const listenAddresses = this.addressManager.getAddresses().map(ma => ma.decapsulateCode(protocols('p2p').code));
|
|
137
|
+
const peerRecord = new PeerRecord({
|
|
138
|
+
peerId: this.peerId,
|
|
139
|
+
multiaddrs: listenAddresses
|
|
140
|
+
});
|
|
141
|
+
const signedPeerRecord = await RecordEnvelope.seal(peerRecord, this.peerId);
|
|
142
|
+
const supportedProtocols = this.registrar.getProtocols();
|
|
143
|
+
const peer = await this.peerStore.get(this.peerId);
|
|
144
|
+
const agentVersion = uint8ArrayToString(peer.metadata.get('AgentVersion') ?? uint8ArrayFromString(this.host.agentVersion));
|
|
145
|
+
const protocolVersion = uint8ArrayToString(peer.metadata.get('ProtocolVersion') ?? uint8ArrayFromString(this.host.protocolVersion));
|
|
146
|
+
const pushes = connections.map(async (connection) => {
|
|
147
|
+
let stream;
|
|
148
|
+
const signal = AbortSignal.timeout(this.timeout);
|
|
149
|
+
setMaxListeners(Infinity, signal);
|
|
150
|
+
try {
|
|
151
|
+
stream = await connection.newStream(this.identifyPushProtocolStr, {
|
|
152
|
+
signal,
|
|
153
|
+
runOnTransientConnection: this.runOnTransientConnection
|
|
154
|
+
});
|
|
155
|
+
const pb = pbStream(stream, {
|
|
156
|
+
maxDataLength: this.maxIdentifyMessageSize ?? MAX_IDENTIFY_MESSAGE_SIZE
|
|
157
|
+
}).pb(IdentifyMessage);
|
|
158
|
+
await pb.write({
|
|
159
|
+
listenAddrs: listenAddresses.map(ma => ma.bytes),
|
|
160
|
+
signedPeerRecord: signedPeerRecord.marshal(),
|
|
161
|
+
protocols: supportedProtocols,
|
|
162
|
+
agentVersion,
|
|
163
|
+
protocolVersion
|
|
164
|
+
}, {
|
|
165
|
+
signal
|
|
166
|
+
});
|
|
167
|
+
await stream.close({
|
|
168
|
+
signal
|
|
169
|
+
});
|
|
170
|
+
}
|
|
171
|
+
catch (err) {
|
|
172
|
+
// Just log errors
|
|
173
|
+
this.log.error('could not push identify update to peer', err);
|
|
174
|
+
stream?.abort(err);
|
|
175
|
+
}
|
|
176
|
+
});
|
|
177
|
+
await Promise.all(pushes);
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* Calls `push` on all peer connections
|
|
181
|
+
*/
|
|
182
|
+
async push() {
|
|
183
|
+
// Do not try to push if we are not running
|
|
184
|
+
if (!this.isStarted()) {
|
|
185
|
+
return;
|
|
186
|
+
}
|
|
187
|
+
const connections = [];
|
|
188
|
+
await Promise.all(this.connectionManager.getConnections().map(async (conn) => {
|
|
189
|
+
try {
|
|
190
|
+
const peer = await this.peerStore.get(conn.remotePeer);
|
|
191
|
+
if (!peer.protocols.includes(this.identifyPushProtocolStr)) {
|
|
192
|
+
return;
|
|
193
|
+
}
|
|
194
|
+
connections.push(conn);
|
|
195
|
+
}
|
|
196
|
+
catch (err) {
|
|
197
|
+
if (err.code !== ERR_NOT_FOUND) {
|
|
198
|
+
throw err;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}));
|
|
202
|
+
await this.pushToConnections(connections);
|
|
203
|
+
}
|
|
204
|
+
async _identify(connection, options = {}) {
|
|
205
|
+
let stream;
|
|
206
|
+
if (options.signal == null) {
|
|
207
|
+
const signal = AbortSignal.timeout(this.timeout);
|
|
208
|
+
setMaxListeners(Infinity, signal);
|
|
209
|
+
options = {
|
|
210
|
+
...options,
|
|
211
|
+
signal
|
|
212
|
+
};
|
|
213
|
+
}
|
|
214
|
+
try {
|
|
215
|
+
stream = await connection.newStream(this.identifyProtocolStr, {
|
|
216
|
+
...options,
|
|
217
|
+
runOnTransientConnection: this.runOnTransientConnection
|
|
218
|
+
});
|
|
219
|
+
const pb = pbStream(stream, {
|
|
220
|
+
maxDataLength: this.maxIdentifyMessageSize ?? MAX_IDENTIFY_MESSAGE_SIZE
|
|
221
|
+
}).pb(IdentifyMessage);
|
|
222
|
+
const message = await pb.read(options);
|
|
223
|
+
await stream.close(options);
|
|
224
|
+
return message;
|
|
225
|
+
}
|
|
226
|
+
catch (err) {
|
|
227
|
+
this.log.error('error while reading identify message', err);
|
|
228
|
+
stream?.abort(err);
|
|
229
|
+
throw err;
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
async identify(connection, options = {}) {
|
|
233
|
+
const message = await this._identify(connection, options);
|
|
234
|
+
const { publicKey, protocols, observedAddr } = message;
|
|
235
|
+
if (publicKey == null) {
|
|
236
|
+
throw new CodeError('public key was missing from identify message', 'ERR_MISSING_PUBLIC_KEY');
|
|
237
|
+
}
|
|
238
|
+
const id = await peerIdFromKeys(publicKey);
|
|
239
|
+
if (!connection.remotePeer.equals(id)) {
|
|
240
|
+
throw new CodeError('identified peer does not match the expected peer', 'ERR_INVALID_PEER');
|
|
241
|
+
}
|
|
242
|
+
if (this.peerId.equals(id)) {
|
|
243
|
+
throw new CodeError('identified peer is our own peer id?', 'ERR_INVALID_PEER');
|
|
244
|
+
}
|
|
245
|
+
// Get the observedAddr if there is one
|
|
246
|
+
const cleanObservedAddr = getCleanMultiaddr(observedAddr);
|
|
247
|
+
this.log('identify completed for peer %p and protocols %o', id, protocols);
|
|
248
|
+
this.log('our observed address is %a', cleanObservedAddr);
|
|
249
|
+
if (cleanObservedAddr != null &&
|
|
250
|
+
this.addressManager.getObservedAddrs().length < (this.maxObservedAddresses ?? Infinity)) {
|
|
251
|
+
this.log('storing our observed address %a', cleanObservedAddr);
|
|
252
|
+
this.addressManager.addObservedAddr(cleanObservedAddr);
|
|
253
|
+
}
|
|
254
|
+
return this.#consumeIdentifyMessage(connection, message);
|
|
255
|
+
}
|
|
256
|
+
/**
|
|
257
|
+
* Sends the `Identify` response with the Signed Peer Record
|
|
258
|
+
* to the requesting peer over the given `connection`
|
|
259
|
+
*/
|
|
260
|
+
async _handleIdentify(data) {
|
|
261
|
+
const { connection, stream } = data;
|
|
262
|
+
const signal = AbortSignal.timeout(this.timeout);
|
|
263
|
+
setMaxListeners(Infinity, signal);
|
|
264
|
+
try {
|
|
265
|
+
const publicKey = this.peerId.publicKey ?? new Uint8Array(0);
|
|
266
|
+
const peerData = await this.peerStore.get(this.peerId);
|
|
267
|
+
const multiaddrs = this.addressManager.getAddresses().map(ma => ma.decapsulateCode(protocols('p2p').code));
|
|
268
|
+
let signedPeerRecord = peerData.peerRecordEnvelope;
|
|
269
|
+
if (multiaddrs.length > 0 && signedPeerRecord == null) {
|
|
270
|
+
const peerRecord = new PeerRecord({
|
|
271
|
+
peerId: this.peerId,
|
|
272
|
+
multiaddrs
|
|
273
|
+
});
|
|
274
|
+
const envelope = await RecordEnvelope.seal(peerRecord, this.peerId);
|
|
275
|
+
signedPeerRecord = envelope.marshal().subarray();
|
|
276
|
+
}
|
|
277
|
+
let observedAddr = connection.remoteAddr.bytes;
|
|
278
|
+
if (!IP_OR_DOMAIN.matches(connection.remoteAddr)) {
|
|
279
|
+
observedAddr = undefined;
|
|
280
|
+
}
|
|
281
|
+
const pb = pbStream(stream).pb(IdentifyMessage);
|
|
282
|
+
await pb.write({
|
|
283
|
+
protocolVersion: this.host.protocolVersion,
|
|
284
|
+
agentVersion: this.host.agentVersion,
|
|
285
|
+
publicKey,
|
|
286
|
+
listenAddrs: multiaddrs.map(addr => addr.bytes),
|
|
287
|
+
signedPeerRecord,
|
|
288
|
+
observedAddr,
|
|
289
|
+
protocols: peerData.protocols
|
|
290
|
+
}, {
|
|
291
|
+
signal
|
|
292
|
+
});
|
|
293
|
+
await stream.close({
|
|
294
|
+
signal
|
|
295
|
+
});
|
|
296
|
+
}
|
|
297
|
+
catch (err) {
|
|
298
|
+
this.log.error('could not respond to identify request', err);
|
|
299
|
+
stream.abort(err);
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
/**
|
|
303
|
+
* Reads the Identify Push message from the given `connection`
|
|
304
|
+
*/
|
|
305
|
+
async _handlePush(data) {
|
|
306
|
+
const { connection, stream } = data;
|
|
307
|
+
try {
|
|
308
|
+
if (this.peerId.equals(connection.remotePeer)) {
|
|
309
|
+
throw new Error('received push from ourselves?');
|
|
310
|
+
}
|
|
311
|
+
const options = {
|
|
312
|
+
signal: AbortSignal.timeout(this.timeout)
|
|
313
|
+
};
|
|
314
|
+
const pb = pbStream(stream, {
|
|
315
|
+
maxDataLength: this.maxIdentifyMessageSize ?? MAX_IDENTIFY_MESSAGE_SIZE
|
|
316
|
+
}).pb(IdentifyMessage);
|
|
317
|
+
const message = await pb.read(options);
|
|
318
|
+
await stream.close(options);
|
|
319
|
+
await this.#consumeIdentifyMessage(connection, message);
|
|
320
|
+
}
|
|
321
|
+
catch (err) {
|
|
322
|
+
this.log.error('received invalid message', err);
|
|
323
|
+
stream.abort(err);
|
|
324
|
+
return;
|
|
325
|
+
}
|
|
326
|
+
this.log('handled push from %p', connection.remotePeer);
|
|
327
|
+
}
|
|
328
|
+
async #consumeIdentifyMessage(connection, message) {
|
|
329
|
+
this.log('received identify from %p', connection.remotePeer);
|
|
330
|
+
if (message == null) {
|
|
331
|
+
throw new CodeError('message was null or undefined', 'ERR_INVALID_MESSAGE');
|
|
332
|
+
}
|
|
333
|
+
const peer = {};
|
|
334
|
+
if (message.listenAddrs.length > 0) {
|
|
335
|
+
peer.addresses = message.listenAddrs.map(buf => ({
|
|
336
|
+
isCertified: false,
|
|
337
|
+
multiaddr: multiaddr(buf)
|
|
338
|
+
}));
|
|
339
|
+
}
|
|
340
|
+
if (message.protocols.length > 0) {
|
|
341
|
+
peer.protocols = message.protocols;
|
|
342
|
+
}
|
|
343
|
+
if (message.publicKey != null) {
|
|
344
|
+
peer.publicKey = message.publicKey;
|
|
345
|
+
const peerId = await peerIdFromKeys(message.publicKey);
|
|
346
|
+
if (!peerId.equals(connection.remotePeer)) {
|
|
347
|
+
throw new CodeError('public key did not match remote PeerId', 'ERR_INVALID_PUBLIC_KEY');
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
let output;
|
|
351
|
+
// if the peer record has been sent, prefer the addresses in the record as they are signed by the remote peer
|
|
352
|
+
if (message.signedPeerRecord != null) {
|
|
353
|
+
this.log('received signedPeerRecord from %p', connection.remotePeer);
|
|
354
|
+
let peerRecordEnvelope = message.signedPeerRecord;
|
|
355
|
+
const envelope = await RecordEnvelope.openAndCertify(peerRecordEnvelope, PeerRecord.DOMAIN);
|
|
356
|
+
let peerRecord = PeerRecord.createFromProtobuf(envelope.payload);
|
|
357
|
+
// Verify peerId
|
|
358
|
+
if (!peerRecord.peerId.equals(envelope.peerId)) {
|
|
359
|
+
throw new CodeError('signing key does not match PeerId in the PeerRecord', 'ERR_INVALID_SIGNING_KEY');
|
|
360
|
+
}
|
|
361
|
+
// Make sure remote peer is the one sending the record
|
|
362
|
+
if (!connection.remotePeer.equals(peerRecord.peerId)) {
|
|
363
|
+
throw new CodeError('signing key does not match remote PeerId', 'ERR_INVALID_PEER_RECORD_KEY');
|
|
364
|
+
}
|
|
365
|
+
let existingPeer;
|
|
366
|
+
try {
|
|
367
|
+
existingPeer = await this.peerStore.get(peerRecord.peerId);
|
|
368
|
+
}
|
|
369
|
+
catch (err) {
|
|
370
|
+
if (err.code !== 'ERR_NOT_FOUND') {
|
|
371
|
+
throw err;
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
if (existingPeer != null) {
|
|
375
|
+
// don't lose any existing metadata
|
|
376
|
+
peer.metadata = existingPeer.metadata;
|
|
377
|
+
// if we have previously received a signed record for this peer, compare it to the incoming one
|
|
378
|
+
if (existingPeer.peerRecordEnvelope != null) {
|
|
379
|
+
const storedEnvelope = await RecordEnvelope.createFromProtobuf(existingPeer.peerRecordEnvelope);
|
|
380
|
+
const storedRecord = PeerRecord.createFromProtobuf(storedEnvelope.payload);
|
|
381
|
+
// ensure seq is greater than, or equal to, the last received
|
|
382
|
+
if (storedRecord.seqNumber >= peerRecord.seqNumber) {
|
|
383
|
+
this.log('sequence number was lower or equal to existing sequence number - stored: %d received: %d', storedRecord.seqNumber, peerRecord.seqNumber);
|
|
384
|
+
peerRecord = storedRecord;
|
|
385
|
+
peerRecordEnvelope = existingPeer.peerRecordEnvelope;
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
// store the signed record for next time
|
|
390
|
+
peer.peerRecordEnvelope = peerRecordEnvelope;
|
|
391
|
+
// override the stored addresses with the signed multiaddrs
|
|
392
|
+
peer.addresses = peerRecord.multiaddrs.map(multiaddr => ({
|
|
393
|
+
isCertified: true,
|
|
394
|
+
multiaddr
|
|
395
|
+
}));
|
|
396
|
+
output = {
|
|
397
|
+
seq: peerRecord.seqNumber,
|
|
398
|
+
addresses: peerRecord.multiaddrs
|
|
399
|
+
};
|
|
400
|
+
}
|
|
401
|
+
else {
|
|
402
|
+
this.log('%p did not send a signed peer record', connection.remotePeer);
|
|
403
|
+
}
|
|
404
|
+
this.log('patching %p with', connection.remotePeer, peer);
|
|
405
|
+
await this.peerStore.patch(connection.remotePeer, peer);
|
|
406
|
+
if (message.agentVersion != null || message.protocolVersion != null) {
|
|
407
|
+
const metadata = {};
|
|
408
|
+
if (message.agentVersion != null) {
|
|
409
|
+
metadata.AgentVersion = uint8ArrayFromString(message.agentVersion);
|
|
410
|
+
}
|
|
411
|
+
if (message.protocolVersion != null) {
|
|
412
|
+
metadata.ProtocolVersion = uint8ArrayFromString(message.protocolVersion);
|
|
413
|
+
}
|
|
414
|
+
this.log('merging %p metadata', connection.remotePeer, metadata);
|
|
415
|
+
await this.peerStore.merge(connection.remotePeer, {
|
|
416
|
+
metadata
|
|
417
|
+
});
|
|
418
|
+
}
|
|
419
|
+
const result = {
|
|
420
|
+
peerId: connection.remotePeer,
|
|
421
|
+
protocolVersion: message.protocolVersion,
|
|
422
|
+
agentVersion: message.agentVersion,
|
|
423
|
+
publicKey: message.publicKey,
|
|
424
|
+
listenAddrs: message.listenAddrs.map(buf => multiaddr(buf)),
|
|
425
|
+
observedAddr: message.observedAddr == null ? undefined : multiaddr(message.observedAddr),
|
|
426
|
+
protocols: message.protocols,
|
|
427
|
+
signedPeerRecord: output,
|
|
428
|
+
connection
|
|
429
|
+
};
|
|
430
|
+
this.events.safeDispatchEvent('peer:identify', { detail: result });
|
|
431
|
+
return result;
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
/**
|
|
435
|
+
* Takes the `addr` and converts it to a Multiaddr if possible
|
|
436
|
+
*/
|
|
437
|
+
function getCleanMultiaddr(addr) {
|
|
438
|
+
if (addr != null && addr.length > 0) {
|
|
439
|
+
try {
|
|
440
|
+
return multiaddr(addr);
|
|
441
|
+
}
|
|
442
|
+
catch {
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
//# sourceMappingURL=identify.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"identify.js","sourceRoot":"","sources":["../../src/identify.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
*
|
|
4
|
+
* Use the `identify` function to add support for the [Identify protocol](https://github.com/libp2p/specs/blob/master/identify/README.md) to libp2p.
|
|
5
|
+
*
|
|
6
|
+
* @example
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import { createLibp2p } from 'libp2p'
|
|
10
|
+
* import { identify } from '@libp2p/identify'
|
|
11
|
+
*
|
|
12
|
+
* const node = await createLibp2p({
|
|
13
|
+
* // ...other options
|
|
14
|
+
* services: {
|
|
15
|
+
* identify: identify()
|
|
16
|
+
* }
|
|
17
|
+
* })
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
import type { AbortOptions, IdentifyResult, Libp2pEvents, ComponentLogger, NodeInfo } from '@libp2p/interface';
|
|
21
|
+
import type { TypedEventTarget } from '@libp2p/interface/events';
|
|
22
|
+
import type { PeerId } from '@libp2p/interface/peer-id';
|
|
23
|
+
import type { PeerStore } from '@libp2p/interface/peer-store';
|
|
24
|
+
import type { Connection } from '@libp2p/interface/src/connection/index.js';
|
|
25
|
+
import type { AddressManager } from '@libp2p/interface-internal/address-manager';
|
|
26
|
+
import type { ConnectionManager } from '@libp2p/interface-internal/connection-manager';
|
|
27
|
+
import type { Registrar } from '@libp2p/interface-internal/registrar';
|
|
28
|
+
export interface IdentifyInit {
|
|
29
|
+
/**
|
|
30
|
+
* The prefix to use for the protocol (default: 'ipfs')
|
|
31
|
+
*/
|
|
32
|
+
protocolPrefix?: string;
|
|
33
|
+
/**
|
|
34
|
+
* What details we should send as part of an identify message
|
|
35
|
+
*/
|
|
36
|
+
agentVersion?: string;
|
|
37
|
+
/**
|
|
38
|
+
* How long we should wait for a remote peer to send their identify response
|
|
39
|
+
*/
|
|
40
|
+
timeout?: number;
|
|
41
|
+
/**
|
|
42
|
+
* Identify responses larger than this in bytes will be rejected (default: 8192)
|
|
43
|
+
*/
|
|
44
|
+
maxIdentifyMessageSize?: number;
|
|
45
|
+
maxInboundStreams?: number;
|
|
46
|
+
maxOutboundStreams?: number;
|
|
47
|
+
maxPushIncomingStreams?: number;
|
|
48
|
+
maxPushOutgoingStreams?: number;
|
|
49
|
+
maxObservedAddresses?: number;
|
|
50
|
+
/**
|
|
51
|
+
* Whether to automatically dial identify on newly opened connections (default: true)
|
|
52
|
+
*/
|
|
53
|
+
runOnConnectionOpen?: boolean;
|
|
54
|
+
/**
|
|
55
|
+
* Whether to run on connections with data or duration limits (default: true)
|
|
56
|
+
*/
|
|
57
|
+
runOnTransientConnection?: boolean;
|
|
58
|
+
}
|
|
59
|
+
export interface IdentifyComponents {
|
|
60
|
+
peerId: PeerId;
|
|
61
|
+
peerStore: PeerStore;
|
|
62
|
+
connectionManager: ConnectionManager;
|
|
63
|
+
registrar: Registrar;
|
|
64
|
+
addressManager: AddressManager;
|
|
65
|
+
events: TypedEventTarget<Libp2pEvents>;
|
|
66
|
+
logger: ComponentLogger;
|
|
67
|
+
nodeInfo: NodeInfo;
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* The protocols the Identify service supports
|
|
71
|
+
*/
|
|
72
|
+
export declare const multicodecs: {
|
|
73
|
+
IDENTIFY: string;
|
|
74
|
+
IDENTIFY_PUSH: string;
|
|
75
|
+
};
|
|
76
|
+
export interface Identify {
|
|
77
|
+
/**
|
|
78
|
+
* due to the default limits on inbound/outbound streams for this protocol,
|
|
79
|
+
* invoking this method when runOnConnectionOpen is true can lead to unpredictable results
|
|
80
|
+
* as streams may be closed by the local or the remote node.
|
|
81
|
+
* Please use with caution. If you find yourself needing to call this method to discover other peers that support your protocol,
|
|
82
|
+
* you may be better off configuring a topology to be notified instead.
|
|
83
|
+
*/
|
|
84
|
+
identify(connection: Connection, options?: AbortOptions): Promise<IdentifyResult>;
|
|
85
|
+
push(): Promise<void>;
|
|
86
|
+
}
|
|
87
|
+
export declare function identify(init?: IdentifyInit): (components: IdentifyComponents) => Identify;
|
|
88
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;GAkBG;AAOH,OAAO,KAAK,EAAE,YAAY,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAA;AAC9G,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAA;AAChE,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,2BAA2B,CAAA;AACvD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,8BAA8B,CAAA;AAC7D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,2CAA2C,CAAA;AAC3E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAA;AAChF,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,+CAA+C,CAAA;AACtF,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sCAAsC,CAAA;AAErE,MAAM,WAAW,YAAY;IAC3B;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAA;IAEvB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAA;IAErB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAA;IAEhB;;OAEG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAA;IAE/B,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAE3B,sBAAsB,CAAC,EAAE,MAAM,CAAA;IAC/B,sBAAsB,CAAC,EAAE,MAAM,CAAA;IAC/B,oBAAoB,CAAC,EAAE,MAAM,CAAA;IAE7B;;OAEG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAA;IAE7B;;OAEG;IACH,wBAAwB,CAAC,EAAE,OAAO,CAAA;CACnC;AAED,MAAM,WAAW,kBAAkB;IACjC,MAAM,EAAE,MAAM,CAAA;IACd,SAAS,EAAE,SAAS,CAAA;IACpB,iBAAiB,EAAE,iBAAiB,CAAA;IACpC,SAAS,EAAE,SAAS,CAAA;IACpB,cAAc,EAAE,cAAc,CAAA;IAC9B,MAAM,EAAE,gBAAgB,CAAC,YAAY,CAAC,CAAA;IACtC,MAAM,EAAE,eAAe,CAAA;IACvB,QAAQ,EAAE,QAAQ,CAAA;CACnB;AAED;;GAEG;AACH,eAAO,MAAM,WAAW;;;CAGvB,CAAA;AAED,MAAM,WAAW,QAAQ;IACvB;;;;;;OAMG;IACH,QAAQ,CAAC,UAAU,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,YAAY,GAAG,OAAO,CAAC,cAAc,CAAC,CAAA;IAEjF,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC,CAAA;CACtB;AAED,wBAAgB,QAAQ,CAAE,IAAI,GAAE,YAAiB,GAAG,CAAC,UAAU,EAAE,kBAAkB,KAAK,QAAQ,CAE/F"}
|