2014-04-29 18:01:30 +02:00
|
|
|
|
2014-05-04 00:32:04 +02:00
|
|
|
module.exports = function(RED) {
|
2014-05-29 23:13:21 +02:00
|
|
|
"use strict";
|
2014-05-04 00:32:04 +02:00
|
|
|
var xml2js = require('xml2js');
|
|
|
|
var parseString = xml2js.parseString;
|
2014-05-29 23:13:21 +02:00
|
|
|
|
2014-05-04 00:32:04 +02:00
|
|
|
function XMLNode(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
2015-09-26 14:46:35 +02:00
|
|
|
this.attrkey = n.attr;
|
|
|
|
this.charkey = n.chr;
|
2018-01-16 22:43:37 +01:00
|
|
|
this.property = n.property||"payload";
|
2014-05-04 00:32:04 +02:00
|
|
|
var node = this;
|
|
|
|
this.on("input", function(msg) {
|
2018-01-16 22:43:37 +01:00
|
|
|
var value = RED.util.getMessageProperty(msg,node.property);
|
|
|
|
if (value !== undefined) {
|
2016-10-26 23:06:35 +02:00
|
|
|
var options;
|
2018-01-16 22:43:37 +01:00
|
|
|
if (typeof value === "object") {
|
2016-10-26 23:06:35 +02:00
|
|
|
options = {renderOpts:{pretty:false}};
|
2015-09-26 14:46:35 +02:00
|
|
|
if (msg.hasOwnProperty("options") && typeof msg.options === "object") { options = msg.options; }
|
|
|
|
options.async = false;
|
2016-10-26 23:06:35 +02:00
|
|
|
var builder = new xml2js.Builder(options);
|
2018-01-16 22:43:37 +01:00
|
|
|
value = builder.buildObject(value, options);
|
|
|
|
RED.util.setMessageProperty(msg,node.property,value);
|
2014-08-04 11:07:45 +02:00
|
|
|
node.send(msg);
|
2014-04-29 18:01:30 +02:00
|
|
|
}
|
2018-01-16 22:43:37 +01:00
|
|
|
else if (typeof value == "string") {
|
2016-10-26 23:06:35 +02:00
|
|
|
options = {};
|
2015-09-26 14:46:35 +02:00
|
|
|
if (msg.hasOwnProperty("options") && typeof msg.options === "object") { options = msg.options; }
|
|
|
|
options.async = true;
|
|
|
|
options.attrkey = node.attrkey || options.attrkey || '$';
|
|
|
|
options.charkey = node.charkey || options.charkey || '_';
|
2018-01-16 22:43:37 +01:00
|
|
|
parseString(value, options, function (err, result) {
|
2015-03-16 14:58:01 +01:00
|
|
|
if (err) { node.error(err, msg); }
|
2014-08-04 11:07:45 +02:00
|
|
|
else {
|
2018-01-16 22:43:37 +01:00
|
|
|
value = result;
|
|
|
|
RED.util.setMessageProperty(msg,node.property,value);
|
2014-08-04 11:07:45 +02:00
|
|
|
node.send(msg);
|
|
|
|
}
|
|
|
|
});
|
2014-04-29 18:01:30 +02:00
|
|
|
}
|
2015-05-10 22:47:22 +02:00
|
|
|
else { node.warn(RED._("xml.errors.xml_js")); }
|
2014-04-29 18:01:30 +02:00
|
|
|
}
|
2018-01-16 22:43:37 +01:00
|
|
|
else { node.send(msg); } // If no property - just pass it on.
|
2014-05-04 00:32:04 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
RED.nodes.registerType("xml",XMLNode);
|
2014-04-29 18:01:30 +02:00
|
|
|
}
|