forked from electerious/Ackee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevices.js
50 lines (43 loc) · 1.92 KB
/
devices.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
'use strict'
const Record = require('../models/Record')
const aggregateTopRecords = require('../aggregations/aggregateTopRecords')
const aggregateNewRecords = require('../aggregations/aggregateNewRecords')
const aggregateRecentRecords = require('../aggregations/aggregateRecentRecords')
const sortings = require('../constants/sortings')
const constants = require('../constants/devices')
const recursiveId = require('../utils/recursiveId')
const get = async (ids, sorting, type, range, limit, dateDetails) => {
const aggregation = (() => {
if (type === constants.DEVICES_TYPE_NO_MODEL) {
if (sorting === sortings.SORTINGS_TOP) return aggregateTopRecords(ids, [ 'deviceManufacturer' ], range, limit, dateDetails)
if (sorting === sortings.SORTINGS_NEW) return aggregateNewRecords(ids, [ 'deviceManufacturer' ], limit)
if (sorting === sortings.SORTINGS_RECENT) return aggregateRecentRecords(ids, [ 'deviceManufacturer' ], limit)
}
if (type === constants.DEVICES_TYPE_WITH_MODEL) {
if (sorting === sortings.SORTINGS_TOP) return aggregateTopRecords(ids, [ 'deviceManufacturer', 'deviceName' ], range, limit, dateDetails)
if (sorting === sortings.SORTINGS_NEW) return aggregateNewRecords(ids, [ 'deviceManufacturer', 'deviceName' ], limit)
if (sorting === sortings.SORTINGS_RECENT) return aggregateRecentRecords(ids, [ 'deviceManufacturer', 'deviceName' ], limit)
}
})()
const enhanceId = (id) => {
if (type === constants.DEVICES_TYPE_NO_MODEL) return `${ id.deviceManufacturer }`
if (type === constants.DEVICES_TYPE_WITH_MODEL) return `${ id.deviceManufacturer } ${ id.deviceName }`
}
const enhance = (entries) => {
return entries.map((entry) => {
const value = enhanceId(entry._id)
return {
id: recursiveId([ value, sorting, type, range, ...ids ]),
value,
count: entry.count,
created: entry.created,
}
})
}
return enhance(
await Record.aggregate(aggregation),
)
}
module.exports = {
get,
}