-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblobload.js
471 lines (409 loc) · 17.2 KB
/
blobload.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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
// TODO: test resume upload when after stopping when buffer has not yet been flushed. I think since the bytepointer is set to the size of the temp file, new slices are appended to the unempty buffer upon resume. Set buffer size large and stop upload to test.
/**
* Module dependencies.
*/
EventEmitter = require('events').EventEmitter
, util = require('util')
, http = require('http')
, io = require('socket.io')
, fs = require('fs')
, util = require('util');
/**
* The event emitter instance to export the events of a blobload server instance.
* @type {EventEmitter}
*/
var eventDispatcher = new EventEmitter();
/**
* The blobload server object.
* @type {{buffer: {}, httpAccessStatusCode: number, httpAccessContent: string, port: number, sliceSize: number, dataBufferLimit: number, tempFolderPath: string, storageFolderPath: string, httpServer: null, currentTotalBufferSize: number, maxConnectionsAllowed: number, currentNbOfConnections: number, bufferBackupTimeInSeconds: number, getHttpAccessStatusCode: Function, getHttpAccessContent: Function, processNewUpload: Function, processSlice: Function, setup: Function, stop: Function, start: Function, getFileLocation: Function, setHttpAccessData: Function, setPort: Function}}
*/
var BlobloadServer = {
/**
* The object used to store data about the files being uploaded.
* @type {Object}
*/
buffer : {},
/**
* The HTTP access status code.
* @type {number}
*/
httpAccessStatusCode : 501,
/**
* The HTTP access content.
* @type {string}
*/
httpAccessContent : "Error: the blobload server hasn't been started yet",
/**
* The port this blobload instance is currently set to be running on.
* @type {number}
*/
port : 1337,
/**
* The slice size (in bytes).
* @type {number}
*/
sliceSize : 524288,
/**
* The limit of the buffer used to store slices before flushing (in bytes).
* @type {number}
*/
dataBufferLimit : 10485760,
/**
* The (relative or absolute) path of the directory where temporary files are stored for currently uploading files.
* @type {string}
*/
tempFolderPath : "temp/",
/**
* The (relative or absolute) path of the directory where completely uploaded files are stored.
* @type {string}
*/
storageFolderPath : "completed/",
/**
* The HTTP server instance.
*/
httpServer : null,
/**
* The current total buffer size.
* @type {number}
*
* TODO: evaluate the need for cache cleaning when buffer size is almost at its limits. Disabling this functionality for now.
*/
currentTotalBufferSize : 0,
/**
* The maximum number of connections allowed.
* @type {number}
*/
maxConnectionsAllowed : 100,
/**
* The current number of connected clients.
* @type {number}
*/
currentNbOfConnections : 0,
/**
* The amount of time to keep uploaded data in the buffer before cleanup after the client disconnects before the upload is finished (in seconds).
*/
bufferBackupTimeInSeconds : 3600,
/**
* Get the HTTP access status code.
* @returns {number}
*/
getHttpAccessStatusCode : function (){
return this.httpAccessStatusCode;
},
/**
* Get the HTTP access content.
* @returns {string}
*/
getHttpAccessContent : function(){
return this.httpAccessContent;
},
/**
* Process a new upload.
* @param socket The socket the client is connected to.
* @param data The data passed on by the client through the socket.
*/
processNewUpload : function(socket, data){
// look up file, if it doesn't exist, create it
var file = this.buffer[data['token']];
if(file === undefined){
file = this.buffer[data['token']] = {
token : data['token'],
tokenVerified : true, // redundantly stored here to avoid reverification of the token upon future requests
checksum : data['checksum'],
size : data['size'],
bytePointer : 0,
type : data['type'],
byteBuffer: '', // initialization of the byte buffer is necessary
lastUpdated: Date.now()
}
}
try{
var Stat = fs.statSync(this.tempFolderPath + file.token + '.' + file.type);
if(Stat.isFile()){
file.bytePointer = Stat.size;
}
}
catch(er){
// it's a new file
}
var _this = this;
fs.open(this.tempFolderPath + file.token + '.' + file.type, 'a', 0755, function(err, fd){
if(err){
console.log(err);
}
else{
file.handler = fd; // We store the file handler so we can write to it later
socket.emit('WantSlice', { 'token' : file.token, 'pointer': file.bytePointer, 'size' : _this.sliceSize});
}
});
},
/**
* Process a slice upload.
* @param socket The socket the client is connected to.
* @param data The data passed on by the client through the socket.
*/
processSlice : function(socket, data){
var file = this.buffer[data['token']];
if(! file){
socket.emit('encounteredError', {'error': 'File not found', 'data': data});
return;
}
if(data.bytePointer == null){
socket.emit('encounteredError', {'error': 'No pointer received', 'data': data});
return;
}
if(data.bytePointer != file.bytePointer){
socket.emit('WantSlice', { 'token' : file.token, 'pointer' : file.bytePointer, 'size' : this.sliceSize});
return;
}
if(data.checksum != this.buffer[data['token']].checksum){
socket.emit('encounteredError', {'error': 'Invalid checksum', 'data': data});
return;
}
file.byteBuffer += data['slice'];
file.lastUpdated = Date.now();
file.bytePointer += data['slice'].length;
// TODO: re-enable when necessary
//this.currentTotalBufferSize += data['slice'].length;
// if the buffer should be flushed...
if(file.byteBuffer.length > this.dataBufferLimit || file.bytePointer >= file.size){
var _this = this;
fs.write(file.handler, file.byteBuffer, null, 'Binary', function(err, written, buffer){
if(err){
socket.emit('encounteredError', {'error': 'An error occurred while flushing the buffer', 'data': data});
return;
}
var bufferSize = file.byteBuffer.length;
file.byteBuffer = "";
// TODO: re-enable when necessary
_this.currentTotalBufferSize -= bufferSize;
// if upload is completed...
if(file.bytePointer >= file.size) {
var finalFilePath = _this.storageFolderPath + file.token + '.' + file.type;
var inp = fs.createReadStream(_this.tempFolderPath + file.token + '.' + file.type);
var out = fs.createWriteStream(finalFilePath);
inp.pipe(out, {});
out.end = function(){
delete _this.buffer[file.token];
fs.unlink(_this.tempFolderPath + file.token + '.' + file.type, function () {
socket.emit('fileCompleted', {'token' : file.token});
eventDispatcher.emit('newFileCompletelyUploaded', {"path": finalFilePath, "checksum" : file.checksum, "size" : file['size'], "type" : file.type});
});
};
}
else{
socket.emit('WantSlice', { 'token' : file.token, 'pointer' : file.bytePointer, 'size' : _this.sliceSize});
}
});
}
else{
socket.emit('WantSlice', { 'token' : file.token, 'pointer' : file.bytePointer, 'size' : this.sliceSize});
}
},
/**
* Create a blobload server.
* @param port
* The port this blobload instance is to start running on.
* @param sliceSize
* The preferred size of slices to use.
* @param dataBufferLimit
* The size limit of the buffer. When this size is reached, cleanup is attempted (clearing the buffer of
* all entries for unfinished uploads that have expired since the client disconnected).
* @param maxConnections
* The maximum amount of connections to allow.
* @param bufferBackupTimeInSeconds
* The amount of time to keep unfinished upload data in the buffer before deleting them after a client disconnects.
* @param tempFolderPath
* The path of the directory to use to store currently uploading files (absolute or relative to the directory this module is in).
* @param storageFolderPath
* The path of the directory to use to store finished uploads (absolute or relative to the directory this module is in).
* @param authorizer
* The authorizer function to use for authentication. The token received from the client is passed on to this authorizer function as the first parameter.
* The second parameter passed on to the authorizer function is the callback function to execute after validating the token.
* The callback function has the following signature: function(string, boolean). The first string parameter represents the error message if validation failed (null otherwise).
* The second boolean parameter represents the result of the validation.
* So if validation failed due to an invalid token for instance, an example usage of the callback function would be: callback("Invalid token", false).
* @returns {BlobloadServer} This blobload server (for function chaining purposes).
*/
setup : function (port, sliceSize, dataBufferLimit, maxConnections, bufferBackupTimeInSeconds, tempFolderPath, storageFolderPath, authorizer){
if(port > 0) this.port = port;
if(sliceSize > 0) this.sliceSize = sliceSize;
if(dataBufferLimit > this.sliceSize) this.dataBufferLimit = dataBufferLimit;
if(maxConnections > 0) this.maxConnectionsAllowed = maxConnections;
if(bufferBackupTimeInSeconds > 0) this.bufferBackupTimeInSeconds = bufferBackupTimeInSeconds;
if(tempFolderPath) this.tempFolderPath = (tempFolderPath.charAt(tempFolderPath.length -1) == '/') ? tempFolderPath : (tempFolderPath + '/');
if(storageFolderPath) this.storageFolderPath = (storageFolderPath.charAt(storageFolderPath.length -1) == '/') ? storageFolderPath : (storageFolderPath + '/');
// create an all purpose authorizer if none is provided
if(! authorizer){
authorizer = function(token, callback){
callback(null, true);
}
}
this.setHttpAccessData(505, "This ain't no web server");
var _this = this;
this.httpServer = http.createServer(function (req, res) {
eventDispatcher.emit("webPageAccessDetected");
res.writeHead(_this.getHttpAccessStatusCode());
return res.end(_this.getHttpAccessContent());
});
var ioServer = io.listen(this.httpServer);
ioServer.configure(function (){
ioServer.set('authorization', function (handshakeData, callback) {
if(_this.currentNbOfConnections > _this.maxConnectionsAllowed){
callback('Too many connections', false);
}
if(! (handshakeData.query.token) ){
callback('No authorization data received', false);
}
else{
authorizer(handshakeData.query.token, function(err){
if(err){
callback('Authorization failed', false);
}
else{
callback(null, true);
}
});
}
});
});
ioServer.sockets.on('connection', function (socket) {
socket.on('NewFile', function (data) {
_this.processNewUpload(socket, data);
});
socket.on('SendSlice', function (data){
_this.processSlice(socket, data);
});
socket.on('disconnect', function () {
_this.currentNbOfConnections--;
});
_this.currentNbOfConnections++;
});
return this;
},
/**
* Stop this blobload server. This closes the server and stops repetitive cache cleanup.
* @returns {BlobloadServer} This blobload server (for function chaining purposes).
*/
stop : function(){
this.httpServer.close();
CacheCleaner.stop();
eventDispatcher.emit('serverStopped');
return this;
},
/**
* Start this blobload server. This starts the server and the repetitive cache cleanup functionality.
* @returns {BlobloadServer} This blobload server (for function chaining purposes).
*/
start : function(){
this.httpServer.listen(this.port);
CacheCleaner.start(1000 * 60);
eventDispatcher.emit('serverStarted');
return this;
},
/**
* Get the location of a file currently being uploaded.
* @param token
* The token of the file.
* @returns {string} The computed location of the file if there's a record for it in the buffer. Null otherwise.
*/
getFileLocation : function(token){
return this.buffer[token] ? (this.tempFolderPath + token + '.' + this.buffer[token].type) : null;
},
/**
* Set the HTTP access data.
* @param status
* The HTTP access status to set.
* @param content
* The HTTP access content to set.
* @returns {BlobloadServer} This blobload server (for function chaining purposes).
*/
setHttpAccessData : function(status, content){
this.httpAccessStatusCode = status;
this.httpAccessContent = content;
return this;
},
/**
* Set the port of this blobload server.
* @param port
* The port to set.
* @returns {BlobloadServer} This blobload server (for function chaining purposes).
*/
setPort : function(port){
this.port = port;
return this;
}
}
/**
* The cache cleanup object.
* @type {{cleanupActive: boolean, timer: null, run: Function, start: Function, stop: Function}}
*/
var CacheCleaner = {
/**
* Indicator of whether the cache cleanup is currently being executed (used as a semaphore to prevent multiple executions of the cleanup function at the same time).
*/
cleanupActive : false,
/**
* The timer used to schedule the repetitive cache cleanup.
*/
timer : null,
/**
* Run the cleanup.
* Note: This is an internal function meant to be private. Never call!
*/
run : function(){
if(this.cleanupActive){
return;
}
this.cleanupActive = true;
eventDispatcher.emit('bufferCleanUpStarted');
for(var file in this.buffer){
var expiryDate = new Date(file.lastUpdated).setSeconds(file.lastUpdated.getSeconds() + this.bufferBackupTimeInSeconds);
if(Date.now() > expiryDate){
eventDispatcher.emit('foundExpiredUpload', {'file' : file});
delete file; // TODO: check if ok or should be replaced with delete by token
var fileLocation = this.getFileLocation(file.token);
fs.unlink(fileLocation, function(err){
if(err) console.log('Error occurred while deleting "' + fileLocation + '" after buffer cleanup for that upload');
});
}
}
eventDispatcher.emit('bufferCleanUpFinished');
this.cleanupActive = false;
},
/**
* Start the repetitive cache cleanup.
* @param interval
* The interval between cleanup checks (in milliseconds).
*/
start : function(interval){
this.stop();
this.run();
this.timer = setInterval(this.run, interval);
},
/**
* Stop the repetitive cleanup.
*/
stop : function(){
if(this.timer) clearInterval(this.timer);
}
}
/**
* Module exports.
*/
exports.setup = function(port, sliceSize, dataBufferLimit, maxConnections, bufferBackupTimeInSeconds, tempFolderPath, storageFolderPath, authorizer){
return BlobloadServer.setup(port, sliceSize, dataBufferLimit, maxConnections, bufferBackupTimeInSeconds, tempFolderPath, storageFolderPath, authorizer);
}
exports.start = function(){
return BlobloadServer.start();
}
exports.stop = function(){
return BlobloadServer.stop();
}
exports.setHttpAccessData = function(status, content){
return BlobloadServer.setHttpAccessData(status, content);
}
exports.setPort = function(port){
return BlobloadServer.setPort(port);
}
exports.eventDispatcher = eventDispatcher;