-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
131 lines (116 loc) · 2.48 KB
/
index.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
const Busboy = require('busboy');
module.exports = class AsyncBusboy {
/**
* Creates an instance of AsyncBusboy.
*
* @param {any} opts
* This object is argument for busboy constructor (https://github.com/mscdex/busboy#busboy-methods)
*/
constructor(opts) {
if (!opts.headers) {
throw new Error('Miss headers');
}
this.busboy = new Busboy(opts);
this._onFile = null;
this._onField = null;
this._onFilesLimit = null;
}
/**
* Function executed on event "file"
*
* @param {function} func
* @return {AsyncBusboy} this
*/
onFile(func) {
this._onFile = func;
return this;
}
/**
* Function executed on event "field"
*
* @param {function} func
* @return {AsyncBusboy} this
*/
onField(func) {
this._onField = func;
return this;
}
/**
* Function executed on event "filesLimit"
*
* @param {function} func
* @return {AsyncBusboy} this
*/
onFilesLimit(func) {
this._onFilesLimit = func;
return this;
}
/**
* Function executed on event "partsLimit"
*
* @param {function} func
* @return {AsyncBusboy} this
*/
onPartsLimit(func) {
this._onPartsLimit = func;
return this;
}
/**
* Function executed on event "fieldsLimit"
*
* @param {function} func
* @return {AsyncBusboy} this
*/
onFieldsLimit(func) {
this._onFieldsLimit = func;
return this;
}
/**
* Request object for pipe busboy
*
* @param {any} req
* @return {Promise}
*/
pipe(req) {
if (!this.onFile) {
throw new Error('Miss describe this.onFile');
}
return new Promise((resolve, reject) => {
this.busboy.on('file', this._onFile);
if (this._onField) {
this.busboy.on('field', this._onField);
}
if (this._onFilesLimit) {
this.busboy.on('filesLimit', () => {
try {
this._onFilesLimit();
} catch (e) {
reject(e);
}
});
}
if (this._onPartsLimit) {
this.busboy.on('partsLimit', () => {
try {
this._onPartsLimit();
} catch (e) {
reject(e);
}
});
}
if (this._onFieldsLimit) {
this.busboy.on('fieldsLimit', () => {
try {
this._onFieldsLimit();
} catch (e) {
reject(e);
}
});
}
this.busboy.once('finish', () => {
resolve();
});
req.pipe(this.busboy);
});
}
};