[CCSDK-28] populated the seed code for dgbuilder
[ccsdk/distribution.git] / dgbuilder / core_nodes / deprecated / 74-js2xml.js
1 /**\r
2  * Copyright 2013 IBM Corp.\r
3  *\r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  *\r
8  * http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  **/\r
16 \r
17 module.exports = function(RED) {\r
18     "use strict";\r
19     var js2xmlparser = require("js2xmlparser");\r
20 \r
21     function Js2XmlNode(n) {\r
22         RED.nodes.createNode(this,n);\r
23         this.warn("This node has been deprecated and will be deleted in a future release. Please update your flow to use the 'xml' node.");\r
24         this.root = n.root;\r
25         var node = this;\r
26 \r
27         this.on("input", function(msg) {\r
28             try {\r
29                 var root = node.root || typeof msg.payload;\r
30                 if (typeof msg.payload !== "object") { msg.payload = '"'+msg.payload+'"'; }\r
31                 console.log(root, typeof msg.payload,msg.payload);\r
32                 msg.payload = js2xmlparser(root, msg.payload);\r
33                 node.send(msg);\r
34             }\r
35             catch(e) { console.log(e); }\r
36         });\r
37     }\r
38     RED.nodes.registerType("json2xml",Js2XmlNode);\r
39 }\r