-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileUpload.js
260 lines (227 loc) · 6.35 KB
/
FileUpload.js
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
#!/usr/bin/env node
"use strict";
var util = require('util');
var events = require('events');
var https = require('https');
var program = require('commander');
var validator = require('validator');
var fs = require('fs');
var debug = true;
function debugLog(log){
if (debug === true){
console.log(log);
}
}
function FileUpload(hostIP, path)
{
if (!(this instanceof FileUpload)){
return new FileUpload(hostIP, path);
}
this.options =
{
host: hostIP,
port: 443,
method: 'POST',
path: '/mgmt/shared/authn/login',
rejectUnauthorized: false,
headers:
{
'Content-Type': 'application/json',
}
}
this.data =
{
username:"mrajagopal",
password:"changeme1234",
loginProviderName:"tmos"
}
this.path = path;
this.token = {};
events.EventEmitter.call(this);
this.httpReqTimeoutValueInMs = 5000;
}
// extent the FileUpload object using EventEmitter
util.inherits(FileUpload, events.EventEmitter);
FileUpload.prototype._emitError = function _emitError(e)
{
debugLog(e);
this.emit('error', e);
};
FileUpload.prototype.getToken = function getToken()
{
debugLog(this.options);
debugLog(this.data);
var req = https.request(this.options, this.tokenResp.bind(this));
req.setTimeout(this.httpReqTimeoutValueInMs, function()
{
req.abort();
});
req.write(JSON.stringify(this.data));
req.end();
req.on('error', this._emitError.bind(this));
}
FileUpload.prototype.readFileChunk = function readFileChunk()
{
var fs = require('fs');
var stream = fs.createReadStream(filename);
fs.stat(filename, function(error, stat)
{
if (error)
{
throw error;
}
});
}
FileUpload.prototype.upload = function upload(filename)
{
var fs = require('fs');
var stream = fs.createReadStream(filename);
this.options =
{
host: program.ip,
port: 443,
method: 'POST',
path: '/mgmt/shared/file-transfer/uploads/' + filename,
rejectUnauthorized: false,
}
var chunkSize = 64 * 1024;
var self = this;
fs.stat(filename, function(error, stat) {
if (error) { throw error; }
self.options.headers =
{
'X-F5-Auth-Token': self.token.token,
'Content-Type' : 'text/plain',
'Content-Range' : '0-'+ (stat.size-1)+'/'+stat.size
}
// do your piping here
// if(stat.size > chunkSize)
// {
// uploadOptions.headers['Content-Range'] = '0-'+ (chunkSize-1)+'/'+stat.size;
// }
// else
// {
// uploadOptions.headers['Content-Range'] = '0-'+ (stat.size-1)+'/'+stat.size;
// }
// uploadOptions.headers['Content-Range'] = '0-'+ (stat.size-1)+'/'+stat.size;
console.log(self.options);
var uploadReq = https.request(self.options, self.uploadResp);
stream.on('data', function(data)
{
console.log('writing stream data: ', data.length);// : ', data.size());
// var uploadReq = https.request(uploadOptions, function(resp)
uploadReq.write(data);
});
stream.on('end', function()
{
console.log('End of stream data');
uploadReq.end();
});
});
}
FileUpload.prototype.tokenResp = function tokenResp(resp)
{
var self = this;
resp.on('data', function(body)
{
debugLog('Processing token response');
if (resp.statusCode == 200)
{
var respBody = JSON.parse(body);
self.token = respBody.token;
console.log('Acquired Token is: ', respBody.token.token);
self.upload('myfile.txt');
}
else
{
console.log('statusCode', resp.statusCode);
console.log(JSON.parse(body));
}
});
resp.on('error', function(e)
{
console.error(e);
});
}
FileUpload.prototype.uploadChunkResp = function uploadChunkResp(resp)
{
resp.on('data', function(body)
{
if(resp.statusCode == 200)
{
console.log('Response: 200 OK');
// stream.on('data', function(data) {
// console.log('more data from readstream');
// uploadReq.write(data);
// });
// stream.on('end', function() {
// console.log('Final End of stream data');
// uploadReq.end();
// });
// uploadReq.end();
uploadReq.end();
}
else
{
console.log('statusCode: ', resp.statusCode);
console.log(JSON.parse(body));
// uploadReq.end();
}
});
resp.on('error', function(error)
{
console.error('error: ' + error);
// uploadReq.end();
});
}
FileUpload.prototype.uploadResp = function uploadResp(resp)
{
resp.on('data', function(body)
{
if(resp.statusCode == 200)
{
console.log('Response: 200 OK');
// stream.on('data', function(data) {
// console.log('more data from readstream');
// uploadReq.write(data);
// });
// stream.on('end', function() {
// console.log('Final End of stream data');
// uploadReq.end();
// });
// uploadReq.end();
}
else
{
console.log('statusCode: ', resp.statusCode);
console.log(JSON.parse(body));
}
});
resp.on('error', function(error)
{
console.error('error: ' + error);
});
}
program.version('0.0.1');
program.description('Command line tool iControlREST using Node.js');
program.option('--verbosity', 'Enable verbose logging');
program.option('--ip <BIG-IP Address>', 'Hostname to analyze');
program.parse(process.argv);
// print process.argv
process.argv.forEach(function (val, index, array) {
console.log(index + ': ' + val);
});
/////////////////////////////////////
if (!process.argv.slice(2).length){
console.log('Too few arguments');
program.help();
process.exit(0);
}
if(program.ip && !validator.isIP(program.ip, 4))
{
console.log(' Error: invalid IPv4 string');
program.help();
process.exit(0);
}
var fileUpload = FileUpload(program.ip, 'myfile.txt' );
fileUpload.getToken();