-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathmq.ts
More file actions
643 lines (568 loc) · 21.8 KB
/
mq.ts
File metadata and controls
643 lines (568 loc) · 21.8 KB
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
import { AsyncLocalStorage } from 'node:async_hooks';
import type {
MessageQueue,
MessageQueueEnqueueOptions,
MessageQueueListenOptions,
} from '@fedify/fedify';
import type { PubSub } from '@google-cloud/pubsub';
import type { Logger } from '@logtape/logtape';
import { context, propagation } from '@opentelemetry/api';
import * as Sentry from '@sentry/node';
import type { Context } from 'hono';
import { z } from 'zod';
import type { AccountService } from '@/account/account.service';
import { parseURL } from '@/core/url';
import { analyzeError } from '@/mq/gcloud-pubsub-push/error-utils';
const OUTGOING_FETCH_TIMEOUT_MS = 10_000;
const fetchTimeoutStorage = new AsyncLocalStorage<number>();
const originalFetch = globalThis.fetch;
globalThis.fetch = (input: RequestInfo | URL, init?: RequestInit) => {
const timeout = fetchTimeoutStorage.getStore();
if (timeout && !init?.signal) {
return originalFetch(input, {
...init,
signal: AbortSignal.timeout(timeout),
});
}
return originalFetch(input, init);
};
/**
* Message from Fedify
*/
interface FedifyMessage {
id: string;
activity?: {
[key: string]: unknown;
type?: string;
object?: {
[key: string]: unknown;
type?: string;
};
};
[key: string]: unknown;
}
/**
* Message from a Pub/Sub push subscription
*/
interface Message {
/**
* Unique identifier for the message
*/
id: string;
/**
* Data contained within the message
*/
data: FedifyMessage;
/**
* Additional metadata about the message
*/
attributes: Record<string, string>;
}
/**
* Message queue implementation using a GCloud Pub/Sub push subscription
*/
export class GCloudPubSubPushMessageQueue implements MessageQueue {
readonly nativeRetrial = true;
private messageHandler?: (message: FedifyMessage) => Promise<void> | void;
private errorListener?: (error: Error) => void;
constructor(
private logger: Logger,
private pubSubClient: PubSub,
private accountService: AccountService,
private topic: string,
private useRetryTopic = false,
private retryTopic?: string,
private maxDeliveryAttempts = Number.POSITIVE_INFINITY,
) {}
/**
* Indicates whether the message queue is listening for messages or not
*/
get isListening(): boolean {
return this.messageHandler !== undefined;
}
/**
* Enqueue a message
*
* @param message Message to enqueue
*/
async enqueue(
message: FedifyMessage,
options?: MessageQueueEnqueueOptions,
): Promise<void> {
return await Sentry.startSpan(
{
op: 'queue.publish',
name: 'pubsub.message.publish',
attributes: {
'messaging.system': 'pubsub',
'messaging.destination': this.topic,
'fedify.message_id': message.id,
},
},
async () => {
const carrier: Record<string, string> = {};
const activeContext = context.active();
propagation.inject(activeContext, carrier);
return this._enqueue(
{
...message,
traceContext: carrier,
},
options,
);
},
);
}
private async _enqueue(
message: FedifyMessage,
options?: MessageQueueEnqueueOptions,
): Promise<void> {
const delay = options?.delay?.total('millisecond');
// If the message has a delay, do not enqueue it - this is a retry and we want to ignore for now
if (delay !== undefined) {
this.logger.info(
`Not enqueuing message [FedifyID: ${message.id}] due to delay being set: ${delay}`,
{ fedifyId: message.id, mq_message: message },
);
return;
}
// Filter messages which send to an ActivityPub inbox
if (message.type === 'outbox' && typeof message.inbox === 'string') {
const inboxUrl = parseURL(message.inbox);
if (!inboxUrl) {
this.logger.error(
`Message [FedifyID: ${message.id}] has an inbox URL that is not a valid URL: ${message.inbox}`,
{ fedifyId: message.id, mq_message: message },
);
return;
}
const activityTypeIsHandledByDomain =
message.activity?.type === 'Create' ||
message.activity?.type === 'Like' ||
message.activity?.type === 'Announce' ||
message.activity?.type === 'Delete' ||
message.activity?.type === 'Undo' ||
message.activity?.type === 'Update';
if (
activityTypeIsHandledByDomain &&
process.env.FORCE_INTERNAL_ACTIVITY_DELIVERY !== 'true'
) {
// Don't bother doing a DB lookup if the pathname doesn't even match
if (inboxUrl.pathname.startsWith('/.ghost/activitypub')) {
try {
const shouldDeliver =
await this.accountService.shouldDeliverActivity(
inboxUrl,
);
if (!shouldDeliver) {
this.logger.info(
`Dropping message [FedifyID: ${message.id}] due to inbox URL being an internal account: ${inboxUrl.href}`,
{ fedifyId: message.id, mq_message: message },
);
return;
}
} catch (error) {
this.logger.error(
`Failed to get account for message [FedifyID: ${message.id}]: ${error}`,
{
fedifyId: message.id,
error,
mq_message: message,
},
);
this.errorListener?.(error as Error);
}
}
}
// If the message is an outgoing message, and the account (resolved from the inbox URL) has an active delivery backoff, do not enqueue it
try {
const activeBackoff =
await this.accountService.getActiveDeliveryBackoff(
inboxUrl,
);
if (activeBackoff) {
this.logger.warn(
`Dropping message [FedifyID: ${message.id}] due to active delivery backoff for inbox: ${inboxUrl.href}. Backoff until: ${activeBackoff.backoffUntil.toISOString()}, Backoff seconds: ${activeBackoff.backoffSeconds}`,
{
fedifyId: message.id,
inboxUrl: inboxUrl.href,
backoffUntil:
activeBackoff.backoffUntil.toISOString(),
backoffSeconds: activeBackoff.backoffSeconds,
mq_message: message,
},
);
return;
}
} catch (error) {
this.logger.error(
`Failed to check backoff for message [FedifyID: ${message.id}]: ${error}`,
{ fedifyId: message.id, error, mq_message: message },
);
this.errorListener?.(error as Error);
// Continue with enqueuing if we can't check the backoff
}
}
try {
const messageId = await this.pubSubClient
.topic(this.topic)
.publishMessage({
json: message,
attributes: {
fedifyId: message.id,
},
});
this.logger.info(
`Message [FedifyID: ${message.id}] was enqueued [PubSubID: ${messageId}]`,
{
fedifyId: message.id,
pubSubId: messageId,
mq_message: message,
},
);
} catch (error) {
this.logger.error(
`Failed to enqueue message [FedifyID: ${message.id}]: ${error}`,
{ fedifyId: message.id, error, mq_message: message },
);
this.errorListener?.(error as Error);
}
}
/**
* Start the message queue
*
* @param handler Message handler
* @param options Options for the listen operation
*/
async listen(
handler: (message: FedifyMessage) => Promise<void> | void,
options: MessageQueueListenOptions = {},
): Promise<void> {
this.messageHandler = handler;
return await new Promise((resolve) => {
options.signal?.addEventListener('abort', () => {
this.messageHandler = undefined;
resolve();
});
});
}
/**
* Handle a message
*
* @param message Message to handle
* @param deliveryAttempt The delivery attempt count from GCP (optional)
*/
async handleMessage(
message: Message,
deliveryAttempt?: number,
): Promise<void> {
if (this.messageHandler === undefined) {
const error = new Error(
'Message queue is not listening, cannot handle message',
);
this.logger.error(
`Message [FedifyID: ${message.attributes.fedifyId}, PubSubID: ${message.id}] cannot be handled as the message queue is not yet listening`,
{
fedifyId: message.attributes.fedifyId,
pubSubId: message.id,
mq_message: message.data,
error,
},
);
throw error;
}
const fedifyId = message.attributes.fedifyId ?? 'unknown';
this.logger.debug(
`Handling message [FedifyID: ${fedifyId}, PubSubID: ${message.id}]`,
{ fedifyId, pubSubId: message.id, mq_message: message.data },
);
try {
await fetchTimeoutStorage.run(OUTGOING_FETCH_TIMEOUT_MS, () =>
this.messageHandler!(message.data),
);
await this.handleSuccess(message.data);
this.logger.debug(
`Acknowledged message [FedifyID: ${fedifyId}, PubSubID: ${message.id}]`,
{ fedifyId, pubSubId: message.id },
);
} catch (error) {
const shouldRetryUsingTopic =
this.useRetryTopic && this.retryTopic !== undefined;
const deliveryAttemptCount =
deliveryAttempt && deliveryAttempt > 0 ? deliveryAttempt : 1;
const isFromRetryQueue = message.attributes.isRetry === 'true';
// On main queue: always publish to retry queue on failure
// On retry queue: throw to use GCP's exponential backoff
const shouldPublishToRetry = !isFromRetryQueue;
this.logger.error(
`Failed to handle message [FedifyID: ${fedifyId}, PubSubID: ${message.id}]: ${error}`,
{
fedifyId,
pubSubId: message.id,
mq_message: message.data,
error,
deliveryAttempt: deliveryAttemptCount,
},
);
const errorAnalysis = analyzeError(error as Error);
if (errorAnalysis.isReportable) {
this.errorListener?.(error as Error);
}
if (
shouldRetryUsingTopic &&
errorAnalysis.isRetryable &&
deliveryAttemptCount < this.maxDeliveryAttempts
) {
if (shouldPublishToRetry) {
// From main queue: publish to retry topic
this.logger.info(
`Publishing to retry topic [FedifyID: ${fedifyId}, PubSubID: ${message.id}]`,
{
fedifyId,
pubSubId: message.id,
mq_message: message.data,
error,
deliveryAttempt: deliveryAttemptCount,
isFromRetryQueue,
},
);
await this.pubSubClient
.topic(this.retryTopic!)
.publishMessage({
json: message.data,
attributes: {
fedifyId,
isRetry: 'true',
},
});
} else {
// From retry queue: throw to let GCP handle exponential backoff
this.logger.info(
`Throwing error for GCP retry [FedifyID: ${fedifyId}, PubSubID: ${message.id}], attempt ${deliveryAttemptCount}`,
{
fedifyId,
pubSubId: message.id,
mq_message: message.data,
error,
deliveryAttempt: deliveryAttemptCount,
isFromRetryQueue,
},
);
throw error;
}
} else if (deliveryAttemptCount >= this.maxDeliveryAttempts) {
if (!errorAnalysis.isReportable) {
await this.handlePermanentFailure(
message.data,
error as Error,
);
}
this.logger.warn(
`Not retrying message [FedifyID: ${fedifyId}, PubSubID: ${message.id}] due to delivery attempt count being >= ${this.maxDeliveryAttempts}`,
{
fedifyId,
pubSubId: message.id,
mq_message: message.data,
error,
deliveryAttempt: deliveryAttemptCount,
},
);
} else if (shouldRetryUsingTopic && !errorAnalysis.isRetryable) {
await this.handlePermanentFailure(message.data, error as Error);
this.logger.warn(
`Not retrying permanent failure [FedifyID: ${fedifyId}, PubSubID: ${message.id}]`,
{
fedifyId,
pubSubId: message.id,
mq_message: message.data,
error,
deliveryAttempt: deliveryAttemptCount,
},
);
} else {
throw error;
}
}
}
/**
* Register an error listener
*
* @param listener Error listener
*/
registerErrorListener(listener: (error: Error) => void): void {
this.errorListener = listener;
}
private async handlePermanentFailure(
message: FedifyMessage,
error: Error,
): Promise<void> {
if (message.type !== 'outbox') {
return;
}
if (typeof message.inbox !== 'string') {
return;
}
this.logger.info(
'Recording delivery failure [FedifyID: {fedifyId}]: {error}',
{ fedifyId: message.id, error, mq_message: message },
);
try {
const inboxUrl = new URL(message.inbox);
await this.accountService.recordDeliveryFailure(
inboxUrl,
error.message,
);
} catch (error) {
this.logger.error(
'Failed to record delivery failure [FedifyID: {fedifyId}]: {error}',
{ fedifyId: message.id, error, mq_message: message },
);
this.errorListener?.(error as Error);
}
}
private async handleSuccess(message: FedifyMessage): Promise<void> {
if (message.type !== 'outbox') {
return;
}
if (typeof message.inbox !== 'string') {
return;
}
try {
const inboxUrl = new URL(message.inbox);
await this.accountService.clearDeliveryFailure(inboxUrl);
} catch (error) {
this.logger.error(
`Failed to clear delivery failure [FedifyID: ${message.id}]: ${error}`,
{ fedifyId: message.id, error, mq_message: message },
);
this.errorListener?.(error as Error);
}
}
}
/**
* @see https://cloud.google.com/pubsub/docs/push#receive_push
*/
const IncomingPushMessageSchema = z.object({
deliveryAttempt: z.number().optional(),
message: z.object({
message_id: z.string(),
data: z.string(),
attributes: z.record(z.string(), z.string()),
}),
});
/**
* Create a handler to handle an incoming message from a Pub/Sub push subscription
*
* @param mq Message queue instance
* @param logger Logger instance
*
* @example
* ```
* import { createPushMessageHandler, createMessageQueue } from '@/mq/gcloud-pubsub-push';
*
* const queue = await createMessageQueue(...);
*
* app.post('/mq', createPushMessageHandler(queue, logging));
* ```
*/
export function createPushMessageHandler(
mq: GCloudPubSubPushMessageQueue,
logger: Logger,
) {
/**
* Handle an incoming message from a Pub/Sub push subscription
*
* @param ctx Hono context instance
*/
return async function handlePushMessage(ctx: Context) {
// Check that the message queue is listening and if not, return a non-200
// response to instruct GCloud Pub/Sub to back off from pushing messages to
// this endpoint - See https://cloud.google.com/pubsub/docs/push#push_backoff
if (mq.isListening === false) {
logger.info(
'Message queue is not listening, cannot handle message',
);
return new Response(null, { status: 429 });
}
// Validate the incoming data
let json: z.infer<typeof IncomingPushMessageSchema>;
let data: FedifyMessage;
try {
json = IncomingPushMessageSchema.parse(
(await ctx.req.json()) as unknown,
);
// We expect the message data to be base64 encoded JSON - See
// - https://cloud.google.com/pubsub/docs/publish-message-overview#about-messages
// - https://cloud.google.com/pubsub/docs/reference/rest/v1/PubsubMessage
// (we use https://github.com/googleapis/nodejs-pubsub to publish
// messages which uses the REST API)
data = JSON.parse(
Buffer.from(json.message.data, 'base64').toString(),
);
} catch (error) {
logger.error(`Invalid incoming push message received: ${error}`, {
error,
});
return new Response(null, { status: 400 });
}
const message = {
id: json.message.message_id,
data,
attributes: json.message.attributes,
};
// TODO: zod schema on FedifyMessage OR have Fedify export a type for us.
if (
message.data.traceContext &&
typeof message.data.traceContext === 'object' &&
'baggage' in message.data.traceContext &&
'sentry-trace' in message.data.traceContext &&
typeof message.data.traceContext.baggage === 'string' &&
typeof message.data.traceContext['sentry-trace'] === 'string'
) {
logger.debug(
`Continuing trace from message [FedifyID: ${message.id}] - traceContext: {traceContext}`,
{
fedifyId: message.id,
traceContext: message.data.traceContext,
},
);
return Sentry.continueTrace(
{
sentryTrace: message.data.traceContext['sentry-trace'],
baggage: message.data.traceContext.baggage,
},
() => {
return Sentry.startSpan(
{
op: 'queue.process',
name: 'pubsub.message.handle',
attributes: {
'messaging.system': 'pubsub',
'messaging.message_id': message.id,
'fedify.message_id': message.id,
},
},
() => {
const carrier: Record<string, string> = {};
const activeContext = context.active();
propagation.inject(activeContext, carrier);
message.data.traceContext = carrier;
// Handle the message
return mq
.handleMessage(message, json.deliveryAttempt)
.then(() => new Response(null, { status: 200 }))
.catch(
() => new Response(null, { status: 500 }),
);
},
);
},
);
}
// Handle the message
return mq
.handleMessage(message, json.deliveryAttempt)
.then(() => new Response(null, { status: 200 }))
.catch(() => new Response(null, { status: 500 }));
};
}