2023-03-09 09:13:15 -08:00
|
|
|
import type {
|
|
|
|
ITriggerFunctions,
|
|
|
|
IDataObject,
|
|
|
|
INodeType,
|
|
|
|
INodeTypeDescription,
|
|
|
|
ITriggerResponse,
|
|
|
|
} from 'n8n-workflow';
|
2023-01-27 03:22:44 -08:00
|
|
|
import { NodeOperationError } from 'n8n-workflow';
|
2022-03-12 03:14:39 -08:00
|
|
|
|
2022-04-08 14:32:08 -07:00
|
|
|
import redis from 'redis';
|
2022-03-12 03:14:39 -08:00
|
|
|
|
|
|
|
export class RedisTrigger implements INodeType {
|
|
|
|
description: INodeTypeDescription = {
|
|
|
|
displayName: 'Redis Trigger',
|
|
|
|
name: 'redisTrigger',
|
|
|
|
icon: 'file:redis.svg',
|
|
|
|
group: ['trigger'],
|
|
|
|
version: 1,
|
|
|
|
description: 'Subscribe to redis channel',
|
|
|
|
defaults: {
|
|
|
|
name: 'Redis Trigger',
|
|
|
|
},
|
|
|
|
inputs: [],
|
|
|
|
outputs: ['main'],
|
|
|
|
credentials: [
|
|
|
|
{
|
|
|
|
name: 'redis',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
properties: [
|
|
|
|
{
|
|
|
|
displayName: 'Channels',
|
|
|
|
name: 'channels',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
2022-08-17 08:50:24 -07:00
|
|
|
description:
|
|
|
|
'Channels to subscribe to, multiple channels be defined with comma. Wildcard character(*) is supported.',
|
2022-03-12 03:14:39 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Options',
|
|
|
|
name: 'options',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Option',
|
|
|
|
default: {},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'JSON Parse Body',
|
|
|
|
name: 'jsonParseBody',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
2022-06-20 07:54:01 -07:00
|
|
|
description: 'Whether to try to parse the message to an object',
|
2022-03-12 03:14:39 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Only Message',
|
|
|
|
name: 'onlyMessage',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
2022-06-20 07:54:01 -07:00
|
|
|
description: 'Whether to return only the message property',
|
2022-03-12 03:14:39 -08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
async trigger(this: ITriggerFunctions): Promise<ITriggerResponse> {
|
|
|
|
const credentials = await this.getCredentials('redis');
|
|
|
|
|
|
|
|
const redisOptions: redis.ClientOpts = {
|
|
|
|
host: credentials.host as string,
|
|
|
|
port: credentials.port as number,
|
|
|
|
db: credentials.database as number,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (credentials.password) {
|
|
|
|
redisOptions.password = credentials.password as string;
|
|
|
|
}
|
|
|
|
|
|
|
|
const channels = (this.getNodeParameter('channels') as string).split(',');
|
|
|
|
|
|
|
|
const options = this.getNodeParameter('options') as IDataObject;
|
|
|
|
|
|
|
|
if (!channels) {
|
|
|
|
throw new NodeOperationError(this.getNode(), 'Channels are mandatory!');
|
|
|
|
}
|
|
|
|
|
|
|
|
const client = redis.createClient(redisOptions);
|
|
|
|
|
2023-01-13 09:11:56 -08:00
|
|
|
const manualTriggerFunction = async () => {
|
2022-03-12 03:14:39 -08:00
|
|
|
await new Promise((resolve, reject) => {
|
|
|
|
client.on('connect', () => {
|
|
|
|
for (const channel of channels) {
|
|
|
|
client.psubscribe(channel);
|
|
|
|
}
|
|
|
|
client.on('pmessage', (pattern: string, channel: string, message: string) => {
|
|
|
|
if (options.jsonParseBody) {
|
|
|
|
try {
|
|
|
|
message = JSON.parse(message);
|
2022-08-17 08:50:24 -07:00
|
|
|
} catch (error) {}
|
2022-03-12 03:14:39 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (options.onlyMessage) {
|
2023-01-13 09:11:56 -08:00
|
|
|
this.emit([this.helpers.returnJsonArray({ message })]);
|
2022-03-12 03:14:39 -08:00
|
|
|
resolve(true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-01-13 09:11:56 -08:00
|
|
|
this.emit([this.helpers.returnJsonArray({ channel, message })]);
|
2022-03-12 03:14:39 -08:00
|
|
|
resolve(true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
client.on('error', (error) => {
|
|
|
|
reject(error);
|
|
|
|
});
|
|
|
|
});
|
2023-01-13 09:11:56 -08:00
|
|
|
};
|
2022-03-12 03:14:39 -08:00
|
|
|
|
|
|
|
if (this.getMode() === 'trigger') {
|
2022-03-12 10:22:38 -08:00
|
|
|
await manualTriggerFunction();
|
2022-03-12 03:14:39 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
async function closeFunction() {
|
|
|
|
client.quit();
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
closeFunction,
|
|
|
|
manualTriggerFunction,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|