refactor: getOperatorId return value
This commit is contained in:
parent
5b38ac2636
commit
74b3c1a9ce
4 changed files with 4 additions and 4 deletions
|
|
@ -133,7 +133,7 @@ function sendRadar (data) {
|
||||||
function mapRecord (rates, settings) {
|
function mapRecord (rates, settings) {
|
||||||
const timestamp = new Date().toISOString()
|
const timestamp = new Date().toISOString()
|
||||||
return Promise.all([getMachines(rates, settings), getOperatorId('coinatmradar')])
|
return Promise.all([getMachines(rates, settings), getOperatorId('coinatmradar')])
|
||||||
.then(([machines, { operatorId }]) => {
|
.then(([machines, operatorId]) => {
|
||||||
return {
|
return {
|
||||||
operatorId: operatorId,
|
operatorId: operatorId,
|
||||||
operator: {
|
operator: {
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ const { getOperatorId } = require('../operator')
|
||||||
|
|
||||||
function findOperatorId (req, res, next) {
|
function findOperatorId (req, res, next) {
|
||||||
return getOperatorId('middleware')
|
return getOperatorId('middleware')
|
||||||
.then(({ operatorId }) => {
|
.then(operatorId => {
|
||||||
res.locals.operatorId = operatorId
|
res.locals.operatorId = operatorId
|
||||||
return next()
|
return next()
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ const { getOperatorId } = require('../../operator')
|
||||||
|
|
||||||
const hostname = options.hostname
|
const hostname = options.hostname
|
||||||
|
|
||||||
router.use('*', async (req, res, next) => getOperatorId('authentication').then(({ operatorId }) => session({
|
router.use('*', async (req, res, next) => getOperatorId('authentication').then(operatorId => session({
|
||||||
store: new PgSession({
|
store: new PgSession({
|
||||||
pgPromise: db,
|
pgPromise: db,
|
||||||
tableName: USER_SESSIONS_TABLE_NAME
|
tableName: USER_SESSIONS_TABLE_NAME
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ const _ = require('lodash/fp')
|
||||||
function getOperatorId (service) {
|
function getOperatorId (service) {
|
||||||
const sql = `SELECT operator_id FROM operator_ids WHERE service = '${service}'`
|
const sql = `SELECT operator_id FROM operator_ids WHERE service = '${service}'`
|
||||||
return db.oneOrNone(sql)
|
return db.oneOrNone(sql)
|
||||||
.then(_.mapKeys(_.camelCase))
|
.then(_.get('operator_id'))
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = { getOperatorId }
|
module.exports = { getOperatorId }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue