@nestjs/microservices
Version:
Nest - modern, fast, powerful node.js web framework (@microservices)
203 lines (202 loc) • 7.77 kB
JavaScript
import { NO_MESSAGE_HANDLER, REDIS_DEFAULT_HOST, REDIS_DEFAULT_PORT, } from '../constants.js';
import { RedisContext } from '../ctx-host/index.js';
import { Transport } from '../enums/index.js';
import { Server } from './server.js';
import { isUndefined } from '@nestjs/common/internal';
/**
* @publicApi
*/
export class ServerRedis extends Server {
options;
transportId = Transport.REDIS;
subClient;
pubClient;
isManuallyClosed = false;
wasInitialConnectionSuccessful = false;
pendingEventListeners = [];
constructor(options) {
super();
this.options = options;
this.initializeSerializer(options);
this.initializeDeserializer(options);
}
async listen(callback) {
try {
this.subClient = await this.createRedisClient();
this.pubClient = await this.createRedisClient();
[this.subClient, this.pubClient].forEach((client, index) => {
const type = index === 0 ? 'sub' : 'pub';
this.registerErrorListener(client);
this.registerReconnectListener(client);
this.registerReadyListener(client);
this.registerEndListener(client);
this.pendingEventListeners.forEach(({ event, callback }) => client.on(event, (...args) => callback(type, ...args)));
});
this.pendingEventListeners = [];
this.start(callback);
}
catch (err) {
callback(err);
}
}
start(callback) {
void Promise.all([this.subClient.connect(), this.pubClient.connect()])
.then(() => {
this.bindEvents(this.subClient, this.pubClient);
callback?.();
})
.catch(callback);
}
bindEvents(subClient, pubClient) {
subClient.on(this.options?.wildcards ? 'pmessage' : 'message', this.getMessageHandler(pubClient).bind(this));
const subscribePatterns = [...this.messageHandlers.keys()];
subscribePatterns.forEach(pattern => {
const { isEventHandler } = this.messageHandlers.get(pattern);
const channel = isEventHandler
? pattern
: this.getRequestPattern(pattern);
if (this.options?.wildcards) {
subClient.psubscribe(channel);
}
else {
subClient.subscribe(channel);
}
});
}
async close() {
this.isManuallyClosed = true;
this.pubClient && (await this.pubClient.quit());
this.subClient && (await this.subClient.quit());
this.pendingEventListeners = [];
}
async createRedisClient() {
const clientInfoTag = this.getOptionsProp(this.options, 'clientInfoTag');
const redisPackage = await this.loadPackage('ioredis', ServerRedis.name, () => import('ioredis'));
const RedisClient = redisPackage.default || redisPackage;
return new RedisClient({
port: REDIS_DEFAULT_PORT,
host: REDIS_DEFAULT_HOST,
...this.getClientOptions(),
...(clientInfoTag && { clientInfoTag }),
lazyConnect: true,
});
}
getMessageHandler(pub) {
return this.options?.wildcards
? (channel, pattern, buffer) => this.handleMessage(channel, buffer, pub, pattern)
: (channel, buffer) => this.handleMessage(channel, buffer, pub, channel);
}
async handleMessage(channel, buffer, pub, pattern) {
const rawMessage = this.parseMessage(buffer);
const packet = await this.deserializer.deserialize(rawMessage, { channel });
const redisCtx = new RedisContext([pattern]);
if (isUndefined(packet.id)) {
return this.handleEvent(channel, packet, redisCtx);
}
const publish = this.getPublisher(pub, channel, packet.id, redisCtx);
const handler = this.getHandlerByPattern(channel);
if (!handler) {
const status = 'error';
const noHandlerPacket = {
id: packet.id,
status,
err: NO_MESSAGE_HANDLER,
};
return publish(noHandlerPacket);
}
return this.onProcessingStartHook?.(this.transportId, redisCtx, async () => {
const response$ = this.transformToObservable(await handler(packet.data, redisCtx));
response$ && this.send(response$, publish);
});
}
getPublisher(pub, pattern, id, ctx) {
return (response) => {
Object.assign(response, { id });
const outgoingResponse = this.serializer.serialize(response);
this.onProcessingEndHook?.(this.transportId, ctx);
return pub.publish(this.getReplyPattern(pattern), JSON.stringify(outgoingResponse));
};
}
parseMessage(content) {
try {
return JSON.parse(content);
}
catch (e) {
return content;
}
}
getRequestPattern(pattern) {
return pattern;
}
getReplyPattern(pattern) {
return `${pattern}.reply`;
}
registerErrorListener(client) {
client.on("error" /* RedisEventsMap.ERROR */, (err) => this.logger.error(err));
}
registerReconnectListener(client) {
client.on("reconnecting" /* RedisEventsMap.RECONNECTING */, () => {
if (this.isManuallyClosed) {
return;
}
this._status$.next("reconnecting" /* RedisStatus.RECONNECTING */);
if (this.wasInitialConnectionSuccessful) {
this.logger.log('Reconnecting to Redis...');
}
});
}
registerReadyListener(client) {
client.on("ready" /* RedisEventsMap.READY */, () => {
this._status$.next("connected" /* RedisStatus.CONNECTED */);
this.logger.log('Connected to Redis. Subscribing to channels...');
if (!this.wasInitialConnectionSuccessful) {
this.wasInitialConnectionSuccessful = true;
}
});
}
registerEndListener(client) {
client.on('end', () => {
if (this.isManuallyClosed) {
return;
}
this._status$.next("disconnected" /* RedisStatus.DISCONNECTED */);
this.logger.error('Disconnected from Redis. No further reconnection attempts will be made.');
});
}
getClientOptions() {
const retryStrategy = (times) => this.createRetryStrategy(times);
return {
...(this.options || {}),
retryStrategy,
};
}
createRetryStrategy(times) {
if (this.isManuallyClosed) {
return undefined;
}
if (!this.getOptionsProp(this.options, 'retryAttempts')) {
this.logger.error('Redis connection closed and retry attempts not specified');
return;
}
if (times > this.getOptionsProp(this.options, 'retryAttempts', 0)) {
this.logger.error(`Retry time exhausted`);
return;
}
return this.getOptionsProp(this.options, 'retryDelay', 5000);
}
unwrap() {
if (!this.pubClient || !this.subClient) {
throw new Error('Not initialized. Please call the "listen"/"startAllMicroservices" method before accessing the server.');
}
return [this.pubClient, this.subClient];
}
on(event, callback) {
if (this.subClient && this.pubClient) {
this.subClient.on(event, (...args) => callback('sub', ...args));
this.pubClient.on(event, (...args) => callback('pub', ...args));
}
else {
this.pendingEventListeners.push({ event, callback });
}
}
}