forked from postmanlabs/postman-collection-transformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.js
418 lines (381 loc) · 15.2 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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
/* eslint-disable object-shorthand */
var _ = require('lodash'),
url = require('./url'),
rnd = Math.random;
module.exports = {
// @todo: Add support for a `json` type once it becomes available
typeMap: {
string: 'string',
boolean: 'boolean',
number: 'number'
},
/**
* Returns unique GUID on every call as per pseudo-number RFC4122 standards.
*
* @type {function}
* @returns {string}
*/
uid: function () {
var n,
r,
E = '',
H = '-'; // r = result , n = numeric variable for positional checks
// if "n" is not 9 or 14 or 19 or 24 return a random number or 4
// if "n" is not 15 generate a random number from 0 to 15
// `(n ^ 20 ? 16 : 4)` := unless "n" is 20, in which case a random number from 8 to 11 otherwise 4
//
// in other cases (if "n" is 9,14,19,24) insert "-"
// eslint-disable-next-line curly
for (r = n = E; n++ < 36; r += n * 51 & 52 ? (n ^ 15 ? 8 ^ rnd() * (n ^ 20 ? 16 : 4) : 4).toString(16) : H);
return r;
},
urlparse: function (u) {
return url.parse(u);
},
urlunparse: function (urlObj) {
return url.unparse(urlObj);
},
/**
* A generic utility method to sanitize variable transformations across collection formats.
*
* @param {Object} entity - A generic object that could contain variable data.
* @param {?Object} options - The set of options for variable handling.
* @param {?Object} options.fallback - The fallback values to be used if no variables are present.
* @param {?Boolean} options.noDefaults - When set to true, id will be retained.
* @param {?Boolean} options.retainEmptyValues - When set to true, empty property values will be set to ''
* instead of being deleted.
* @param {Object} [modifiers] - A set of behavioral modifiers for variable handling.
* @param {Boolean} [modifiers.isV1=false] - When set to true, looks for the pathVariableData property as well.
* @returns {Object[]} - The set of sanitized entity level variables.
*/
handleVars: function (entity, options, modifiers) {
!options && (options = {});
var self = this,
noDefaults = options.noDefaults,
isV1 = modifiers && modifiers.isV1,
retainEmpty = options.retainEmptyValues,
source = entity && (entity.variables || entity.variable || (isV1 && entity.pathVariableData)),
fallback = options.fallback && options.fallback.values,
result = _.map(source || fallback, function (item) {
var result = {
id: (noDefaults || item.id) ? item.id : self.uid(),
key: item.key || item.id,
value: item.value,
type: (item.type === 'text' ? 'string' : item.type) || self.typeMap[typeof item.value] || 'any'
};
item.disabled && (result.disabled = true);
if (item.description) { result.description = item.description; }
else if (retainEmpty) { result.description = null; }
return result;
});
if (result.length) { return result; }
},
/**
* Performs auth cleansing common to all sorts of auth transformations.
*
* @param {Object} entity - The wrapped auth entity to be cleaned.
* @param {?Object} options - The set of options for the current auth cleansing operation.
* @param {?Boolean} [options.excludeNoauth=false] - When set to true, noauth is set to null.
* @returns {Object|*} - The processed auth data.
*/
cleanAuth: function (entity, options) {
!options && (options = {});
var auth = entity && entity.auth;
if (auth === null) { return null; } // eslint-disable-line security/detect-possible-timing-attacks
if (!(auth && auth.type)) { return; }
if (auth.type === 'noauth') {
return options.excludeNoauth ? null : { type: 'noauth' };
}
return auth;
},
cleanEmptyValue: function (entity, property, retainEmpty) {
if (_.has(entity, property) && !entity[property]) {
retainEmpty ? (entity[property] = null) : (delete entity[property]);
}
return entity;
},
/**
* Transforms an array of auth params to their object equivalent.
*
* @param {Object} entity - The wrapper object for the array of auth params.
* @param {?Object} options - The set of options for the current auth cleansing operation.
* @param {?Boolean} [options.excludeNoauth=false] - When set to true, noauth is set to null.
* @returns {*}
*/
authArrayToMap: function (entity, options) {
var type,
result,
self = this,
auth = self.cleanAuth(entity, options);
if (!auth) { return auth; }
result = { type: (type = auth.type) };
if (type !== 'noauth') {
result[type] = _.transform(auth[type], function (result, param) {
result[param.key] = param.value;
}, {});
}
return result;
},
/**
* Transforms an object of auth params to their array equivalent.
*
* @param {Object} entity - The wrapper object for the array of auth params.
* @param {?Object} options - The set of options for the current auth cleansing operation.
* @param {?Boolean} [options.excludeNoauth=false] - When set to true, noauth is set to null.
* @returns {*}
*/
authMapToArray: function (entity, options) {
var type,
params,
result,
self = this,
auth = self.cleanAuth(entity, options);
if (!auth) { return auth; }
result = { type: (type = auth.type) };
if (type !== 'noauth') {
// @todo: Handle all non _ prefixed properties, ala request bodies
params = _.map(auth[type], function (value, key) {
return {
key: key,
value: value,
type: self.typeMap[typeof value] || 'any'
};
});
params.length && (result[type] = params);
}
return result;
},
/**
* Sanitizes a collection SDK compliant auth list.
*
* @param {Object} entity - The wrapper entity for the auth manifest.
* @param {?Object} options - The set of options for the current auth cleansing operation.
* @param {?Boolean} [options.excludeNoauth=false] - When set to true, noauth is set to null.
* @returns {Object[]} - An array of raw collection SDK compliant auth parameters.
*/
sanitizeAuthArray: function (entity, options) {
var type,
result,
self = this,
auth = self.cleanAuth(entity, options);
if (!auth) { return auth; }
result = { type: (type = auth.type) };
if (type !== 'noauth') {
result[type] = _.map(auth[type], function (param) {
return {
key: param.key,
value: param.value,
type: (param.type === 'text' ? 'string' : param.type) || self.typeMap[typeof param.value] || 'any'
};
});
}
return result;
},
/**
* A helper function to determine if the provided v1 entity has legacy properties.
*
* @private
* @param {Object} entityV1 - The v1 entity to be checked for the presence of legacy properties.
* @param {String} type - The type of property to be adjudged against.
* @returns {Boolean|*} - A flag to indicate the legacy property status of the passed v1 entity.
*/
notLegacy: function (entityV1, type) {
if (!entityV1) { return; }
switch (type) {
case 'event':
return !(entityV1.tests || entityV1.preRequestScript);
case 'auth':
return _.has(entityV1, 'auth') && !(_.has(entityV1, 'currentHelper') || entityV1.helperAttributes);
default:
return true;
}
},
authMappersFromLegacy: {
basicAuth: function (oldParams) {
return oldParams && {
username: oldParams.username,
password: oldParams.password,
saveHelperData: oldParams.saveToRequest,
showPassword: false
};
},
bearerAuth: function (oldParams) {
return oldParams && {
token: oldParams.token
};
},
digestAuth: function (oldParams) {
return oldParams && {
algorithm: oldParams.algorithm,
username: oldParams.username,
realm: oldParams.realm,
password: oldParams.password,
nonce: oldParams.nonce,
nonceCount: oldParams.nonceCount,
clientNonce: oldParams.clientNonce,
opaque: oldParams.opaque,
qop: oldParams.qop,
disableRetryRequest: oldParams.disableRetryRequest
};
},
oAuth1: function (oldParams) {
return oldParams && {
consumerKey: oldParams.consumerKey,
consumerSecret: oldParams.consumerSecret,
token: oldParams.token,
tokenSecret: oldParams.tokenSecret,
signatureMethod: oldParams.signatureMethod,
timestamp: oldParams.timestamp,
nonce: oldParams.nonce,
version: oldParams.version,
realm: oldParams.realm,
addParamsToHeader: oldParams.header,
autoAddParam: oldParams.auto,
addEmptyParamsToSign: oldParams.includeEmpty
};
},
hawkAuth: function (oldParams) {
return oldParams && {
authId: oldParams.hawk_id,
authKey: oldParams.hawk_key,
algorithm: oldParams.algorithm,
user: oldParams.user,
saveHelperData: oldParams.saveToRequest,
nonce: oldParams.nonce,
extraData: oldParams.ext,
appId: oldParams.app,
delegation: oldParams.dlg,
timestamp: oldParams.timestamp
};
},
ntlmAuth: function (oldParams) {
return oldParams && {
username: oldParams.username,
password: oldParams.password,
domain: oldParams.domain,
workstation: oldParams.workstation,
disableRetryRequest: oldParams.disableRetryRequest
};
},
oAuth2: function (oldParams) {
return oldParams && {
accessToken: oldParams.accessToken,
addTokenTo: oldParams.addTokenTo,
callBackUrl: oldParams.callBackUrl,
authUrl: oldParams.authUrl,
accessTokenUrl: oldParams.accessTokenUrl,
clientId: oldParams.clientId,
clientSecret: oldParams.clientSecret,
clientAuth: oldParams.clientAuth,
grantType: oldParams.grantType,
scope: oldParams.scope,
username: oldParams.username,
password: oldParams.password,
tokenType: oldParams.tokenType,
redirectUri: oldParams.redirectUri,
refreshToken: oldParams.refreshToken
};
},
// Only exists for consistency
awsSigV4: function (oldParams) {
return oldParams;
}
},
authMappersFromCurrent: {
basicAuth: function (newParams) {
return newParams && {
id: 'basic',
username: newParams.username,
password: newParams.password,
saveToRequest: newParams.saveHelperData
};
},
bearerAuth: function (newParams) {
return newParams && {
id: 'bearer',
token: newParams.token
};
},
digestAuth: function (newParams) {
return newParams && {
id: 'digest',
algorithm: newParams.algorithm,
username: newParams.username,
realm: newParams.realm,
password: newParams.password,
nonce: newParams.nonce,
nonceCount: newParams.nonceCount,
clientNonce: newParams.clientNonce,
opaque: newParams.opaque,
qop: newParams.qop,
disableRetryRequest: newParams.disableRetryRequest
};
},
oAuth1: function (newParams) {
return newParams && {
id: 'oAuth1',
consumerKey: newParams.consumerKey,
consumerSecret: newParams.consumerSecret,
token: newParams.token,
tokenSecret: newParams.tokenSecret,
signatureMethod: newParams.signatureMethod,
timestamp: newParams.timeStamp || newParams.timestamp,
nonce: newParams.nonce,
version: newParams.version,
realm: newParams.realm,
header: newParams.addParamsToHeader,
auto: newParams.autoAddParam,
includeEmpty: newParams.addEmptyParamsToSign
};
},
hawkAuth: function (newParams) {
return newParams && {
id: 'hawk',
hawk_id: newParams.authId,
hawk_key: newParams.authKey,
algorithm: newParams.algorithm,
user: newParams.user,
saveToRequest: newParams.saveHelperData,
nonce: newParams.nonce,
ext: newParams.extraData,
app: newParams.appId,
dlg: newParams.delegation,
timestamp: newParams.timestamp
};
},
ntlmAuth: function (newParams) {
return newParams && {
id: 'ntlm',
username: newParams.username,
password: newParams.password,
domain: newParams.domain,
workstation: newParams.workstation,
disableRetryRequest: newParams.disableRetryRequest
};
},
oAuth2: function (newParams) {
return newParams && {
id: 'oAuth2',
accessToken: newParams.accessToken,
addTokenTo: newParams.addTokenTo,
callBackUrl: newParams.callBackUrl,
authUrl: newParams.authUrl,
accessTokenUrl: newParams.accessTokenUrl,
clientId: newParams.clientId,
clientSecret: newParams.clientSecret,
clientAuth: newParams.clientAuth,
grantType: newParams.grantType,
scope: newParams.scope,
username: newParams.username,
password: newParams.password,
tokenType: newParams.tokenType,
redirectUri: newParams.redirectUri,
refreshToken: newParams.refreshToken
};
},
// Only exists for consistency
awsSigV4: function (newParams) {
return newParams;
}
}
};