blob: a7d282838bd8d366ebafc33f7828abd525700339 [file] [log] [blame]
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -09001<!--
2 Copyright 2013 IBM Corp.
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<script type="text/x-red" data-template-name="update">
18 <div class="form-row">
19 <label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
20 <input type="text" id="node-input-name" placeholder="Name">
21 </div>
22 <div class="form-row">
23 <label for="node-input-xml"><i class="fa fa-wrench"></i> Node XML</label>
24 <input type="hidden" id="node-input-xml" autofocus="autofocus">
25 <div style="height: 450px;" class="node-text-editor" id="node-input-xml-editor" onkeyup="resetStatus()" ></div>
26 </div>
27 <div class="form-row">
28 <a href="#" class="btn btn-mini" id="node-input-validate" style="margin-top: 4px;"><b>Validate XML</b></a>
29 <a href="#" class="btn btn-mini" id="node-input-show-sli-values" style="margin-top: 4px;"><b>Show Values</b></a>
30 <input type="hidden" id="node-input-comments">
31 <a href="#" class="btn btn-mini" id="node-input-btnComments" style="margin-top: 4px;"><b>Add Comments</b></a>
32 <div id="node-validate-result" class="form-tips" style="float:right;font-size:10px"></div>
33 </div>
34 <div class="form-tips">See the Info tab for help using this node.</div>
35</script>
36
37<script type="text/x-red" data-help-name="update">
38 <p>A update node.</p>
39 <p>Do not include closing tag - it will be automatically generated.</p>
40<!--
41<div class="section">
42<h5><a name="Description"></a>Description</h5>
43<p>An <b>update</b> node is used to execute Java code supplied as a plugin</p></div>
44<div class="section">
45<h5><a name="Attributes"></a>Attributes</h5>
46<table border="1" class="table table-striped">
47<tr class="a">
48<td align="center"><b>plugin</b></td>
49<td align="left">Fully qualified Java class of plugin to be used</td></tr>
50<tr class="b">
51<td align="center"><b>method</b></td>
52<td align="left">Name of method in the plugin class to execute. Method must return void, and take 2 arguments: a Map (for parameters) and a SvcLogicContext (to allow plugin read/write access to context memory)</td></tr></table></div>
53<div class="section">
54<h5><a name="Parameters"></a>Parameters</h5>
55<p>Specific to plugin / method</p></div>
56<div class="section">
57<h5><a name="Outcomes"></a>Outcomes</h5>
58<table border="1" class="table table-striped">
59<tr class="a">
60<td align="center"><b>success</b></td>
61<td align="left">Device successfully configured</td></tr>
62<tr class="b">
63<td align="center"><b>not-found</b></td>
64<td align="left">Plugin class could not be loaded</td></tr>
65<tr class="a">
66<td align="center"><b>unsupported-method</b></td>
67<td align="left">Named method taking (Map, SvcLogicContext) could not be found</td></tr>
68<tr class="b">
69<td align="center"><b>failure</b></td>
70<td align="left">Configure failed for some other reason</td></tr></table></div>
71<div class="section">
72<h5><a name="Example"></a>Example</h5>
73<div class="source">
74<pre>&lt;update plugin=&quot;org.onap.ccsdk.sli.resource.samplesvc.SampleServiceResource&quot;
75 resource=&quot;network-connection&quot; action=&quot;DELETE&quot; &gt;
76 &lt;parameter name=&quot;message&quot; value=&quot;Hello, world!&quot; /&gt;
77 &lt;outcome value=&quot;success&quot;&gt;
78 &lt;return status=&quot;success&quot;/&gt;
79 &lt;/outcome&gt;
80 &lt;outcome value=&quot;not-found&quot;&gt;
81 &lt;return status=&quot;failure&quot;&gt;
82 &lt;parameter name=&quot;error-code&quot; value=&quot;1590&quot; /&gt;
83 &lt;parameter name=&quot;error-message&quot; value=&quot;Could not locate plugin&quot; /&gt;
84 &lt;/return&gt;
85 &lt;/outcome&gt;
86 &lt;outcome value=&quot;Other&quot;&gt;
87 &lt;return status=&quot;failure&quot;&gt;
88 &lt;parameter name=&quot;error-code&quot; value=&quot;1542&quot; /&gt;
89 &lt;parameter name=&quot;error-message&quot; value=&quot;Internal error&quot; /&gt;
90 &lt;/return&gt;
91 &lt;/outcome&gt;
92&lt;/update&gt;</pre></div></div></div></div>
93-->
94</script>
95
96
97<script type="text/javascript">
98 RED.nodes.registerType('update',{
99 color:"#fdd0a2",
100 category: 'DGElogic',
101 defaults: {
102 name: {value:"update"},
103 xml: {value:"<update resource='' force='' plugin='' key='' pfx='' local-only=''>\n"},
104 comments:{value:""},
105 outputs: {value:1}
106 },
107 inputs:1,
108 outputs:1,
109 icon: "arrow-in.png",
110 label: function() {
111 return this.name;
112 },
113 oneditprepare: function() {
114 $( "#node-input-outputs" ).spinner({
115 min:1
116 });
117
118 var comments = $( "#node-input-comments").val();
119 if(comments != null){
120 comments = comments.trim();
121 if(comments != ''){
122 $("#node-input-btnComments").html("<span style='color:blue;'><b>View Comments</b></span>");
123 }
124 }
125
126
127 function functionDialogResize(ev,ui) {
128 $("#node-input-xml-editor").css("height",(ui.size.height-275)+"px");
129 };
130
131 $( "#dialog" ).dialog( "option", "width", 1200 );
132 $( "#dialog" ).dialog( "option", "height", 750 );
133 $( "#dialog" ).on("dialogresize", functionDialogResize);
134 $( "#dialog" ).one("dialogopen", function(ev) {
135 var size = $( "#dialog" ).dialog('option','sizeCache-function');
136 if (size) {
137 functionDialogResize(null,{size:size});
138 }
139 });
140
141 /* close dialog when ESC is pressed and released */
142 $( "#dialog" ).keyup(function(event){
143 if(event.which == 27 ) {
144 $("#node-dialog-cancel").click();
145 }
146 });
147
148 $( "#dialog" ).one("dialogclose", function(ev,ui) {
149 var height = $( "#dialog" ).dialog('option','height');
150 $( "#dialog" ).off("dialogresize",functionDialogResize);
151 });
152 var that = this;
153 require(["orion/editor/edit"], function(edit) {
154 that.editor = edit({
155 parent:document.getElementById('node-input-xml-editor'),
156 lang:"html",
157 contents: $("#node-input-xml").val()
158 });
159 RED.library.create({
160 url:"functions", // where to get the data from
161 type:"function", // the type of object the library is for
162 editor:that.editor, // the field name the main text body goes to
163 fields:['name','outputs']
164 });
165 $("#node-input-name").focus();
166 $("#node-input-validate").click(function(){
167 //console.log("validate clicked.");
168 //console.dir(that.editor);
169 //console.log("getText:" + that.editor.getText());
170 var val = that.editor.getText();
171 validateXML(val);
172 });
173 $("#node-input-show-sli-values").click(function(){
174 //console.log("SLIValues clicked.");
175 showValuesBox(that.editor,sliValuesObj);
176 });
177
178 });
179 //for click of add comments button
180 $("#node-input-btnComments").click(function(e){
181 showCommentsBox();
182 });
183 },
184 oneditsave: function() {
185 $("#node-input-xml").val(this.editor.getText());
186 var resp=validateXML(this.editor.getText());
187 if(resp){
188 this.status = {fill:"green",shape:"dot",text:"OK"};
189 }else{
190 this.status = {fill:"red",shape:"dot",text:"ERROR"};
191 }
192 delete this.editor;
193 }
194 });
195</script>