Fix: fix linter-found issues Chore: move findOperatorId to own middleware file Chore: delete old routes.js file and rename new-routes.js to routes.js Fix: PR fixes
22 lines
493 B
JavaScript
22 lines
493 B
JavaScript
const _ = require('lodash/fp')
|
|
const crypto = require('crypto')
|
|
|
|
function sha256 (buf) {
|
|
const hash = crypto.createHash('sha256')
|
|
|
|
hash.update(buf)
|
|
return hash.digest('hex').toString('hex')
|
|
}
|
|
|
|
const populateDeviceId = function (req, res, next) {
|
|
const deviceId = _.isFunction(req.connection.getPeerCertificate)
|
|
? sha256(req.connection.getPeerCertificate().raw)
|
|
: null
|
|
|
|
req.deviceId = deviceId
|
|
req.deviceTime = req.get('date')
|
|
|
|
next()
|
|
}
|
|
|
|
module.exports = populateDeviceId
|