-
Notifications
You must be signed in to change notification settings - Fork 208
/
Copy pathMessageSender.ts
420 lines (374 loc) · 16.1 KB
/
MessageSender.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
import type { ConnectionRecord } from '../modules/connections'
import type { ResolvedDidCommService } from '../modules/didcomm'
import type { DidDocument, Key } from '../modules/dids'
import type { OutOfBandRecord } from '../modules/oob/repository'
import type { OutboundTransport } from '../transport/OutboundTransport'
import type { OutboundMessage, OutboundPackage, EncryptedMessage } from '../types'
import type { AgentMessage } from './AgentMessage'
import type { EnvelopeKeys } from './EnvelopeService'
import type { TransportSession } from './TransportService'
import { DID_COMM_TRANSPORT_QUEUE, InjectionSymbols } from '../constants'
import { ReturnRouteTypes } from '../decorators/transport/TransportDecorator'
import { AriesFrameworkError } from '../error'
import { Logger } from '../logger'
import { DidCommDocumentService } from '../modules/didcomm'
import { getKeyDidMappingByVerificationMethod } from '../modules/dids/domain/key-type'
import { didKeyToInstanceOfKey } from '../modules/dids/helpers'
import { DidResolverService } from '../modules/dids/services/DidResolverService'
import { inject, injectable } from '../plugins'
import { MessageRepository } from '../storage/MessageRepository'
import { MessageValidator } from '../utils/MessageValidator'
import { getProtocolScheme } from '../utils/uri'
import { EnvelopeService } from './EnvelopeService'
import { TransportService } from './TransportService'
export interface TransportPriorityOptions {
schemes: string[]
restrictive?: boolean
}
@injectable()
export class MessageSender {
private envelopeService: EnvelopeService
private transportService: TransportService
private messageRepository: MessageRepository
private logger: Logger
private didResolverService: DidResolverService
private didCommDocumentService: DidCommDocumentService
public readonly outboundTransports: OutboundTransport[] = []
public constructor(
envelopeService: EnvelopeService,
transportService: TransportService,
@inject(InjectionSymbols.MessageRepository) messageRepository: MessageRepository,
@inject(InjectionSymbols.Logger) logger: Logger,
didResolverService: DidResolverService,
didCommDocumentService: DidCommDocumentService
) {
this.envelopeService = envelopeService
this.transportService = transportService
this.messageRepository = messageRepository
this.logger = logger
this.didResolverService = didResolverService
this.didCommDocumentService = didCommDocumentService
this.outboundTransports = []
}
public registerOutboundTransport(outboundTransport: OutboundTransport) {
this.outboundTransports.push(outboundTransport)
}
public async packMessage({
keys,
message,
endpoint,
}: {
keys: EnvelopeKeys
message: AgentMessage
endpoint: string
}): Promise<OutboundPackage> {
const encryptedMessage = await this.envelopeService.packMessage(message, keys)
return {
payload: encryptedMessage,
responseRequested: message.hasAnyReturnRoute(),
endpoint,
}
}
private async sendMessageToSession(session: TransportSession, message: AgentMessage) {
this.logger.debug(`Existing ${session.type} transport session has been found.`)
if (!session.keys) {
throw new AriesFrameworkError(`There are no keys for the given ${session.type} transport session.`)
}
const encryptedMessage = await this.envelopeService.packMessage(message, session.keys)
await session.send(encryptedMessage)
}
public async sendPackage({
connection,
encryptedMessage,
options,
}: {
connection: ConnectionRecord
encryptedMessage: EncryptedMessage
options?: { transportPriority?: TransportPriorityOptions }
}) {
const errors: Error[] = []
// Try to send to already open session
const session = this.transportService.findSessionByConnectionId(connection.id)
if (session?.inboundMessage?.hasReturnRouting()) {
try {
await session.send(encryptedMessage)
return
} catch (error) {
errors.push(error)
this.logger.debug(`Sending packed message via session failed with error: ${error.message}.`, error)
}
}
// Retrieve DIDComm services
const { services, queueService } = await this.retrieveServicesByConnection(connection, options?.transportPriority)
if (this.outboundTransports.length === 0 && !queueService) {
throw new AriesFrameworkError('Agent has no outbound transport!')
}
// Loop trough all available services and try to send the message
for await (const service of services) {
this.logger.debug(`Sending outbound message to service:`, { service })
try {
const protocolScheme = getProtocolScheme(service.serviceEndpoint)
for (const transport of this.outboundTransports) {
if (transport.supportedSchemes.includes(protocolScheme)) {
await transport.sendMessage({
payload: encryptedMessage,
endpoint: service.serviceEndpoint,
connectionId: connection.id,
})
break
}
}
return
} catch (error) {
this.logger.debug(
`Sending outbound message to service with id ${service.id} failed with the following error:`,
{
message: error.message,
error: error,
}
)
}
}
// We didn't succeed to send the message over open session, or directly to serviceEndpoint
// If the other party shared a queue service endpoint in their did doc we queue the message
if (queueService) {
this.logger.debug(`Queue packed message for connection ${connection.id} (${connection.theirLabel})`)
this.messageRepository.add(connection.id, encryptedMessage)
return
}
// Message is undeliverable
this.logger.error(`Message is undeliverable to connection ${connection.id} (${connection.theirLabel})`, {
message: encryptedMessage,
errors,
connection,
})
throw new AriesFrameworkError(`Message is undeliverable to connection ${connection.id} (${connection.theirLabel})`)
}
public async sendMessage(
outboundMessage: OutboundMessage,
options?: {
transportPriority?: TransportPriorityOptions
}
) {
const { connection, outOfBand, sessionId, payload } = outboundMessage
const errors: Error[] = []
this.logger.debug('Send outbound message', {
message: payload,
connectionId: connection.id,
})
let session: TransportSession | undefined
if (sessionId) {
session = this.transportService.findSessionById(sessionId)
}
if (!session) {
// Try to send to already open session
session = this.transportService.findSessionByConnectionId(connection.id)
}
if (session?.inboundMessage?.hasReturnRouting(payload.threadId)) {
this.logger.debug(`Found session with return routing for message '${payload.id}' (connection '${connection.id}'`)
try {
await this.sendMessageToSession(session, payload)
return
} catch (error) {
errors.push(error)
this.logger.debug(`Sending an outbound message via session failed with error: ${error.message}.`, error)
}
}
// Retrieve DIDComm services
const { services, queueService } = await this.retrieveServicesByConnection(
connection,
options?.transportPriority,
outOfBand
)
if (!connection.did) {
this.logger.error(`Unable to send message using connection '${connection.id}' that doesn't have a did`)
throw new AriesFrameworkError(
`Unable to send message using connection '${connection.id}' that doesn't have a did`
)
}
const ourDidDocument = await this.didResolverService.resolveDidDocument(connection.did)
const ourAuthenticationKeys = getAuthenticationKeys(ourDidDocument)
// TODO We're selecting just the first authentication key. Is it ok?
// We can probably learn something from the didcomm-rust implementation, which looks at crypto compatibility to make sure the
// other party can decrypt the message. https://github.com/sicpa-dlab/didcomm-rust/blob/9a24b3b60f07a11822666dda46e5616a138af056/src/message/pack_encrypted/mod.rs#L33-L44
// This will become more relevant when we support different encrypt envelopes. One thing to take into account though is that currently we only store the recipientKeys
// as defined in the didcomm services, while it could be for example that the first authentication key is not defined in the recipientKeys, in which case we wouldn't
// even be interoperable between two AFJ agents. So we should either pick the first key that is defined in the recipientKeys, or we should make sure to store all
// keys defined in the did document as tags so we can retrieve it, even if it's not defined in the recipientKeys. This, again, will become simpler once we use didcomm v2
// as the `from` field in a received message will identity the did used so we don't have to store all keys in tags to be able to find the connections associated with
// an incoming message.
const [firstOurAuthenticationKey] = ourAuthenticationKeys
// If the returnRoute is already set we won't override it. This allows to set the returnRoute manually if this is desired.
const shouldAddReturnRoute =
payload.transport?.returnRoute === undefined && !this.transportService.hasInboundEndpoint(ourDidDocument)
// Loop trough all available services and try to send the message
for await (const service of services) {
try {
// Enable return routing if the our did document does not have any inbound endpoint for given sender key
await this.sendMessageToService({
message: payload,
service,
senderKey: firstOurAuthenticationKey,
returnRoute: shouldAddReturnRoute,
connectionId: connection.id,
})
return
} catch (error) {
errors.push(error)
this.logger.debug(
`Sending outbound message to service with id ${service.id} failed with the following error:`,
{
message: error.message,
error: error,
}
)
}
}
// We didn't succeed to send the message over open session, or directly to serviceEndpoint
// If the other party shared a queue service endpoint in their did doc we queue the message
if (queueService) {
this.logger.debug(`Queue message for connection ${connection.id} (${connection.theirLabel})`)
const keys = {
recipientKeys: queueService.recipientKeys,
routingKeys: queueService.routingKeys,
senderKey: firstOurAuthenticationKey,
}
const encryptedMessage = await this.envelopeService.packMessage(payload, keys)
this.messageRepository.add(connection.id, encryptedMessage)
return
}
// Message is undeliverable
this.logger.error(`Message is undeliverable to connection ${connection.id} (${connection.theirLabel})`, {
message: payload,
errors,
connection,
})
throw new AriesFrameworkError(`Message is undeliverable to connection ${connection.id} (${connection.theirLabel})`)
}
public async sendMessageToService({
message,
service,
senderKey,
returnRoute,
connectionId,
}: {
message: AgentMessage
service: ResolvedDidCommService
senderKey: Key
returnRoute?: boolean
connectionId?: string
}) {
if (this.outboundTransports.length === 0) {
throw new AriesFrameworkError('Agent has no outbound transport!')
}
this.logger.debug(`Sending outbound message to service:`, {
messageId: message.id,
service: { ...service, recipientKeys: 'omitted...', routingKeys: 'omitted...' },
})
const keys = {
recipientKeys: service.recipientKeys,
routingKeys: service.routingKeys,
senderKey,
}
// Set return routing for message if requested
if (returnRoute) {
message.setReturnRouting(ReturnRouteTypes.all)
}
try {
MessageValidator.validateSync(message)
} catch (error) {
this.logger.error(
`Aborting sending outbound message ${message.type} to ${service.serviceEndpoint}. Message validation failed`,
{
errors: error,
message: message.toJSON(),
}
)
throw error
}
const outboundPackage = await this.packMessage({ message, keys, endpoint: service.serviceEndpoint })
outboundPackage.endpoint = service.serviceEndpoint
outboundPackage.connectionId = connectionId
for (const transport of this.outboundTransports) {
const protocolScheme = getProtocolScheme(service.serviceEndpoint)
if (!protocolScheme) {
this.logger.warn('Service does not have valid protocolScheme.')
} else if (transport.supportedSchemes.includes(protocolScheme)) {
await transport.sendMessage(outboundPackage)
return
}
}
throw new AriesFrameworkError(`Unable to send message to service: ${service.serviceEndpoint}`)
}
private async retrieveServicesByConnection(
connection: ConnectionRecord,
transportPriority?: TransportPriorityOptions,
outOfBand?: OutOfBandRecord
) {
this.logger.debug(`Retrieving services for connection '${connection.id}' (${connection.theirLabel})`, {
transportPriority,
connection,
})
let didCommServices: ResolvedDidCommService[] = []
if (connection.theirDid) {
this.logger.debug(`Resolving services for connection theirDid ${connection.theirDid}.`)
didCommServices = await this.didCommDocumentService.resolveServicesFromDid(connection.theirDid)
} else if (outOfBand) {
this.logger.debug(`Resolving services from out-of-band record ${outOfBand?.id}.`)
if (connection.isRequester) {
for (const service of outOfBand.outOfBandInvitation.getServices()) {
// Resolve dids to DIDDocs to retrieve services
if (typeof service === 'string') {
this.logger.debug(`Resolving services for did ${service}.`)
didCommServices = await this.didCommDocumentService.resolveServicesFromDid(service)
} else {
// Out of band inline service contains keys encoded as did:key references
didCommServices.push({
id: service.id,
recipientKeys: service.recipientKeys.map(didKeyToInstanceOfKey),
routingKeys: service.routingKeys?.map(didKeyToInstanceOfKey) || [],
serviceEndpoint: service.serviceEndpoint,
})
}
}
}
}
// Separate queue service out
let services = didCommServices.filter((s) => !isDidCommTransportQueue(s.serviceEndpoint))
const queueService = didCommServices.find((s) => isDidCommTransportQueue(s.serviceEndpoint))
// If restrictive will remove services not listed in schemes list
if (transportPriority?.restrictive) {
services = services.filter((service) => {
const serviceSchema = getProtocolScheme(service.serviceEndpoint)
return transportPriority.schemes.includes(serviceSchema)
})
}
// If transport priority is set we will sort services by our priority
if (transportPriority?.schemes) {
services = services.sort(function (a, b) {
const aScheme = getProtocolScheme(a.serviceEndpoint)
const bScheme = getProtocolScheme(b.serviceEndpoint)
return transportPriority?.schemes.indexOf(aScheme) - transportPriority?.schemes.indexOf(bScheme)
})
}
this.logger.debug(
`Retrieved ${services.length} services for message to connection '${connection.id}'(${connection.theirLabel})'`,
{ hasQueueService: queueService !== undefined }
)
return { services, queueService }
}
}
export function isDidCommTransportQueue(serviceEndpoint: string): serviceEndpoint is typeof DID_COMM_TRANSPORT_QUEUE {
return serviceEndpoint === DID_COMM_TRANSPORT_QUEUE
}
function getAuthenticationKeys(didDocument: DidDocument) {
return (
didDocument.authentication?.map((authentication) => {
const verificationMethod =
typeof authentication === 'string' ? didDocument.dereferenceVerificationMethod(authentication) : authentication
const { getKeyFromVerificationMethod } = getKeyDidMappingByVerificationMethod(verificationMethod)
const key = getKeyFromVerificationMethod(verificationMethod)
return key
}) ?? []
)
}