mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
152 lines
4.9 KiB
JavaScript
152 lines
4.9 KiB
JavaScript
/**
|
|
* Copyright 2014 IBM Corp.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
**/
|
|
|
|
module.exports = function(RED) {
|
|
"use strict";
|
|
var StompClient = require('stomp-client');
|
|
var querystring = require('querystring');
|
|
|
|
function StompServerNode(n) {
|
|
RED.nodes.createNode(this,n);
|
|
this.server = n.server;
|
|
this.port = n.port;
|
|
this.name = n.name;
|
|
this.username = this.credentials.user;
|
|
this.password = this.credentials.password;
|
|
}
|
|
RED.nodes.registerType("stomp-server",StompServerNode,{
|
|
credentials: {
|
|
user: {type:"text"},
|
|
password: {type: "password"}
|
|
}
|
|
});
|
|
|
|
function StompInNode(n) {
|
|
RED.nodes.createNode(this,n);
|
|
this.server = n.server;
|
|
this.topic = n.topic;
|
|
|
|
this.serverConfig = RED.nodes.getNode(this.server);
|
|
this.host = this.serverConfig.server;
|
|
this.port = this.serverConfig.port;
|
|
this.userid = this.serverConfig.username;
|
|
this.password = this.serverConfig.password;
|
|
|
|
var node = this;
|
|
var msg = {topic:this.topic};
|
|
var closing = false;
|
|
|
|
node.client = new StompClient(node.host, node.port, node.userid, node.password, '1.0');
|
|
node.status({fill:"grey",shape:"ring",text:"connecting"});
|
|
|
|
var doConnect = function() {
|
|
node.client.connect(function(sessionId) {
|
|
node.status({fill:"green",shape:"dot",text:"connected"});
|
|
node.log('subscribed to: '+node.topic);
|
|
node.client.subscribe(node.topic, function(body, headers) {
|
|
try {
|
|
msg.payload = JSON.parse(body);
|
|
}
|
|
catch(e) {
|
|
msg.payload = body;
|
|
}
|
|
msg.headers = headers;
|
|
msg.topic = node.topic;
|
|
node.send(msg);
|
|
});
|
|
}, function(error) {
|
|
node.status({fill:"grey",shape:"dot",text:"error"});
|
|
node.warn(error);
|
|
});
|
|
}
|
|
|
|
node.client.on("disconnect", function() {
|
|
node.status({fill:"red",shape:"ring",text:"disconnected"});
|
|
if (!closing) {
|
|
setTimeout( function () { doConnect(); }, 15000);
|
|
}
|
|
});
|
|
|
|
node.client.on("error", function(error) {
|
|
node.status({fill:"grey",shape:"dot",text:"error"});
|
|
node.log(error);
|
|
});
|
|
|
|
doConnect();
|
|
|
|
node.on("close", function(done) {
|
|
closing = true;
|
|
if (node.client) {
|
|
node.client.disconnect(function() { done(); });
|
|
}
|
|
else { done(); }
|
|
});
|
|
}
|
|
RED.nodes.registerType("stomp in",StompInNode);
|
|
|
|
|
|
function StompOutNode(n) {
|
|
RED.nodes.createNode(this,n);
|
|
this.server = n.server;
|
|
this.topic = n.topic;
|
|
|
|
this.serverConfig = RED.nodes.getNode(this.server);
|
|
this.host = this.serverConfig.server;
|
|
this.port = this.serverConfig.port;
|
|
this.userid = this.serverConfig.username;
|
|
this.password = this.serverConfig.password;
|
|
|
|
var node = this;
|
|
var msg = {topic:this.topic};
|
|
var closing = false;
|
|
|
|
node.client = new StompClient(node.host, node.port, node.userid, node.password, '1.0');
|
|
node.status({fill:"grey",shape:"ring",text:"connecting"});
|
|
|
|
node.client.connect( function(sessionId) {
|
|
node.status({fill:"green",shape:"dot",text:"connected"});
|
|
}, function(error) {
|
|
node.status({fill:"grey",shape:"dot",text:"error"});
|
|
node.warn(error);
|
|
});
|
|
|
|
node.client.on("disconnect", function() {
|
|
node.status({fill:"red",shape:"ring",text:"disconnected"});
|
|
if (!closing) {
|
|
setTimeout( function () { node.client.connect(); }, 15000);
|
|
}
|
|
});
|
|
|
|
node.client.on("error", function(error) {
|
|
node.log(error);
|
|
});
|
|
|
|
node.on("input", function(msg) {
|
|
node.client.publish(node.topic || msg.topic, msg.payload, msg.headers);
|
|
});
|
|
|
|
node.on("close", function(done) {
|
|
closing = true;
|
|
if (node.client) {
|
|
node.client.disconnect(function() { done(); });
|
|
}
|
|
else { done(); }
|
|
});
|
|
}
|
|
RED.nodes.registerType("stomp out",StompOutNode);
|
|
|
|
}
|