-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlftp.html
215 lines (205 loc) · 8.14 KB
/
lftp.html
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
<script type="text/x-red" data-help-name="lftp-config">
<p>lftp config</p>
<p>help available <a href="https://github.com/Atinux/node-ftps#usage">here</a></p>
<p>additional commands details <a href="http://lftp.yar.ru/lftp-man.html">here</a></p>
<p>For self-signed certs use <code>set ssl:verify-certificate no;</code></p>
<p>For ssh host verification use <code>set sftp:auto-confirm yes;</code></p>
<p>To disable cache use <code>cache off;</code></p>
</script>
<script type="text/x-red" data-help-name="lftp-command">
<p>lftp command</p>
<p>execute lftp commands</p>
</script>
<script type="text/x-red" data-template-name="lftp-config">
<div class="form-row">
<label for="node-config-input-protocol"><i class="fa fa-wrench"></i> Protocol</label>
<select type="text" id="node-config-input-protocol">
<option value="ftp">FTP</option>
<option value="ftps">FTPS</option>
<option value="sftp">SFTP</option>
</select>
</div>
<div class="form-row">
<label for="node-config-input-host"><i class="fa fa-bookmark"></i> Host</label>
<input type="text" id="node-config-input-host" placeholder="localhost" style="width: 40%;" />
<label for="node-config-input-port" style="margin-left: 10px; width: 35px; "> Port</label>
<input type="text" id="node-config-input-port" placeholder="21" style="width:45px">
</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" placeholder="anonymous" />
</div>
<div class="form-row">
<label for="node-input-requiresPassword"><i class="fa fa-key"></i> Requires Password</label>
<input type="checkbox" id="node-input-requriesPassword" placeholder="once" style="width: 10%; vertical-align: top;">
</div>
<div class="form-row">
<label for="node-config-input-password"><i class="fa fa-lock"></i> Password</label>
<input type="password" id="node-config-input-password">
</div>
<div class="form-row">
<label for="node-config-input-retries"><i class="fa fa-clock-o"></i> Retries</label>
<input type="text" id="node-config-input-retries" placeholder="2">
</div>
<div class="form-row">
<label for="node-config-input-timeout"><i class="fa fa-clock-o"></i> Timeout</label>
<input type="text" id="node-config-input-timeout" placeholder="10">
</div>
<div class="form-row">
<label for="node-config-input-retryInterval"><i class="fa fa-clock-o"></i> Retry Interval</label>
<input type="text" id="node-config-input-retryInterval" placeholder="5">
</div>
<div class="form-row">
<label for="node-config-input-retryMultiplier"><i class="fa fa-clock-o"></i> Retry Multiplier</label>
<input type="text" id="node-config-input-retryMultiplier" placeholder="1">
</div>
<div class="form-row">
<label for="node-config-input-additionalLftpCommands" style="width: 20%; vertical-align: top;"> Additional Commands</label>
<input type="text" id="node-config-input-additionalLftpCommands" style="width: 35%; vertical-align: top;">
</div>
</script>
<script type="text/javascript">
RED.nodes.registerType("lftp-config", {
category: "config",
color: "BurlyWood",
defaults: {
host: { value: "localhost", required: true },
// protocol is added on beginning of host, ex : sftp://domain.com in this case
protocol: { value: "ftp" },
// port is added to the end of the host, ex: sftp://domain.com:22 in this case
port: { value: 21 },
escape: { value: true },
retries: { value: 2 },
timeout: { value: 10 },
retryInterval: { value: 5 },
retryMultiplier: { value: 1 },
requiresPassword: { value: true },
additionalLftpCommands: { value: "" }
},
credentials: {
username: { type: "text" },
password: { type: "password" }
},
label: function() {
return this.host;
}
});
</script>
<script type="text/x-red" data-template-name="lftp-command">
<div class="form-row">
<label for="node-input-server"><i class="fa fa-user"></i> Add new FTP Server</label>
<input type="text" id="node-input-server">
</div>
<div class="form-row">
<label for="node-input-operation"><i class="fa fa-wrench"></i> Operation</label>
<select type="text" id="node-input-operation">
<option value="list">list</option>
<option value="get">get</option>
<option value="put">put</option>
<option value="delete">delete</option>
<option value="rmdir">rmdir</option>
<option value="rmrf">rmrf</option>
<option value="move">move</option>
<option value="raw">raw</option>
<option value="">- set by msg.operation -</option>
</select>
</div>
<div class="form-row input-workdir-row hidden">
<label for="node-input-workdir"><i class="fa fa-folder-open"></i> Working Directory</label>
<input type="text" id="node-input-workdir" placeholder="Working Directory">
</div>
<div class="form-row input-filename-row hidden">
<label for="node-input-filename"><i class="fa fa-file"></i> Filename</label>
<input type="text" id="node-input-filename" placeholder="Filename">
</div>
<div class="form-row input-targetFilename-row hidden">
<label for="node-input-targetFilename"><i class="fa fa-file"></i> Target Filename</label>
<input type="text" id="node-input-targetFilename" placeholder="Filename">
</div>
<div class="form-row input-savedir-row hidden">
<label for="node-input-savedir"><i class="fa fa-folder-open"></i> Save Directory</label>
<input type="text" id="node-input-savedir" placeholder="Save Directory">
</div>
<div class="form-row input-localFilename-row hidden">
<label for="node-input-localFilename"><i class="fa fa-file"></i> Local Filename</label>
<input type="text" id="node-input-localFilename" placeholder="Local Filename">
</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/javascript">
RED.nodes.registerType("lftp-command", {
category: "storage-input",
color: "BurlyWood",
defaults: {
server: { type: "lftp-config", required: true },
operation: { value: "list" },
filename: { value: "" },
targetFilename: { value: "" },
localFilename: { value: "" },
workdir: { value: "" },
savedir: { value: "" },
name: { value: "" }
},
inputs: 1,
outputs: 1,
icon: "file.png",
label: function() {
var server = RED.nodes.node(this.server);
return this.name || "lftp";
},
labelStyle: function() {
return this.name ? "node_label_italic" : "";
},
oneditprepare: function() {
var savedir = $(".input-savedir-row");
var filename = $(".input-filename-row");
var targetFilename = $(".input-targetFilename-row");
var localFilename = $(".input-localFilename-row");
var workdir = $(".input-workdir-row");
$("#node-input-operation").change(function() {
var id = $("#node-input-operation option:selected").val();
console.log(id);
if (id == "list") {
workdir.show();
filename.hide();
targetFilename.hide();
savedir.hide();
localFilename.hide();
} else if (id == "put") {
workdir.show();
filename.show();
targetFilename.hide();
savedir.hide();
localFilename.hide();
} else if (id == "get") {
workdir.show();
filename.show();
targetFilename.hide();
savedir.hide();
localFilename.hide();
} else if (id == "delete" || id == "rmdir" || id == "rmrf") {
workdir.show();
filename.show();
targetFilename.hide();
savedir.hide();
localFilename.hide();
} else if (id == "move") {
workdir.show();
filename.show();
targetFilename.show();
savedir.hide();
localFilename.hide();
} else {
workdir.hide();
filename.hide();
targetFilename.hide();
savedir.hide();
localFilename.hide();
}
});
}
});
</script>