forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultiparty-tests.ts
72 lines (62 loc) · 2.35 KB
/
multiparty-tests.ts
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
/// <reference path='multiparty.d.ts' />
/// <reference path='../node/node.d.ts' />
import multiparty = require('multiparty');
import http = require('http');
import util = require('util');
http.createServer(function (req: http.ServerRequest, res: http.ServerResponse) {
if (req.url === '/upload' && req.method === 'POST') {
var count = 0;
var form = new multiparty.Form();
// Errors may be emitted
// Note that if you are listening to 'part' events, the same error may be
// emitted from the `form` and the `part`.
form.on('error', function (err: Error) {
console.log('Error parsing form: ' + err);
});
// Parts are emitted when parsing the form
form.on('part', function (part: multiparty.Part) {
// You *must* act on the part by reading it
// NOTE: if you want to ignore it, just call "part.resume()"
if (!!part.filename) {
// filename is exists when this is a file
count++;
console.log('got field named ' + part.name + ' and got file named ' + part.filename);
// ignore file's content here
part.resume();
} else {
// filename doesn't exist when this is a field and not a file
console.log('got field named ' + part.name);
// ignore field's content
part.resume();
}
part.on('error', function (err: Error) {
// decide what to do
console.log('Error on part event: ' + err);
});
});
form.on('progress', function (bytesReceived: number, bytesExpected: number) {
// decide what to do
console.log('BytesReceived: ' + bytesReceived, 'BytesExpected: ', bytesExpected);
});
form.on('field', function (name: string, value: string) {
// decide what to do
console.log('Field Name: ' + name + ', Field Value: ' + value);
});
// Close emitted after form parsed
form.on('close', function () {
console.log('Upload completed!');
res.end('Received ' + count + ' files');
});
// Parse req
form.parse(req);
}
// show a file upload form
res.writeHead(200, {'content-type': 'text/html'});
res.end(
'<form action="/upload" enctype="multipart/form-data" method="post">' +
'<input type="text" name="title"><br>' +
'<input type="file" name="upload" multiple="multiple"><br>' +
'<input type="submit" value="Upload">' +
'</form>'
);
}).listen(8080);