1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-03 17:59:28 +02:00
OpenSTF/lib/util/datautil.js
2016-07-22 19:40:27 +05:30

76 lines
1.8 KiB
JavaScript

var deviceData = require('stf-device-db')
var browserData = require('stf-browser-db')
var logger = require('./logger')
var log = logger.createLogger('util:datautil')
var datautil = module.exports = Object.create(null)
datautil.applyData = function(device) {
var match = deviceData.find({
model: device.model
, name: device.product
})
if (match) {
device.name = match.name.id
device.releasedAt = match.date
device.image = match.image
device.cpu = match.cpu
device.memory = match.memory
if (match.display && match.display.s) {
device.display = device.display || {}
device.display.inches = match.display.s
}
}
else {
log.info(
'Device database does not have an entry for "%s" (model "%s"/"%s"). ' +
'This is not an error, it only means that we don\'t have data for it yet.'
, device.serial
, device.model
, device.product
)
}
return device
}
datautil.applyBrowsers = function(device) {
if (device.browser) {
device.browser.apps.forEach(function(app) {
var data = browserData[app.type]
if (data) {
app.developer = data.developer
}
})
}
return device
}
datautil.applyOwner = function(device, user) {
device.using = !!device.owner && device.owner.email === user.email
return device
}
// Only owner can see this information
datautil.applyOwnerOnlyInfo = function(device, user) {
if (device.owner && device.owner.email === user.email) {
// No-op
}
else {
device.remoteConnect = false
device.remoteConnectUrl = null
}
}
datautil.normalize = function(device, user) {
datautil.applyData(device)
datautil.applyBrowsers(device)
datautil.applyOwner(device, user)
datautil.applyOwnerOnlyInfo(device, user)
if (!device.present) {
device.owner = null
}
}