-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflowbasket.html
More file actions
executable file
·215 lines (202 loc) · 7.25 KB
/
flowbasket.html
File metadata and controls
executable file
·215 lines (202 loc) · 7.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<!--
Copyright (c) 2016 Kota Suizu
Released under the MIT license
http://opensource.org/licenses/mit-license.php
-->
<script type="text/x-red" data-template-name="flowbasket-config">
<div class="form-row">
<label for="node-config-input-host"><i class="fa fa-bookmark"></i> Host</label>
<input class="input-append-left" type="text" id="node-config-input-host">
</div>
<div class="form-row">
<label for="node-config-input-username"><i class="fa fa-user"></i> Username</label>
<input type="text" id="node-config-input-username">
</div>
<div class="form-row">
<label for="node-config-input-pass"><i class="fa fa-lock"></i> Password</label>
<input type="password" id="node-config-input-pass">
</div>
<div class="form-row">
<label for="node-config-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-config-input-name" placeholder="Name">
</div>
</script>
<script type="text/javascript">
RED.nodes.registerType('flowbasket-config', {
category: "config",
color: "rgb(114, 199, 231)",
defaults: {
host: {
value: "",
required: true
},
name: {
value: ""
}
},
credentials: {
username: {
type: "text",
required: true
},
pass: {
type: "password",
required: true
}
},
label: function() {
return this.name || this.host;
}
});
</script>
<script type="text/x-red" data-template-name="FlowBasket toBackup">
<div class="form-row">
<label for="node-input-flowbasketconfig"><i class="fa fa-globe"></i> SourceCloudant</label>
<input type="text" id="node-input-fbsourceconfig">
</div>
<div class="form-row">
<label for="node-input-engagecflowbasketconfigonfig"><i class="fa fa-globe"></i> TargetCloudant</label>
<input type="text" id="node-input-fbtargetconfig">
</div>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> AppName</label>
<input type="text" id="node-input-fbsourceappname">
</div>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> TargetDB</label>
<input type="text" id="node-input-fbtargetdbname">
</div>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="FlowBasket toBackup">
<p>To backup the node-red-flow to Cloudant.</p>
<p>
The input message contains the following properties:
<ul>
<li><code>payload.isAddable</code> is the flag of the force store of the flow document. <b>true</b> is force store of the flow document. <b>false</b> is store in the case of a new flow document. If it is not set, it is <b>false</b>.</li>
<li><code>payload.message</code> is the store message of the flow document. If it is not set, store message is <b>blank</b>.</li>
</ul>
</p>
<p>
The output message contains the following properties:
<ul>
<li><code>payload.statusCode</code> is the status code of the response. <b>200</b> is flow document has been already stored. <b>201</b> is succeeded to store the flow document.</li>
<li><code>payload.message</code> is the message of the response.</li>
<li><code>payload.body</code> is the body of the response.</li>
</ul>
</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('FlowBasket toBackup', {
category: 'Backup_Restore',
defaults: {
name: {
value: ""
},
fbsourceconfig: {
type: "flowbasket-config",
required: true
},
fbtargetconfig: {
type: "flowbasket-config",
required: true
},
fbsourceappname: {
value: "",
required: true
},
fbtargetdbname: {
value: "",
required: true
}
},
color: "#00A0E2",
inputs: 1,
outputs: 1,
icon: "basket.png",
label: function() {
return this.name || "FlowBasket toBackup";
},
labelStyle: function() {
return this.name ? "node_label_italic" : "";
}
});
</script>
<script type="text/x-red" data-template-name="FlowBasket toRestore">
<div class="form-row">
<label for="node-input-flowbasketconfig"><i class="fa fa-globe"></i> RestoreCloudant</label>
<input type="text" id="node-input-fbsourceconfig">
</div>
<div class="form-row">
<label for="node-input-engagecflowbasketconfigonfig"><i class="fa fa-globe"></i> BackupCloudant</label>
<input type="text" id="node-input-fbtargetconfig">
</div>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> AppName</label>
<input type="text" id="node-input-fbsourceappname">
</div>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> BackupDB</label>
<input type="text" id="node-input-fbtargetdbname">
</div>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="FlowBasket toRestore">
<p>To restore the node-red-flow from Cloudant.</p>
<p>
The input message contains the following properties:
<ul>
<li><code>payload</code> is the revision of the restore flow docs. </li>
</ul>
</p>
<p>
The output message contains the following properties:
<ul>
<li><code>payload.statusCode</code> is the status code of the response. <b>201</b> is succeeded to restore the flow document.</li>
<li><code>payload.message</code> is the message of the response.</li>
<li><code>payload.body</code> is the body of the response.</li>
</ul>
</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('FlowBasket toRestore', {
category: 'Backup_Restore',
defaults: {
name: {
value: ""
},
fbsourceconfig: {
type: "flowbasket-config",
required: true
},
fbtargetconfig: {
type: "flowbasket-config",
required: true
},
fbsourceappname: {
value: "",
required: true
},
fbtargetdbname: {
value: "",
required: true
}
},
color: "#00A0E2",
inputs: 1,
outputs: 1,
icon: "basket.png",
label: function() {
return this.name || "FlowBasket toRestore";
},
labelStyle: function() {
return this.name ? "node_label_italic" : "";
}
});
</script>