-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
71 lines (61 loc) · 1.54 KB
/
index.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
/**
* Check if string looks like a reference to another object.
*
* @param {String} potentialRef
* @returns {boolean}
*/
var isRef = function(potentialRef) {
return potentialRef[0] === '$' || potentialRef.indexOf('$ref_') !== -1;
};
/**
* Convert object reference to a valid API URI.
*
* @param {string} ref
* @returns {string}
*/
var getURIByRef = function(ref) {
return ref.replace('$ref_', '');
};
/**
* Get object by API URI or return the URI itself if object doesn't exist.
*
* @param {string} uri
* @param {Object} pool
* @returns {*}
*/
var getModelByURI = function(uri, pool) {
return pool.hasOwnProperty(uri) ? pool[uri] : uri;
};
/**
* Loop through all properties in object and replace `$ref_xxx` links with objects from pool.
*
* @param {Object} object
* @param {Object} pool
* @returns {*}
*/
var replaceRefsInObjects = function(object, pool) {
for (var paramName in object) {
if (object.hasOwnProperty(paramName)) {
var paramValue = object[paramName];
if (typeof paramValue === 'string' && isRef(paramValue)) {
object[paramName] = getModelByURI(getURIByRef(paramValue), pool);
}
else if (typeof paramValue === 'object') {
object[paramName] = replaceRefsInObjects(paramValue, pool);
}
}
}
return object;
};
var parse = function(response) {
var pool = response;
// Loop through all objects in response.
for (var uri in response) {
if (response.hasOwnProperty(uri)) {
var object = response[uri];
pool[uri] = replaceRefsInObjects(object, pool);
}
}
return pool;
};
module.exports = parse;