-
Notifications
You must be signed in to change notification settings - Fork 21
/
connect-form.js
100 lines (91 loc) · 2.63 KB
/
connect-form.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
/*!
* Connect - Multipart
* Copyright(c) 2010 TJ Holowaychuk <[email protected]>
* MIT Licensed
*/
/**
* Module dependencies.
*/
var formidable = require('formidable');
/**
* Setup form with the given `options`.
*
* Options:
*
* - `encoding` Encoding used for incoming forms. Defaults to utf8
* - `uploadDir` Directory to save uploads. Defaults to "/tmp"
* - `keepExtensions` Include original extensions. Defaults to `false`
*
* Examples:
*
* var form = require('connect-form');
* var server = connect.createServer(
* form({ keepExtensions: true }),
* function(req, res, next){
* // Form was submitted
* if (req.form) {
* // Do something when parsing is finished
* // and respond, or respond immediately
* // and work with the files.
* req.form.complete(function(err, fields, files){
* res.writeHead(200, {});
* if (err) res.write(JSON.stringify(err.message));
* res.write(JSON.stringify(fields));
* res.write(JSON.stringify(files));
* res.end();
* });
* // Regular request, pass to next middleware
* } else {
* next();
* }
* }
* );
*
* @param {Object} options
* @return {Function}
* @api public
*/
module.exports = function(options){
options = options || {};
return function(req, res, next){
if (formRequest(req)) {
var callback = function(){},
form = req.form = new formidable.IncomingForm;
merge(form, options);
form.complete = function(fn){ callback = fn; };
form.parse(req, function(){
callback.apply(this, arguments);
});
}
next();
};
};
/**
* Check if `req` is a valid form request.
*
* @param {IncomingMessage} req
* @return {Boolean}
* @api private
*/
function formRequest(req) {
return req.body === undefined
&& (req.method === 'POST'
|| req.method === 'PUT')
&& (req.headers['content-type'].indexOf('multipart/form-data') >= 0
|| req.headers['content-type'].indexOf('urlencoded') >= 0);
}
/**
* Merge object `b` with object `a`.
*
* @param {Object} a
* @param {Object} b
* @return {Object} a
* @api private
*/
function merge(a, b) {
var keys = Object.keys(b);
for (var i = 0, len = keys.length; i < len; ++i) {
a[keys[i]] = b[keys[i]];
}
return a;
}