2014-04-29 18:01:30 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2014-04-29 18:01:30 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
**/
|
|
|
|
|
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;
|
2014-05-04 00:32:04 +02:00
|
|
|
var node = this;
|
|
|
|
this.on("input", function(msg) {
|
|
|
|
if (msg.hasOwnProperty("payload")) {
|
2016-10-26 23:06:35 +02:00
|
|
|
var options;
|
2015-09-26 14:46:35 +02:00
|
|
|
if (typeof msg.payload === "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);
|
2015-09-26 14:46:35 +02:00
|
|
|
msg.payload = builder.buildObject(msg.payload, options);
|
2014-08-04 11:07:45 +02:00
|
|
|
node.send(msg);
|
2014-04-29 18:01:30 +02:00
|
|
|
}
|
2014-05-04 00:32:04 +02:00
|
|
|
else if (typeof msg.payload == "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 || '_';
|
|
|
|
parseString(msg.payload, 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 {
|
|
|
|
msg.payload = result;
|
|
|
|
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
|
|
|
}
|
2015-03-24 18:43:47 +01:00
|
|
|
else { node.send(msg); } // If no payload - 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
|
|
|
}
|