properly handle routing keys

This commit is contained in:
Erik 2023-08-17 21:14:12 +03:00
parent 55c9128987
commit 3753161edb
Signed by: Navy.gif
GPG Key ID: 2532FBBB61C65A68
2 changed files with 28 additions and 20 deletions

View File

@ -6,7 +6,7 @@ type ExchangeDef = {
durable?: boolean, durable?: boolean,
internal?: boolean, internal?: boolean,
autoDelete?: boolean, autoDelete?: boolean,
type?: string, type?: 'direct' | 'topic' | 'headers' | 'fanout' | 'match' | string,
arguments?: object arguments?: object
} }
@ -51,10 +51,13 @@ type InternalQueueMsg = {
queue: string queue: string
} & InternalMessage } & InternalMessage
// eslint-disable-next-line @typescript-eslint/no-explicit-any type Consumer<T = unknown> = (content: T, msg: ConsumeMessage) => Promise<void> | void
type Consumer<T = any> = (content: T, msg: ConsumeMessage) => Promise<void> | void type Subscriber<T = unknown> = (content: T, msg: ConsumeMessage) => Promise<void> | void
// eslint-disable-next-line @typescript-eslint/no-explicit-any
type Subscriber<T = any> = (content: T, msg: ConsumeMessage) => Promise<void> | void export type SubscriptionOptions = {
exchangeType?: 'direct' | 'topic' | 'headers' | 'fanout' | 'match',
routingKey?: string
}
class MessageBroker class MessageBroker
{ {
@ -74,8 +77,10 @@ class MessageBroker
#channel: ChannelWrapper | null; #channel: ChannelWrapper | null;
#logger: ILogger; #logger: ILogger;
#subscribers: Map<string, Subscriber[]>; // eslint-disable-next-line @typescript-eslint/no-explicit-any
#consumers: Map<string, {consumer: Consumer, options?: Options.Consume}[]>; #subscribers: Map<string, {options: SubscriptionOptions, subscriber: Subscriber<any>}[]>;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
#consumers: Map<string, {consumer: Consumer<any>, options?: Options.Consume}[]>;
#_pQueue: InternalPublishMsg[]; #_pQueue: InternalPublishMsg[];
#_qQueue: InternalQueueMsg[]; #_qQueue: InternalQueueMsg[];
@ -228,8 +233,10 @@ class MessageBroker
await this.#_processQueues(); await this.#_processQueues();
} }
// Consume queue /**
async consume<T> (queue: string, consumer: Consumer<T>, options?: Options.Consume) * Consume queue
*/
async consume<T = unknown> (queue: string, consumer: Consumer<T>, options?: Options.Consume)
{ {
if (!this.#channel) if (!this.#channel)
throw new Error('Channel does not exist'); throw new Error('Channel does not exist');
@ -254,31 +261,34 @@ class MessageBroker
}, options); }, options);
} }
// Subscribe to exchange, ensures messages aren't lost by binding it to a queue /**
async subscribe<T> (name: string, listener: Subscriber<T>) * Subscribe to exchange, ensures messages aren't lost by binding it to a queue
*/
async subscribe<T> (name: string, subscriber: Subscriber<T>, options: SubscriptionOptions = {})
{ {
if (!this.#channel) if (!this.#channel)
throw new Error('Channel does not exist'); throw new Error('Channel does not exist');
this.#logger.debug(`Subscribing to ${name}`); this.#logger.debug(`Subscribing to ${name}`);
// if (!this.#subscribers.has(name)) // if (!this.#subscribers.has(name))
await this._subscribe<T>(name, listener); await this._subscribe<T>(name, subscriber, options);
const list = this.#subscribers.get(name) ?? []; const list = this.#subscribers.get(name) ?? [];
list.push(listener); list.push({ subscriber, options });
this.#subscribers.set(name, list); this.#subscribers.set(name, list);
} }
private async _subscribe<T> (name: string, listener: Subscriber<T>): Promise<void> private async _subscribe<T> (name: string, listener: Subscriber<T>, options: SubscriptionOptions): Promise<void>
{ {
if (!this.#channel) if (!this.#channel)
return Promise.reject(new Error('Channel doesn\'t exist')); return Promise.reject(new Error('Channel doesn\'t exist'));
await this.#channel.assertExchange(name, 'fanout', { durable: true }); const type = options.exchangeType ?? 'fanout';
await this.#channel.assertExchange(name, type, { durable: true });
const queue = await this.#channel.assertQueue('', { exclusive: true }); const queue = await this.#channel.assertQueue('', { exclusive: true });
await this.#channel.bindQueue(queue.queue, name, ''); await this.#channel.bindQueue(queue.queue, name, options.routingKey ?? '');
await this.#channel.consume(queue.queue, async (msg) => await this.#channel.consume(queue.queue, async (msg) =>
{ {
if (msg.content && msg.content.toString().startsWith('{')) if (msg.content && msg.content.toString().startsWith('{'))
@ -405,9 +415,9 @@ class MessageBroker
for (const [ name, list ] of this.#subscribers) for (const [ name, list ] of this.#subscribers)
{ {
this.#logger.debug(`Processing subscriber ${name}: ${list.length}`); this.#logger.debug(`Processing subscriber ${name}: ${list.length}`);
for (const subscriber of list) for (const { subscriber, options } of list)
{ {
await this._subscribe(name, subscriber); await this._subscribe(name, subscriber, options);
} }
} }
this.#logger.status('Done restoring'); this.#logger.status('Done restoring');

View File

@ -327,7 +327,6 @@ class MongoDB
*/ */
async push (db: string, filter: Document, data: object, upsert = false) async push (db: string, filter: Document, data: object, upsert = false)
{ {
if (!this.#db) if (!this.#db)
throw new Error('MongoDB not connected'); throw new Error('MongoDB not connected');
if (typeof db !== 'string') if (typeof db !== 'string')
@ -338,7 +337,6 @@ class MongoDB
this.#logger.debug(`Incoming push query for ${db}, with upsert ${upsert} and with parameters ${inspect(filter)} and data ${inspect(data)}`); this.#logger.debug(`Incoming push query for ${db}, with upsert ${upsert} and with parameters ${inspect(filter)} and data ${inspect(data)}`);
const result = await this.#db.collection(db).updateOne(filter, { $push: data }, { upsert }); const result = await this.#db.collection(db).updateOne(filter, { $push: data }, { upsert });
return result; return result;
} }
/** /**