-
Notifications
You must be signed in to change notification settings - Fork 44
/
index.js
376 lines (301 loc) · 9.4 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
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
'use strict';
const uniq = require('lodash.uniq');
const cloneDeep = require('lodash.clonedeep');
const flatten = require('lodash.flatten');
const airpods = require('./airpods.json');
const apple_tv = require('./apple_tv.json');
const apple_watch = require('./apple_watch.json');
const homepod = require('./homepod.json');
const ipad = require('./ipad.json');
const ipad_air = require('./ipad_air.json');
const ipad_pro = require('./ipad_pro.json');
const ipad_mini = require('./ipad_mini.json');
const iphone = require('./iphone.json');
const ipod_touch = require('./ipod_touch.json');
const all = (() => {
let l = [];
let total = [].concat(
airpods.map(v => { v.Type = 'airpods'; return v; }),
apple_tv.map(v => { v.Type = 'apple_tv'; return v; }),
apple_watch.map(v => { v.Type = 'apple_watch'; return v; }),
homepod.map(v => { v.Type = 'homepod'; return v; }),
ipad.map(v => { v.Type = 'ipad'; return v; }),
ipad_air.map(v => { v.Type = 'ipad_air'; return v; }),
ipad_pro.map(v => { v.Type = 'ipad_pro'; return v; }),
ipad_mini.map(v => { v.Type = 'ipad_mini'; return v; }),
iphone.map(v => { v.Type = 'iphone'; return v; }),
ipod_touch.map(v => { v.Type = 'ipod_touch'; return v; })
);
total.forEach(v => {
// Some devices don't have any models information defined, we still want them to be listed
if(!v.Models || v.Models.length === 0) {
let item = createItem(v, null, null);
l.push(item);
} else {
v.Models.forEach(m => {
m.Model.forEach(mid => {
let item = createItem(v,m, mid);
l.push(item);
});
});
}
});
return l;
})();
function createItem(device, model, modelID) {
let item = {
Type: device.Type,
Generation: device.Generation,
ANumber: device.ANumber,
Bootrom: device.Bootrom,
Variant: device.Variant,
FCCID: device.FCCID,
InternalName: device.InternalName,
Identifier: device.Identifier,
Color: model ? model.Color : '',
Storage: model ? model.Storage : '',
Model: modelID ? modelID : ''
};
if (model && model.CaseMaterial) {
item.CaseMaterial = model.CaseMaterial;
}
return item;
}
function deviceTypes() {
return 'airpods,apple_tv,apple_watch,homepod,ipad,ipad_air,ipad_pro,ipad_mini,iphone,ipod_touch'.split(',');
}
function devices(type) {
if (type) {
if (deviceTypes().indexOf(type) === -1) {
throw new TypeError('Invalid type parameter');
}
return cloneDeep(all.filter(d => d.Type === type));
}
return cloneDeep(all);
}
function generations(type) {
let list;
if (type) {
if (deviceTypes().indexOf(type) === -1) {
throw new TypeError('Invalid type parameter');
}
list = all.filter(d => d.Type === type);
} else {
list = all;
}
return uniq(list.map(v => v.Generation));
}
function anumbers(type) {
let list;
if (type) {
if (deviceTypes().indexOf(type) === -1) {
throw new TypeError('Invalid type parameter');
}
list = all.filter(d => d.Type === type);
} else {
list = all;
}
return uniq(flatten(list.map(v => v.ANumber))).sort();
}
function fccids(type) {
let list;
if (type) {
if (deviceTypes().indexOf(type) === -1) {
throw new TypeError('Invalid type parameter');
}
list = all.filter(d => d.Type === type);
} else {
list = all;
}
return uniq(flatten(list.map(v => v.FCCID))).sort();
}
function internalNames(type) {
let list;
if (type) {
if (deviceTypes().indexOf(type) === -1) {
throw new TypeError('Invalid type parameter');
}
list = all.filter(d => d.Type === type);
} else {
list = all;
}
return uniq(flatten(list.map(v => v.InternalName))).sort();
}
function identifiers(type) {
let list;
if (type) {
if (deviceTypes().indexOf(type) === -1) {
throw new TypeError('Invalid type parameter');
}
list = all.filter(d => d.Type === type);
} else {
list = all;
}
return uniq(list.map(v => v.Identifier)).sort();
}
function colors(type) {
let list;
if (type) {
if (deviceTypes().indexOf(type) === -1) {
throw new TypeError('Invalid type parameter');
}
list = all.filter(d => d.Type === type);
} else {
list = all;
}
return uniq(list.map(v => v.Color)).sort();
}
function storages(type) {
let list;
if (type) {
if (deviceTypes().indexOf(type) === -1) {
throw new TypeError('Invalid type parameter');
}
list = all.filter(d => d.Type === type);
} else {
list = all;
}
return uniq(list.map(v => v.Storage)).sort();
}
function models(type) {
let list;
if (type) {
if (deviceTypes().indexOf(type) === -1) {
throw new TypeError('Invalid type parameter');
}
list = all.filter(d => d.Type === type);
} else {
list = all;
}
return uniq(list.map(v => v.Model)).sort();
}
function deviceByGeneration(generation, type, options) {
if (typeof generation !== 'string') {
throw new TypeError('`generation` parameter must be a string');
}
options = options || {};
let caseInsensitive = !!options.caseInsensitive;
let contains = !!options.contains;
return deviceByFilter(generation, 'Generation', type, caseInsensitive, contains);
}
function deviceByANumber(anumber, type, options) {
if (typeof anumber !== 'string') {
throw new TypeError('`anumber` parameter must be a string');
}
options = options || {};
let caseInsensitive = !!options.caseInsensitive;
let contains = !!options.contains;
return deviceByFilter(anumber, 'ANumber', type, caseInsensitive, contains, true);
}
function deviceByFCCID(fccid, type, options) {
if (typeof fccid !== 'string') {
throw new TypeError('`fccid` parameter must be a string');
}
options = options || {};
let caseInsensitive = !!options.caseInsensitive;
let contains = !!options.contains;
return deviceByFilter(fccid, 'FCCID', type, caseInsensitive, contains, true);
}
function deviceByInternalName(name, type, options) {
if (typeof name !== 'string') {
throw new TypeError('`name` parameter must be a string');
}
options = options || {};
let caseInsensitive = !!options.caseInsensitive;
let contains = !!options.contains;
return deviceByFilter(name, 'InternalName', type, caseInsensitive, contains, true);
}
function deviceByIdentifier(id, type, options) {
if (typeof id !== 'string') {
throw new TypeError('`id` parameter must be a string');
}
options = options || {};
let caseInsensitive = !!options.caseInsensitive;
let contains = !!options.contains;
return deviceByFilter(id, 'Identifier', type, caseInsensitive, contains, true);
}
function deviceByColor(color, type, options) {
if (typeof color !== 'string') {
throw new TypeError('`color` parameter must be a string');
}
options = options || {};
let caseInsensitive = !!options.caseInsensitive;
let contains = !!options.contains;
return deviceByFilter(color, 'Color', type, caseInsensitive, contains);
}
function deviceByStorage(storage, type, options) {
if (typeof storage !== 'string') {
throw new TypeError('`storage` parameter must be a string');
}
options = options || {};
let caseInsensitive = !!options.caseInsensitive;
let contains = !!options.contains;
return deviceByFilter(storage, 'Storage', type, caseInsensitive, contains);
}
function deviceByModel(model, type, options) {
if (typeof model !== 'string') {
throw new TypeError('`model` parameter must be a string');
}
options = options || {};
let caseInsensitive = !!options.caseInsensitive;
let contains = !!options.contains;
return deviceByFilter(model, 'Model', type, caseInsensitive, contains);
}
function deviceByFilter(find, field, type, caseInsensitive, contains, findInArray) {
let list;
if (type) {
if (deviceTypes().indexOf(type) === -1) {
throw new TypeError('Invalid type parameter');
}
list = all.filter(d => d.Type === type);
} else {
list = all;
}
return list.filter(device => {
if (!device[field]) {
return false;
}
let match = false;
if (typeof device[field] === 'string') {
match = device[field] === find ||
contains && device[field].indexOf(find) !== -1 ||
caseInsensitive && device[field].toLowerCase() === find.toLowerCase() ||
caseInsensitive && contains && device[field].toLowerCase().indexOf(find.toLowerCase()) !== -1;
}
if (!findInArray) {
return match;
}
if (match === true) {
return true;
}
if (findInArray && !Array.isArray(device[field])) {
return false;
}
let arrMatch = false;
device[field].forEach(current => {
arrMatch = arrMatch ||
current === find ||
contains && current.indexOf(find) !== -1 ||
caseInsensitive && current.toLowerCase() === find.toLowerCase() ||
caseInsensitive && contains && current.toLowerCase().indexOf(find.toLowerCase()) !== -1;
});
return arrMatch;
});
}
function generationByIdentifier(id, type) {
if (typeof id !== 'string') {
throw new TypeError('`id` parameter must be a string');
}
let devices = deviceByFilter(id, 'Identifier', type, false, false, true);
if (devices.length === 0) {
return;
}
return devices[0].Generation;
}
module.exports = {
deviceTypes, devices,
generations, anumbers, fccids, internalNames, identifiers, colors, storages, models,
deviceByGeneration, deviceByANumber, deviceByFCCID, deviceByInternalName,
deviceByIdentifier, deviceByColor, deviceByStorage, deviceByModel,
generationByIdentifier
};