You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.8 KiB
87 lines
2.8 KiB
'use strict'; |
|
|
|
var utils = require('../utils'); |
|
|
|
/** |
|
* Config-specific merge-function which creates a new config-object |
|
* by merging two configuration objects together. |
|
* |
|
* @param {Object} config1 |
|
* @param {Object} config2 |
|
* @returns {Object} New object resulting from merging config2 to config1 |
|
*/ |
|
module.exports = function mergeConfig(config1, config2) { |
|
// eslint-disable-next-line no-param-reassign |
|
config2 = config2 || {}; |
|
var config = {}; |
|
|
|
var valueFromConfig2Keys = ['url', 'method', 'data']; |
|
var mergeDeepPropertiesKeys = ['headers', 'auth', 'proxy', 'params']; |
|
var defaultToConfig2Keys = [ |
|
'baseURL', 'transformRequest', 'transformResponse', 'paramsSerializer', |
|
'timeout', 'timeoutMessage', 'withCredentials', 'adapter', 'responseType', 'xsrfCookieName', |
|
'xsrfHeaderName', 'onUploadProgress', 'onDownloadProgress', 'decompress', |
|
'maxContentLength', 'maxBodyLength', 'maxRedirects', 'transport', 'httpAgent', |
|
'httpsAgent', 'cancelToken', 'socketPath', 'responseEncoding' |
|
]; |
|
var directMergeKeys = ['validateStatus']; |
|
|
|
function getMergedValue(target, source) { |
|
if (utils.isPlainObject(target) && utils.isPlainObject(source)) { |
|
return utils.merge(target, source); |
|
} else if (utils.isPlainObject(source)) { |
|
return utils.merge({}, source); |
|
} else if (utils.isArray(source)) { |
|
return source.slice(); |
|
} |
|
return source; |
|
} |
|
|
|
function mergeDeepProperties(prop) { |
|
if (!utils.isUndefined(config2[prop])) { |
|
config[prop] = getMergedValue(config1[prop], config2[prop]); |
|
} else if (!utils.isUndefined(config1[prop])) { |
|
config[prop] = getMergedValue(undefined, config1[prop]); |
|
} |
|
} |
|
|
|
utils.forEach(valueFromConfig2Keys, function valueFromConfig2(prop) { |
|
if (!utils.isUndefined(config2[prop])) { |
|
config[prop] = getMergedValue(undefined, config2[prop]); |
|
} |
|
}); |
|
|
|
utils.forEach(mergeDeepPropertiesKeys, mergeDeepProperties); |
|
|
|
utils.forEach(defaultToConfig2Keys, function defaultToConfig2(prop) { |
|
if (!utils.isUndefined(config2[prop])) { |
|
config[prop] = getMergedValue(undefined, config2[prop]); |
|
} else if (!utils.isUndefined(config1[prop])) { |
|
config[prop] = getMergedValue(undefined, config1[prop]); |
|
} |
|
}); |
|
|
|
utils.forEach(directMergeKeys, function merge(prop) { |
|
if (prop in config2) { |
|
config[prop] = getMergedValue(config1[prop], config2[prop]); |
|
} else if (prop in config1) { |
|
config[prop] = getMergedValue(undefined, config1[prop]); |
|
} |
|
}); |
|
|
|
var axiosKeys = valueFromConfig2Keys |
|
.concat(mergeDeepPropertiesKeys) |
|
.concat(defaultToConfig2Keys) |
|
.concat(directMergeKeys); |
|
|
|
var otherKeys = Object |
|
.keys(config1) |
|
.concat(Object.keys(config2)) |
|
.filter(function filterAxiosKeys(key) { |
|
return axiosKeys.indexOf(key) === -1; |
|
}); |
|
|
|
utils.forEach(otherKeys, mergeDeepProperties); |
|
|
|
return config; |
|
};
|
|
|