wzp
2021-05-13 7d694a9113118daec5be7ac224dab46a3b20f106
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
// Copyright 2012 Mark Cavage, Inc.  All rights reserved.
 
'use strict';
 
var assert = require('assert-plus');
var querystring = require('qs');
 
var bodyReader = require('./bodyReader');
var errors = require('restify-errors');
 
///--- Globals
 
var MIME_TYPE = 'application/x-www-form-urlencoded';
 
///--- API
 
/**
 * Returns a plugin that will parse the HTTP request body IFF the
 * contentType is application/x-www-form-urlencoded.
 *
 * If req.params already contains a given key, that key is skipped and an
 * error is logged.
 *
 * @public
 * @function urlEncodedBodyParser
 * @param   {Object}    options - an option sobject
 * @returns {Function} Handler
 */
function urlEncodedBodyParser(options) {
    var opts = options || {};
    assert.object(opts, 'opts');
 
    var override = opts.overrideParams;
 
    function parseUrlEncodedBody(req, res, next) {
        // save original body on req.rawBody and req._body
        req.rawBody = req._body = req.body;
 
        if (req.getContentType() !== MIME_TYPE || !req.body) {
            next();
            return;
        }
 
        try {
            var params = querystring.parse(req.body);
 
            if (opts.mapParams === true) {
                var keys = Object.keys(params);
                keys.forEach(function forEach(k) {
                    var p = req.params[k];
 
                    if (p && !override) {
                        return;
                    }
                    req.params[k] = params[k];
                });
            }
 
            req.body = params;
        } catch (e) {
            next(new errors.InvalidContentError(e.message));
            return;
        }
 
        req.log.trace('req.params now: %j', req.params);
        next();
    }
 
    var chain = [];
 
    if (!opts.bodyReader) {
        chain.push(bodyReader(opts));
    }
    chain.push(parseUrlEncodedBody);
    return chain;
}
 
module.exports = urlEncodedBodyParser;