-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
247 lines (207 loc) · 6.12 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
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
'use strict';
var assert = require('assert');
var clone = require('clone');
var filter = require('object-filter');
var iana = require('iana-rels');
var flatten = require('array-flatten');
var url = require('url');
/**
* Initializes a function that uses `base` for all the internal normalize
* methods.
*
* @param {String} base The base URL for this API.
* @return {Function}
*/
module.exports = function (base) {
return function (input) {
return normalizeEntity(base, input);
};
};
/**
* Takes the `input` entity object and normalizes it into a valid siren object.
*
* @param {String} base The base URL for this API.
* @param {Object} input The entity object to normalize.
* @return {Object}
*/
function normalizeEntity(base, input) {
if (!input) return {};
var result = Object.assign(clone(input), {
class: normalizeClass(input.class),
properties: normalizeProperties(input.properties),
entities: normalizeEntities(base, input.entities),
links: normalizeLinks(base, input.links),
actions: normalizeActions(base, input.actions),
title: input.title
});
// strip undefined values from the result
return filter(result, function (v) {
return typeof v !== 'undefined';
});
}
/**
* Takes the `input` rel value and normalizes it into a valid array.
*
* @param {String} base The base URL for this API.
* @param {Mixed} input The rel value to normalize.
* @return {Array}
*/
function normalizeRel(base, input) {
if (!input) return;
if (!Array.isArray(input)) input = [ input ];
return flatten(input).map(function (rel) {
return rel in iana ? rel : url.resolve(base, rel);
});
}
/**
* Takes the `input` href value and normalizes it into an absolute url.
*
* @param {String} base The base URL for this API.
* @param {Mixed} input The href value to normalize.
* @return {String}
*/
function normalizeHref(base, input) {
if (!input) return;
return url.resolve(base, input);
}
/**
* Takes the `input` class value and normalizes it into a single array.
*
* @param {Object} input The href value to normalize.
* @return {String}
*/
function normalizeClass(input) {
if (!input) return;
return flatten.from(arguments);
}
/**
* Takes the `input` properties value and normalizes it into a single object.
*
* @param {Mixed} input The properties value to normalize.
* @return {Object}
*/
function normalizeProperties(input) {
if (!input) return;
if (Array.isArray(input)) {
return flatten(input).reduce(function (acc, o) {
return Object.assign(acc, o);
}, {});
}
return clone(input);
}
/**
* Takes the `input` entities value and normalizes it into a single array.
*
* @param {String} base The base URL for this API.
* @param {Mixed} input The entities value to normalize.
* @return {Array}
*/
function normalizeEntities(base, input) {
if (!input) return;
if (!Array.isArray(input)) input = [ input ];
return flatten(input).filter(Boolean).map(function (entity) {
assert(entity.rel, 'sub-entities must have a rel');
var ret = normalizeEntity(base, entity);
ret.rel = normalizeRel(base, entity.rel);
if (entity.href) ret.href = normalizeHref(base, entity.href);
return ret;
});
}
/**
* Takes the `input` link value and normalizes it into a single object.
*
* @param {String} base The base URL for this API.
* @param {Object} input The link value to normalize.
* @return {Object}
*/
function normalizeLink(base, input) {
assert(input.rel, 'links must have a rel');
assert(input.href, 'links must have an href');
var ret = clone(input);
ret.rel = normalizeRel(base, input.rel);
ret.href = normalizeHref(base, input.href);
var cls = normalizeClass(input.class);
if (cls) ret.class = cls;
return ret;
}
/**
* Takes the `input` links value and normalizes it into a single array.
*
* @param {String} base The base URL for this API.
* @param {Object} input The links value to normalize.
* @return {Array}
*/
function normalizeLinks(base, input) {
if (!input) return;
if (!Array.isArray(input)) input = [ input ];
return flatten(input).filter(Boolean).map(function (link) {
return normalizeLink(base, link);
});
}
/**
* Takes the `input` method value and normalizes it into a consistent string.
*
* @param {String} input The method value to normalize.
* @return {String}
*/
function normalizeMethod(input) {
if (!input) return;
return input.toUpperCase();
}
/**
* Takes the `input` action value and normalizes it into a single object.
*
* @param {String} base The base URL for this API.
* @param {Object} input The action value to normalize.
* @return {Object}
*/
function normalizeAction(base, input) {
assert(input.name, 'actions must have a name');
assert(input.href, 'actions must have an href');
var ret = clone(input);
ret.href = normalizeHref(base, input.href);
if (input.method) ret.method = normalizeMethod(input.method);
var cls = normalizeClass(input.class);
if (cls) ret.class = cls;
var fields = normalizeFields(input.fields);
if (fields) ret.fields = fields;
return ret;
}
/**
* Takes the `input` actions value and normalizes it into a single array.
*
* @param {String} base The base URL for this API.
* @param {Mixed} input The links value to normalize.
* @return {Array}
*/
function normalizeActions(base, input) {
if (!input) return;
if (!Array.isArray(input)) input = [ input ];
return flatten(input).filter(Boolean).map(function (action) {
return normalizeAction(base, action);
});
}
/**
* Takes the `input` link value and normalizes it into a single object.
*
* @param {Object} input The field value to normalize.
* @return {Object}
*/
function normalizeField(input) {
assert(input.name, 'fields must have a name');
var ret = clone(input);
var cls = normalizeClass(input.class);
if (cls) ret.class = cls;
return ret;
}
/**
* Takes the `input` fields value and normalizes it into a single array.
*
* @param {Mixed} input The links value to normalize.
* @return {Array}
*/
function normalizeFields(input) {
if (!input) return;
if (!Array.isArray(input)) input = [ input ];
return flatten(input).filter(Boolean).map(normalizeField);
}