-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredis.js
252 lines (218 loc) · 8.5 KB
/
redis.js
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
module.exports = function(RED) {
"use strict";
// require package
var util = require("util");
var redis = require('redis');
var uuid = require('uuid');
var mustache = require("mustache");
// connection config definition
function RedisConfig(n) {
RED.nodes.createNode(this, n);
this.host = n.host;
this.port = n.port;
this.dbase = n.dbase;
this.pass = n.pass;
};
RED.nodes.registerType("contrib-redis-config", RedisConfig);
// parse connection configuration
function parseConnConf(config) {
var result = [];
for (var key in config) {
if (/{{/.test(config[key])){
//result[key] = mustache.render(config[key], process.env);
result[key] = "";
} else {
result[key] = config[key];
}
}
return result;
};
// redis connection pool definition
var redisConnectionPool = function() {
var connections = {};
var obj = {
get: function(server, uuid1) {
var connConf = parseConnConf(server);
var host = connConf.host;
var port = connConf.port;
var options = {};
if(connConf.pass !== ""){
options['password'] = connConf.pass;
};
if(connConf.dbase !== ""){
options['db'] = connConf.dbase;
};
var id = host + ":" + port + ":" + uuid1;
if (!connections[id]) {
connections[id] = redis.createClient(port, host, options);
connections[id].on("error", function(err) {
util.log("[redis] " + err);
});
connections[id].on("connect", function() {
util.log("[redis] connected to " + host + ":" + port);
});
connections[id]._id = id;
connections[id]._nodeCount = 0;
}
connections[id]._nodeCount += 1;
return connections[id];
},
close: function(connection) {
connection._nodeCount -= 1;
if (connection._nodeCount === 0) {
if (connection) {
clearTimeout(connection.retry_timer);
//connection.end(flush);
connection.quit();
}
delete connections[connection._id];
}
}
};
return obj;
}();
// redis-sub node definition
function redisSub(config) {
// Create a RED node
RED.nodes.createNode(this,config);
// Store local copies of the node configuration (as defined in the .html)
this.server = RED.nodes.getNode(config.server);
this.name = config.name;
this.channel = config.channel;
var uuid1 = uuid.v4();
//Create redis Client connection
this.client = redisConnectionPool.get(this.server, uuid1);
var node = this;
if (node.client.connected) {
node.status({fill: "green", shape: "dot", text: "connected"});
} else {
node.status({fill: "red", shape: "ring", text: "disconnected"}, true);
}
node.client.on("end", function() {
node.status({fill: "red", shape: "ring", text: "disconnected"});
});
node.client.on("connect", function() {
node.status({fill: "green", shape: "dot", text: "connected"});
});
node.client.subscribe(node.channel);
//node.client.on("subscribe", function (channel, count) {
// this.status({fill:"blue",shape:"dot",text:count});
//});
node.client.on("message", function (channel, message) {
// send out the message to the rest of the workspace.
var payload = null;
try {
payload = JSON.parse(message);
} catch (err) {
payload = message;
} finally {
node.send({
//channel: channel,
payload: payload
});
};
});
node.on("close", function() {
// Called when the node is shutdown - eg on redeploy.
// Allows ports to be closed, connections dropped etc.
// eg: this.client.disconnect();
redisConnectionPool.close(node.client);
});
}
// Register the node by name. This must be called before overriding any of the
// Node functions.
RED.nodes.registerType("redis-sub",redisSub);
// redis-pub node definition
function redisPub(config) {
// Create a RED node
RED.nodes.createNode(this,config);
// Store local copies of the node configuration (as defined in the .html)
this.server = RED.nodes.getNode(config.server);
this.name = config.name;
this.channel = config.channel;
var uuid1 = uuid.v4();
//Create redis Client connection
this.client = redisConnectionPool.get(this.server, uuid1);
var node = this;
if (node.client.connected) {
node.status({fill: "green", shape: "dot", text: "connected"});
} else {
node.status({fill: "red", shape: "ring", text: "disconnected"}, true);
}
node.client.on("end", function() {
node.status({fill: "red", shape: "ring", text: "disconnected"});
});
node.client.on("connect", function() {
node.status({fill: "green", shape: "dot", text: "connected"});
});
node.on('input', function(msg) {
// do something with 'msg'
try {
node.client.publish(node.channel, JSON.stringify(msg.payload));
} catch (err) {
node.error(err);
};
});
node.on("close", function() {
// Called when the node is shutdown - eg on redeploy.
// Allows ports to be closed, connections dropped etc.
// eg: this.client.disconnect();
redisConnectionPool.close(node.client);
});
}
// Register the node by name. This must be called before overriding any of the
// Node functions.
RED.nodes.registerType("redis-pub",redisPub);
// redis-hash node definition
function redisHash(config) {
// Create a RED node
RED.nodes.createNode(this,config);
// Store local copies of the node configuration (as defined in the .html)
this.server = RED.nodes.getNode(config.server);
this.name = config.name;
this.hash = config.hash;
this.key = config.key;
this.postfix = config.postfix || "Name";
var uuid1 = uuid.v4();
//Create redis Client connection
this.client = redisConnectionPool.get(this.server, uuid1);
this.client.setMaxListeners(0);
var node = this;
if (node.client.connected) {
node.status({fill: "green", shape: "dot", text: "connected"});
} else {
node.status({fill: "red", shape: "ring", text: "disconnected"}, true);
}
node.client.on("end", function() {
node.status({fill: "red", shape: "ring", text: "disconnected"});
});
node.client.on("connect", function() {
node.status({fill: "green", shape: "dot", text: "connected"});
});
node.on('input', function(msg) {
// do something with 'msg'
var descKey = node.key + node.postfix;
if (msg.payload[node.key] !== undefined) {
node.client.hget(node.hash, msg.payload[node.key], function(err, reply) {
if(err) {
msg.payload[descKey] = err;
} else {
msg.payload[descKey] = reply;
};
node.send(msg);
});
} else {
node.send(msg);
};
});
node.on("close", function() {
// Called when the node is shutdown - eg on redeploy.
// Allows ports to be closed, connections dropped etc.
// eg: this.client.disconnect();
redisConnectionPool.close(node.client);
});
}
// Register the node by name. This must be called before overriding any of the
// Node functions.
RED.nodes.registerType("redis-hash",redisHash);
};