-
Notifications
You must be signed in to change notification settings - Fork 360
/
Copy pathutil.js
344 lines (316 loc) · 9.64 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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
const _ = require('./lodash');
var self = module.exports = {
/**
* sanitizes input string by handling escape characters eg: converts '''' to '\'\'', (" to \" and \ to \\ )
* and trim input if required
*
* @param {String} inputString
* @param {Boolean} [trim] - indicates whether to trim string or not
* @param {String} [quoteType] - indicates which quoteType has to be escaped
* @param {Boolean} [backSlash] - indicates whether to escape backslash(\\)
* @param {Boolean} [urlEncode] - indicates whether to url-encode inputString
* @returns {String}
*/
sanitize: function (inputString, trim, quoteType, backSlash = false, urlEncode = false) {
if (typeof inputString !== 'string') {
return '';
}
if (urlEncode) {
inputString = encodeURIComponent(inputString);
}
if (backSlash) {
inputString = inputString.replace(/\\/g, '\\\\');
}
if (quoteType === '"') {
inputString = inputString.replace(/"/g, '\\"');
// Escape backslash if double quote was already escaped before call to sanitize
inputString = inputString.replace(/(?<!\\)\\\\"/g, '\\\\\\"');
// Escape special characters to preserve their literal meaning within double quotes
inputString = inputString
.replace(/`/g, '\\`')
.replace(/#/g, '\\#')
.replace(/\$/g, '\\$')
.replace(/!/g, '\\!');
}
else if (quoteType === '\'') {
// for curl escaping of single quotes inside single quotes involves changing of ' to '\''
inputString = inputString.replace(/'/g, "'\\''"); // eslint-disable-line quotes
}
return trim ? inputString.trim() : inputString;
},
form: function (option, format) {
if (format) {
switch (option) {
case '-s':
return '--silent';
case '-L':
return '--location';
case '-m':
return '--max-time';
case '-I':
return '--head';
case '-X':
return '--request';
case '-H':
return '--header';
case '-d':
return '--data';
case '-F':
return '--form';
case '-g':
return '--globoff';
default:
return '';
}
}
else {
return option;
}
},
/**
* 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 {*} urlObject The request sdk request.url object
* @param {boolean} quoteType The user given quoteType
* @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, quoteType) {
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) ?
// ==> username: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, quoteType);
},
/**
* @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
});
}
},
/**
* @param {Object} body
* @returns {boolean}
*
* Determines if a request body is actually empty.
* This is needed because body.isEmpty() returns false for formdata
* and urlencoded when they contain only disabled params which will not
* be a part of the curl request.
*/
isBodyEmpty (body) {
if (!body) {
return true;
}
if (body.isEmpty()) {
return true;
}
if (body.mode === 'formdata' || body.mode === 'urlencoded') {
let memberCount = 0;
body[body.mode] && body[body.mode].members && body[body.mode].members.forEach((param) => {
if (!param.disabled) {
memberCount += 1;
}
});
return memberCount === 0;
}
return false;
},
/**
* Decide whether we should add the HTTP method explicitly to the cURL command.
*
* @param {Object} request
* @param {Object} options
*
* @returns {Boolean}
*/
shouldAddHttpMethod: function (request, options) {
let followRedirect = options.followRedirect,
followOriginalHttpMethod = options.followOriginalHttpMethod,
disableBodyPruning = true,
isBodyEmpty = self.isBodyEmpty(request.body);
// eslint-disable-next-line lodash/prefer-is-nil
if (request.protocolProfileBehavior !== null && request.protocolProfileBehavior !== undefined) {
followRedirect = _.get(request, 'protocolProfileBehavior.followRedirects', followRedirect);
followOriginalHttpMethod =
_.get(request, 'protocolProfileBehavior.followOriginalHttpMethod', followOriginalHttpMethod);
disableBodyPruning = _.get(request, 'protocolProfileBehavior.disableBodyPruning', true);
}
if (followRedirect && followOriginalHttpMethod) {
return true;
}
switch (request.method) {
case 'HEAD':
return false;
case 'GET':
// disableBodyPruning will generally not be present in the request
// the only time it will be present, its value will be _false_
// i.e. the user wants to prune the request body despite it being present
if (!isBodyEmpty && disableBodyPruning) {
return true;
}
return false;
case 'POST':
return isBodyEmpty;
case 'DELETE':
case 'PUT':
case 'PATCH':
default:
return true;
}
}
};