-
Notifications
You must be signed in to change notification settings - Fork 360
/
Copy pathutil.js
223 lines (210 loc) · 6.34 KB
/
util.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
const _ = require('./lodash');
const self = module.exports = {
/**
* sanitization of values : trim, escape characters
*
* @param {String} inputString - input
* @param {String} escapeCharFor - escape for headers, body: raw, formdata etc
* @param {Boolean} [inputTrim] - whether to trim the input
* @returns {String} Sanitized String handling escape characters
*/
sanitize: function (inputString, escapeCharFor, inputTrim) {
if (typeof inputString !== 'string') {
return '';
}
inputString = inputTrim && typeof inputTrim === 'boolean' ? inputString.trim() : inputString;
if (escapeCharFor && typeof escapeCharFor === 'string') {
switch (escapeCharFor) {
case 'raw':
return JSON.stringify(inputString);
case 'urlencoded':
return encodeURIComponent(inputString);
case 'formdata-key':
// eslint-disable-next-line quotes
return inputString.replace(/"/g, "'");
case 'formdata-value':
// eslint-disable-next-line no-useless-escape
return inputString.replace(/\\\"/g, '\\\\\"').replace(/\"/g, '\\"');
case 'header':
return inputString.replace(/\\/g, '\\\\').replace(/"/g, '\\"');
default:
return inputString.replace(/"/g, '\\"');
}
}
return inputString;
},
/**
* sanitizes input options
*
* @param {Object} options - Options provided by the user
* @param {Array} optionsArray - options array received from getOptions function
*
* @returns {Object} - Sanitized options object
*/
sanitizeOptions: function (options, optionsArray) {
var result = {},
defaultOptions = {},
id;
optionsArray.forEach((option) => {
defaultOptions[option.id] = {
default: option.default,
type: option.type
};
if (option.type === 'enum') {
defaultOptions[option.id].availableOptions = option.availableOptions;
}
});
for (id in options) {
if (options.hasOwnProperty(id)) {
if (defaultOptions[id] === undefined) {
continue;
}
switch (defaultOptions[id].type) {
case 'boolean':
if (typeof options[id] !== 'boolean') {
result[id] = defaultOptions[id].default;
}
else {
result[id] = options[id];
}
break;
case 'positiveInteger':
if (typeof options[id] !== 'number' || options[id] < 0) {
result[id] = defaultOptions[id].default;
}
else {
result[id] = options[id];
}
break;
case 'enum':
if (!defaultOptions[id].availableOptions.includes(options[id])) {
result[id] = defaultOptions[id].default;
}
else {
result[id] = options[id];
}
break;
default:
result[id] = options[id];
}
}
}
for (id in defaultOptions) {
if (defaultOptions.hasOwnProperty(id)) {
if (result[id] === undefined) {
result[id] = defaultOptions[id].default;
}
}
}
return result;
},
/**
*
* @param {Object} urlObject The request sdk request.url object
* @returns {String} The final string after parsing all the parameters of the url including
* protocol, auth, host, port, path, query, hash
* This will be used because the url.toString() method returned the URL with non encoded query string
* and hence a manual call is made to getQueryString() method with encode option set as true.
*/
getUrlStringfromUrlObject: function (urlObject) {
var url = '';
if (!urlObject) {
return url;
}
if (urlObject.protocol) {
url += (urlObject.protocol.endsWith('://') ? urlObject.protocol : urlObject.protocol + '://');
}
if (urlObject.auth && urlObject.auth.user) {
url = url + ((urlObject.auth.password) ?
urlObject.auth.user + ':' + urlObject.auth.password : urlObject.auth.user) + '@';
}
if (urlObject.host) {
url += urlObject.getHost();
}
if (urlObject.port) {
url += ':' + urlObject.port.toString();
}
if (urlObject.path) {
url += urlObject.getPath();
}
if (urlObject.query && urlObject.query.count()) {
let queryString = self.getQueryString(urlObject);
queryString && (url += '?' + queryString);
}
if (urlObject.hash) {
url += '#' + urlObject.hash;
}
return self.sanitize(url, false);
},
/**
* @param {Object} urlObject
* @returns {String}
*/
getQueryString: function (urlObject) {
let isFirstParam = true,
params = _.get(urlObject, 'query.members'),
result = '';
if (Array.isArray(params)) {
result = _.reduce(params, function (result, param) {
if (param.disabled === true) {
return result;
}
if (isFirstParam) {
isFirstParam = false;
}
else {
result += '&';
}
return result + self.encodeParam(param.key) + '=' + self.encodeParam(param.value);
}, result);
}
return result;
},
/**
* Encode param except the following characters- [,{,},],%
*
* @param {String} param
* @returns {String}
*/
encodeParam: function (param) {
return encodeURIComponent(param)
.replace(/%5B/g, '[')
.replace(/%7B/g, '{')
.replace(/%5D/g, ']')
.replace(/%7D/g, '}')
.replace(/%2B/g, '+')
.replace(/%25/g, '%')
.replace(/'/g, '%27');
},
/**
*
* @param {Array} array - form data array
* @param {String} key - key of form data param
* @param {String} type - type of form data param(file/text)
* @param {String} val - value/src property of form data param
* @param {String} disabled - Boolean denoting whether the param is disabled or not
* @param {String} contentType - content type header of the param
*
* Appends a single param to form data array
*/
addFormParam: function (array, key, type, val, disabled, contentType) {
if (type === 'file') {
array.push({
key: key,
type: type,
src: val,
disabled: disabled,
contentType: contentType
});
}
else {
array.push({
key: key,
type: type,
value: val,
disabled: disabled,
contentType: contentType
});
}
}
};