chore: server code formatting
This commit is contained in:
parent
aedabcbdee
commit
68517170e2
234 changed files with 9824 additions and 6195 deletions
|
|
@ -4,16 +4,13 @@ const router = express.Router()
|
|||
|
||||
const cashbox = require('../cashbox-batches')
|
||||
const notifier = require('../notifier')
|
||||
const { getMachine, setMachine, getMachineName } = require('../machine-loader')
|
||||
const { getMachine, getMachineName } = require('../machine-loader')
|
||||
const { loadLatestConfig } = require('../new-settings-loader')
|
||||
const { getCashInSettings } = require('../new-config-manager')
|
||||
const { AUTOMATIC } = require('../constants')
|
||||
const logger = require('../logger')
|
||||
|
||||
|
||||
function cashboxRemoval (req, res, next) {
|
||||
const operatorId = res.locals.operatorId
|
||||
|
||||
function cashboxRemoval(req, res, next) {
|
||||
notifier.cashboxNotify(req.deviceId).catch(logger.error)
|
||||
|
||||
return Promise.all([getMachine(req.deviceId), loadLatestConfig()])
|
||||
|
|
@ -22,16 +19,23 @@ function cashboxRemoval (req, res, next) {
|
|||
if (cashInSettings.cashboxReset !== AUTOMATIC) {
|
||||
return Promise.all([
|
||||
cashbox.getMachineUnbatchedBills(req.deviceId),
|
||||
getMachineName(req.deviceId)
|
||||
getMachineName(req.deviceId),
|
||||
])
|
||||
}
|
||||
return cashbox.createCashboxBatch(req.deviceId, machine.cashbox)
|
||||
.then(batch => Promise.all([
|
||||
cashbox.getBatchById(batch.id),
|
||||
getMachineName(batch.device_id)
|
||||
]))
|
||||
return cashbox
|
||||
.createCashboxBatch(req.deviceId, machine.cashbox)
|
||||
.then(batch =>
|
||||
Promise.all([
|
||||
cashbox.getBatchById(batch.id),
|
||||
getMachineName(batch.device_id),
|
||||
]),
|
||||
)
|
||||
})
|
||||
.then(([batch, machineName]) => res.status(200).send({ batch: _.merge(batch, { machineName }), status: 'OK' }))
|
||||
.then(([batch, machineName]) =>
|
||||
res
|
||||
.status(200)
|
||||
.send({ batch: _.merge(batch, { machineName }), status: 'OK' }),
|
||||
)
|
||||
.catch(next)
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -26,10 +26,14 @@ const loyalty = require('../loyalty')
|
|||
const logger = require('../logger')
|
||||
const externalCompliance = require('../compliance-external')
|
||||
|
||||
function updateCustomerCustomInfoRequest (customerId, patch) {
|
||||
const promise = _.isNil(patch.data) ?
|
||||
Promise.resolve(null) :
|
||||
customInfoRequestQueries.setCustomerDataViaMachine(customerId, patch.infoRequestId, patch)
|
||||
function updateCustomerCustomInfoRequest(customerId, patch) {
|
||||
const promise = _.isNil(patch.data)
|
||||
? Promise.resolve(null)
|
||||
: customInfoRequestQueries.setCustomerDataViaMachine(
|
||||
customerId,
|
||||
patch.infoRequestId,
|
||||
patch,
|
||||
)
|
||||
return promise.then(() => customers.getById(customerId))
|
||||
}
|
||||
|
||||
|
|
@ -37,21 +41,24 @@ const createPendingManualComplianceNotifs = (settings, customer, deviceId) => {
|
|||
const customInfoRequests = _.reduce(
|
||||
(reqs, req) => _.set(req.info_request_id, req, reqs),
|
||||
{},
|
||||
_.get(['customInfoRequestData'], customer)
|
||||
_.get(['customInfoRequestData'], customer),
|
||||
)
|
||||
|
||||
const isPending = field =>
|
||||
uuid.validate(field) ?
|
||||
_.get([field, 'override'], customInfoRequests) === 'automatic' :
|
||||
customer[`${field}At`]
|
||||
&& (!customer[`${field}OverrideAt`]
|
||||
|| customer[`${field}OverrideAt`].getTime() < customer[`${field}At`].getTime())
|
||||
uuid.validate(field)
|
||||
? _.get([field, 'override'], customInfoRequests) === 'automatic'
|
||||
: customer[`${field}At`] &&
|
||||
(!customer[`${field}OverrideAt`] ||
|
||||
customer[`${field}OverrideAt`].getTime() <
|
||||
customer[`${field}At`].getTime())
|
||||
|
||||
const unnestCustomTriggers = triggersAutomation => {
|
||||
const customTriggers = _.fromPairs(_.map(({ id, type }) => [id, type], triggersAutomation.custom))
|
||||
const customTriggers = _.fromPairs(
|
||||
_.map(({ id, type }) => [id, type], triggersAutomation.custom),
|
||||
)
|
||||
return _.flow(
|
||||
_.unset('custom'),
|
||||
_.mapKeys(k => k === 'facephoto' ? 'frontCamera' : k),
|
||||
_.mapKeys(k => (k === 'facephoto' ? 'frontCamera' : k)),
|
||||
_.assign(customTriggers),
|
||||
)(triggersAutomation)
|
||||
}
|
||||
|
|
@ -61,22 +68,31 @@ const createPendingManualComplianceNotifs = (settings, customer, deviceId) => {
|
|||
const hasManualAutomation = triggersAutomation =>
|
||||
_.any(isManual, _.values(triggersAutomation))
|
||||
|
||||
configManager.getTriggersAutomation(customInfoRequestQueries.getCustomInfoRequests(true), settings.config)
|
||||
configManager
|
||||
.getTriggersAutomation(
|
||||
customInfoRequestQueries.getCustomInfoRequests(true),
|
||||
settings.config,
|
||||
)
|
||||
.then(triggersAutomation => {
|
||||
triggersAutomation = unnestCustomTriggers(triggersAutomation)
|
||||
if (!hasManualAutomation(triggersAutomation)) return
|
||||
|
||||
const pendingFields = _.filter(
|
||||
field => isManual(triggersAutomation[field]) && isPending(field),
|
||||
_.keys(triggersAutomation)
|
||||
_.keys(triggersAutomation),
|
||||
)
|
||||
|
||||
if (!_.isEmpty(pendingFields))
|
||||
notifier.complianceNotify(settings, customer, deviceId, 'PENDING_COMPLIANCE')
|
||||
notifier.complianceNotify(
|
||||
settings,
|
||||
customer,
|
||||
deviceId,
|
||||
'PENDING_COMPLIANCE',
|
||||
)
|
||||
})
|
||||
}
|
||||
|
||||
function updateCustomer (req, res, next) {
|
||||
function updateCustomer(req, res, next) {
|
||||
const id = req.params.id
|
||||
const patch = req.body
|
||||
const deviceId = req.deviceId
|
||||
|
|
@ -91,8 +107,11 @@ function updateCustomer (req, res, next) {
|
|||
.catch(next)
|
||||
}
|
||||
|
||||
customers.getById(id)
|
||||
.then(customer => !customer ? Promise.reject(httpError('Not Found', 404)) : {})
|
||||
customers
|
||||
.getById(id)
|
||||
.then(customer =>
|
||||
!customer ? Promise.reject(httpError('Not Found', 404)) : {},
|
||||
)
|
||||
.then(_.merge(patch))
|
||||
.then(newPatch => customers.updatePhotoCard(id, newPatch))
|
||||
.then(newPatch => customers.updateFrontCamera(id, newPatch))
|
||||
|
|
@ -104,37 +123,44 @@ function updateCustomer (req, res, next) {
|
|||
.catch(next)
|
||||
}
|
||||
|
||||
function updateIdCardData (req, res, next) {
|
||||
function updateIdCardData(req, res, next) {
|
||||
const id = req.params.id
|
||||
const patch = req.body
|
||||
customers.getById(id)
|
||||
customers
|
||||
.getById(id)
|
||||
.then(customer => {
|
||||
if (!customer) { throw httpError('Not Found', 404) }
|
||||
return customers.updateIdCardData(patch, id)
|
||||
.then(() => customer)
|
||||
if (!customer) {
|
||||
throw httpError('Not Found', 404)
|
||||
}
|
||||
return customers.updateIdCardData(patch, id).then(() => customer)
|
||||
})
|
||||
.then(customer => respond(req, res, { customer }))
|
||||
.catch(next)
|
||||
}
|
||||
|
||||
function triggerSanctions (req, res, next) {
|
||||
function triggerSanctions(req, res, next) {
|
||||
const id = req.params.id
|
||||
|
||||
customers.getById(id)
|
||||
customers
|
||||
.getById(id)
|
||||
.then(customer => {
|
||||
if (!customer) { throw httpError('Not Found', 404) }
|
||||
return compliance.validationPatch(req.deviceId, customer)
|
||||
if (!customer) {
|
||||
throw httpError('Not Found', 404)
|
||||
}
|
||||
return compliance
|
||||
.validationPatch(req.deviceId, customer)
|
||||
.then(patch => customers.update(id, patch))
|
||||
})
|
||||
.then(customer => respond(req, res, { customer }))
|
||||
.catch(next)
|
||||
}
|
||||
|
||||
function triggerBlock (req, res, next) {
|
||||
function triggerBlock(req, res, next) {
|
||||
const id = req.params.id
|
||||
const settings = req.settings
|
||||
|
||||
customers.update(id, { authorizedOverride: 'blocked' })
|
||||
customers
|
||||
.update(id, { authorizedOverride: 'blocked' })
|
||||
.then(customer => {
|
||||
notifier.complianceNotify(settings, customer, req.deviceId, 'BLOCKED')
|
||||
return respond(req, res, { customer })
|
||||
|
|
@ -142,27 +168,39 @@ function triggerBlock (req, res, next) {
|
|||
.catch(next)
|
||||
}
|
||||
|
||||
function triggerSuspend (req, res, next) {
|
||||
function triggerSuspend(req, res, next) {
|
||||
const id = req.params.id
|
||||
const triggerId = req.body.triggerId
|
||||
const settings = req.settings
|
||||
|
||||
const triggers = configManager.getTriggers(req.settings.config)
|
||||
const getSuspendDays = _.compose(_.get('suspensionDays'), _.find(_.matches({ id: triggerId })))
|
||||
const getSuspendDays = _.compose(
|
||||
_.get('suspensionDays'),
|
||||
_.find(_.matches({ id: triggerId })),
|
||||
)
|
||||
|
||||
const days = _.includes(triggerId, ['no-ff-camera', 'id-card-photo-disabled']) ? 1 : getSuspendDays(triggers)
|
||||
const days = _.includes(triggerId, ['no-ff-camera', 'id-card-photo-disabled'])
|
||||
? 1
|
||||
: getSuspendDays(triggers)
|
||||
|
||||
const suspensionDuration = intervalToDuration({ start: 0, end: T.day * days })
|
||||
|
||||
customers.update(id, { suspendedUntil: add(suspensionDuration, new Date()) })
|
||||
customers
|
||||
.update(id, { suspendedUntil: add(suspensionDuration, new Date()) })
|
||||
.then(customer => {
|
||||
notifier.complianceNotify(settings, customer, req.deviceId, 'SUSPENDED', days)
|
||||
notifier.complianceNotify(
|
||||
settings,
|
||||
customer,
|
||||
req.deviceId,
|
||||
'SUSPENDED',
|
||||
days,
|
||||
)
|
||||
return respond(req, res, { customer })
|
||||
})
|
||||
.catch(next)
|
||||
}
|
||||
|
||||
function updateTxCustomerPhoto (req, res, next) {
|
||||
function updateTxCustomerPhoto(req, res, next) {
|
||||
const customerId = req.params.id
|
||||
const txId = req.params.txId
|
||||
const tcPhotoData = req.body.tcPhotoData
|
||||
|
|
@ -171,63 +209,81 @@ function updateTxCustomerPhoto (req, res, next) {
|
|||
Promise.all([customers.getById(customerId), txs.getTx(txId, direction)])
|
||||
.then(([customer, tx]) => {
|
||||
if (!customer || !tx) return
|
||||
return customers.updateTxCustomerPhoto(tcPhotoData)
|
||||
.then(newPatch => txs.updateTxCustomerPhoto(customerId, txId, direction, newPatch))
|
||||
return customers
|
||||
.updateTxCustomerPhoto(tcPhotoData)
|
||||
.then(newPatch =>
|
||||
txs.updateTxCustomerPhoto(customerId, txId, direction, newPatch),
|
||||
)
|
||||
})
|
||||
.then(() => respond(req, res, {}))
|
||||
.catch(next)
|
||||
}
|
||||
|
||||
function buildSms (data, receiptOptions) {
|
||||
return Promise.all([getTx(data.session, data.txClass), loadLatestConfig()])
|
||||
.then(([tx, config]) => {
|
||||
return Promise.all([customers.getCustomerById(tx.customer_id), machineLoader.getMachine(tx.device_id, config)])
|
||||
.then(([customer, deviceConfig]) => {
|
||||
const formattedTx = _.mapKeys(_.camelCase)(tx)
|
||||
const localeConfig = configManager.getLocale(formattedTx.deviceId, config)
|
||||
const timezone = localeConfig.timezone
|
||||
function buildSms(data, receiptOptions) {
|
||||
return Promise.all([
|
||||
getTx(data.session, data.txClass),
|
||||
loadLatestConfig(),
|
||||
]).then(([tx, config]) => {
|
||||
return Promise.all([
|
||||
customers.getCustomerById(tx.customer_id),
|
||||
machineLoader.getMachine(tx.device_id, config),
|
||||
]).then(([customer, deviceConfig]) => {
|
||||
const formattedTx = _.mapKeys(_.camelCase)(tx)
|
||||
const localeConfig = configManager.getLocale(formattedTx.deviceId, config)
|
||||
const timezone = localeConfig.timezone
|
||||
|
||||
const cashInCommission = new BN(1).plus(new BN(formattedTx.commissionPercentage))
|
||||
const cashInCommission = new BN(1).plus(
|
||||
new BN(formattedTx.commissionPercentage),
|
||||
)
|
||||
|
||||
const rate = new BN(formattedTx.rawTickerPrice).multipliedBy(cashInCommission).decimalPlaces(2)
|
||||
const date = utcToZonedTime(timezone, zonedTimeToUtc(process.env.TZ, new Date()))
|
||||
const dateString = `${date.toISOString().replace('T', ' ').slice(0, 19)}`
|
||||
const rate = new BN(formattedTx.rawTickerPrice)
|
||||
.multipliedBy(cashInCommission)
|
||||
.decimalPlaces(2)
|
||||
const date = utcToZonedTime(
|
||||
timezone,
|
||||
zonedTimeToUtc(process.env.TZ, new Date()),
|
||||
)
|
||||
const dateString = `${date.toISOString().replace('T', ' ').slice(0, 19)}`
|
||||
|
||||
const data = {
|
||||
operatorInfo: configManager.getOperatorInfo(config),
|
||||
location: deviceConfig.machineLocation,
|
||||
customerName: customer.name,
|
||||
customerPhone: customer.phone,
|
||||
session: formattedTx.id,
|
||||
time: dateString,
|
||||
direction: formattedTx.txClass === 'cashIn' ? 'Cash-in' : 'Cash-out',
|
||||
fiat: `${formattedTx.fiat.toString()} ${formattedTx.fiatCode}`,
|
||||
crypto: `${sms.toCryptoUnits(BN(formattedTx.cryptoAtoms), formattedTx.cryptoCode)} ${formattedTx.cryptoCode}`,
|
||||
rate: `1 ${formattedTx.cryptoCode} = ${rate} ${formattedTx.fiatCode}`,
|
||||
address: formattedTx.toAddress,
|
||||
txId: formattedTx.txHash
|
||||
}
|
||||
const data = {
|
||||
operatorInfo: configManager.getOperatorInfo(config),
|
||||
location: deviceConfig.machineLocation,
|
||||
customerName: customer.name,
|
||||
customerPhone: customer.phone,
|
||||
session: formattedTx.id,
|
||||
time: dateString,
|
||||
direction: formattedTx.txClass === 'cashIn' ? 'Cash-in' : 'Cash-out',
|
||||
fiat: `${formattedTx.fiat.toString()} ${formattedTx.fiatCode}`,
|
||||
crypto: `${sms.toCryptoUnits(BN(formattedTx.cryptoAtoms), formattedTx.cryptoCode)} ${formattedTx.cryptoCode}`,
|
||||
rate: `1 ${formattedTx.cryptoCode} = ${rate} ${formattedTx.fiatCode}`,
|
||||
address: formattedTx.toAddress,
|
||||
txId: formattedTx.txHash,
|
||||
}
|
||||
|
||||
return sms.formatSmsReceipt(data, receiptOptions)
|
||||
})
|
||||
return sms.formatSmsReceipt(data, receiptOptions)
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
function sendSmsReceipt (req, res, next) {
|
||||
const receiptOptions = _.omit(['active', 'sms'], configManager.getReceipt(req.settings.config))
|
||||
buildSms(req.body.data, receiptOptions)
|
||||
.then(smsRequest => {
|
||||
sms.sendMessage(req.settings, smsRequest)
|
||||
.then(() => respond(req, res, {}))
|
||||
.catch(next)
|
||||
})
|
||||
function sendSmsReceipt(req, res, next) {
|
||||
const receiptOptions = _.omit(
|
||||
['active', 'sms'],
|
||||
configManager.getReceipt(req.settings.config),
|
||||
)
|
||||
buildSms(req.body.data, receiptOptions).then(smsRequest => {
|
||||
sms
|
||||
.sendMessage(req.settings, smsRequest)
|
||||
.then(() => respond(req, res, {}))
|
||||
.catch(next)
|
||||
})
|
||||
}
|
||||
|
||||
function getExternalComplianceLink (req, res, next) {
|
||||
function getExternalComplianceLink(req, res, next) {
|
||||
const customerId = req.query.customer
|
||||
const triggerId = req.query.trigger
|
||||
const isRetry = req.query.isRetry
|
||||
if (_.isNil(customerId) || _.isNil(triggerId)) return next(httpError('Not Found', 404))
|
||||
if (_.isNil(customerId) || _.isNil(triggerId))
|
||||
return next(httpError('Not Found', 404))
|
||||
|
||||
const settings = req.settings
|
||||
const triggers = configManager.getTriggers(settings.config)
|
||||
|
|
@ -235,17 +291,27 @@ function getExternalComplianceLink (req, res, next) {
|
|||
const externalService = trigger.externalService
|
||||
|
||||
if (isRetry) {
|
||||
return externalCompliance.createLink(settings, externalService, customerId)
|
||||
return externalCompliance
|
||||
.createLink(settings, externalService, customerId)
|
||||
.then(url => respond(req, res, { url }))
|
||||
}
|
||||
|
||||
return externalCompliance.createApplicant(settings, externalService, customerId)
|
||||
.then(applicant => customers.addExternalCompliance(customerId, externalService, applicant.id))
|
||||
.then(() => externalCompliance.createLink(settings, externalService, customerId))
|
||||
return externalCompliance
|
||||
.createApplicant(settings, externalService, customerId)
|
||||
.then(applicant =>
|
||||
customers.addExternalCompliance(
|
||||
customerId,
|
||||
externalService,
|
||||
applicant.id,
|
||||
),
|
||||
)
|
||||
.then(() =>
|
||||
externalCompliance.createLink(settings, externalService, customerId),
|
||||
)
|
||||
.then(url => respond(req, res, { url }))
|
||||
}
|
||||
|
||||
function addOrUpdateCustomer (customerData, deviceId, config, isEmailAuth) {
|
||||
function addOrUpdateCustomer(customerData, deviceId, config, isEmailAuth) {
|
||||
const triggers = configManager.getTriggers(config)
|
||||
const maxDaysThreshold = complianceTriggers.maxDaysThreshold(triggers)
|
||||
|
||||
|
|
@ -262,34 +328,42 @@ function addOrUpdateCustomer (customerData, deviceId, config, isEmailAuth) {
|
|||
.then(customer => customers.getById(customer.id))
|
||||
.then(customer => {
|
||||
customers.updateLastAuthAttempt(customer.id, deviceId).catch(() => {
|
||||
logger.info('failure updating last auth attempt for customer ', customer.id)
|
||||
logger.info(
|
||||
'failure updating last auth attempt for customer ',
|
||||
customer.id,
|
||||
)
|
||||
})
|
||||
return customer
|
||||
})
|
||||
.then(customer => {
|
||||
return Tx.customerHistory(customer.id, maxDaysThreshold)
|
||||
.then(result => {
|
||||
customer.txHistory = result
|
||||
return customer
|
||||
})
|
||||
return Tx.customerHistory(customer.id, maxDaysThreshold).then(result => {
|
||||
customer.txHistory = result
|
||||
return customer
|
||||
})
|
||||
})
|
||||
.then(customer => {
|
||||
return loyalty.getCustomerActiveIndividualDiscount(customer.id)
|
||||
return loyalty
|
||||
.getCustomerActiveIndividualDiscount(customer.id)
|
||||
.then(discount => ({ ...customer, discount }))
|
||||
})
|
||||
}
|
||||
|
||||
function getOrAddCustomerPhone (req, res, next) {
|
||||
function getOrAddCustomerPhone(req, res, next) {
|
||||
const deviceId = req.deviceId
|
||||
const customerData = req.body
|
||||
|
||||
const pi = plugins(req.settings, deviceId)
|
||||
const phone = req.body.phone
|
||||
|
||||
return pi.getPhoneCode(phone)
|
||||
return pi
|
||||
.getPhoneCode(phone)
|
||||
.then(code => {
|
||||
return addOrUpdateCustomer(customerData, deviceId, req.settings.config, false)
|
||||
.then(customer => respond(req, res, { code, customer }))
|
||||
return addOrUpdateCustomer(
|
||||
customerData,
|
||||
deviceId,
|
||||
req.settings.config,
|
||||
false,
|
||||
).then(customer => respond(req, res, { code, customer }))
|
||||
})
|
||||
.catch(err => {
|
||||
if (err.name === 'BadNumberError') throw httpError('Bad number', 401)
|
||||
|
|
@ -298,17 +372,22 @@ function getOrAddCustomerPhone (req, res, next) {
|
|||
.catch(next)
|
||||
}
|
||||
|
||||
function getOrAddCustomerEmail (req, res, next) {
|
||||
function getOrAddCustomerEmail(req, res, next) {
|
||||
const deviceId = req.deviceId
|
||||
const customerData = req.body
|
||||
|
||||
const pi = plugins(req.settings, req.deviceId)
|
||||
const email = req.body.email
|
||||
|
||||
return pi.getEmailCode(email)
|
||||
return pi
|
||||
.getEmailCode(email)
|
||||
.then(code => {
|
||||
return addOrUpdateCustomer(customerData, deviceId, req.settings.config, true)
|
||||
.then(customer => respond(req, res, { code, customer }))
|
||||
return addOrUpdateCustomer(
|
||||
customerData,
|
||||
deviceId,
|
||||
req.settings.config,
|
||||
true,
|
||||
).then(customer => respond(req, res, { code, customer }))
|
||||
})
|
||||
.catch(err => {
|
||||
if (err.name === 'BadNumberError') throw httpError('Bad number', 401)
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ const router = express.Router()
|
|||
|
||||
const { updateDiagnostics } = require('../machine-loader')
|
||||
|
||||
function diagnostics (req, res, next) {
|
||||
function diagnostics(req, res, next) {
|
||||
return updateDiagnostics(req.deviceId, req.body)
|
||||
.then(() => res.status(200).send({ status: 'OK' }))
|
||||
.catch(next)
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ const router = express.Router()
|
|||
|
||||
const { updateFailedQRScans } = require('../machine-loader')
|
||||
|
||||
function failedQRScans (req, res, next) {
|
||||
function failedQRScans(req, res, next) {
|
||||
return updateFailedQRScans(req.deviceId, req.body)
|
||||
.then(() => res.status(200).send({ status: 'OK' }))
|
||||
.catch(next)
|
||||
|
|
|
|||
|
|
@ -6,15 +6,17 @@ const logs = require('../logs')
|
|||
|
||||
const THROTTLE_LOGS_QUERY = 30 * 1000
|
||||
|
||||
function getLastSeen (req, res, next) {
|
||||
function getLastSeen(req, res, next) {
|
||||
const deviceId = req.deviceId
|
||||
const timestamp = Date.now()
|
||||
const shouldTrigger = !state.canGetLastSeenMap[deviceId] ||
|
||||
const shouldTrigger =
|
||||
!state.canGetLastSeenMap[deviceId] ||
|
||||
timestamp - state.canGetLastSeenMap[deviceId] >= THROTTLE_LOGS_QUERY
|
||||
|
||||
if (shouldTrigger) {
|
||||
state.canGetLastSeenMap[deviceId] = timestamp
|
||||
return logs.getLastSeen(deviceId)
|
||||
return logs
|
||||
.getLastSeen(deviceId)
|
||||
.then(r => res.json(r))
|
||||
.catch(next)
|
||||
}
|
||||
|
|
@ -22,8 +24,9 @@ function getLastSeen (req, res, next) {
|
|||
return res.status(408).json({})
|
||||
}
|
||||
|
||||
function updateLogs (req, res, next) {
|
||||
return logs.update(req.deviceId, req.body.logs)
|
||||
function updateLogs(req, res, next) {
|
||||
return logs
|
||||
.update(req.deviceId, req.body.logs)
|
||||
.then(status => res.json({ success: status }))
|
||||
.catch(next)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,14 +6,15 @@ const httpError = require('../route-helpers').httpError
|
|||
const pairing = require('../pairing')
|
||||
const populateDeviceId = require('../middlewares/populateDeviceId')
|
||||
|
||||
function pair (req, res, next) {
|
||||
function pair(req, res, next) {
|
||||
const token = req.query.token
|
||||
const deviceId = req.deviceId
|
||||
const model = req.query.model
|
||||
const numOfCassettes = req.query.numOfCassettes
|
||||
const numOfRecyclers = req.query.numOfRecyclers
|
||||
|
||||
return pairing.pair(token, deviceId, model, numOfCassettes, numOfRecyclers)
|
||||
return pairing
|
||||
.pair(token, deviceId, model, numOfCassettes, numOfRecyclers)
|
||||
.then(isValid => {
|
||||
if (isValid) return res.json({ status: 'paired' })
|
||||
throw httpError('Pairing failed')
|
||||
|
|
|
|||
|
|
@ -1,15 +1,18 @@
|
|||
const express = require('express')
|
||||
const router = express.Router()
|
||||
|
||||
const { updateNetworkHeartbeat, updateNetworkPerformance } = require('../machine-loader')
|
||||
const {
|
||||
updateNetworkHeartbeat,
|
||||
updateNetworkPerformance,
|
||||
} = require('../machine-loader')
|
||||
|
||||
function networkHeartbeat (req, res, next) {
|
||||
function networkHeartbeat(req, res, next) {
|
||||
return updateNetworkHeartbeat(req.deviceId, req.body)
|
||||
.then(() => res.status(200).send({ status: 'OK' }))
|
||||
.catch(next)
|
||||
}
|
||||
|
||||
function networkPerformance (req, res, next) {
|
||||
function networkPerformance(req, res, next) {
|
||||
return updateNetworkPerformance(req.deviceId, req.body)
|
||||
.then(() => res.status(200).send({ status: 'OK' }))
|
||||
.catch(next)
|
||||
|
|
|
|||
|
|
@ -4,17 +4,17 @@ const router = express.Router()
|
|||
const plugins = require('../plugins')
|
||||
const settingsLoader = require('../new-settings-loader')
|
||||
|
||||
function probe (req, res, next) {
|
||||
function probe(req, res, next) {
|
||||
// TODO: why req.settings is undefined?
|
||||
settingsLoader.loadLatest()
|
||||
.then(settings => {
|
||||
const pi = plugins(settings, req.deviceId)
|
||||
return pi.probeLN('LN', req.body.address)
|
||||
.then(r => res.status(200).send({ hardLimits: r }))
|
||||
.catch(next)
|
||||
})
|
||||
settingsLoader.loadLatest().then(settings => {
|
||||
const pi = plugins(settings, req.deviceId)
|
||||
return pi
|
||||
.probeLN('LN', req.body.address)
|
||||
.then(r => res.status(200).send({ hardLimits: r }))
|
||||
.catch(next)
|
||||
})
|
||||
}
|
||||
|
||||
router.get('/', probe)
|
||||
|
||||
module.exports = router
|
||||
module.exports = router
|
||||
|
|
|
|||
|
|
@ -4,8 +4,9 @@ const router = express.Router()
|
|||
const helpers = require('../route-helpers')
|
||||
const respond = require('../respond')
|
||||
|
||||
function stateChange (req, res, next) {
|
||||
helpers.stateChange(req.deviceId, req.deviceTime, req.body)
|
||||
function stateChange(req, res, next) {
|
||||
helpers
|
||||
.stateChange(req.deviceId, req.deviceTime, req.body)
|
||||
.then(() => respond(req, res))
|
||||
.catch(next)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,21 +6,24 @@ const router = express.Router()
|
|||
const configManager = require('../new-config-manager')
|
||||
const settingsLoader = require('../new-settings-loader')
|
||||
|
||||
const createTerms = terms => (terms.active && terms.text) ? ({
|
||||
delay: terms.delay,
|
||||
active: terms.active,
|
||||
tcPhoto: terms.tcPhoto,
|
||||
title: terms.title,
|
||||
text: nmd(terms.text),
|
||||
accept: terms.acceptButtonText,
|
||||
cancel: terms.cancelButtonText
|
||||
}) : null
|
||||
const createTerms = terms =>
|
||||
terms.active && terms.text
|
||||
? {
|
||||
delay: terms.delay,
|
||||
active: terms.active,
|
||||
tcPhoto: terms.tcPhoto,
|
||||
title: terms.title,
|
||||
text: nmd(terms.text),
|
||||
accept: terms.acceptButtonText,
|
||||
cancel: terms.cancelButtonText,
|
||||
}
|
||||
: null
|
||||
|
||||
function getTermsConditions (req, res, next) {
|
||||
const deviceId = req.deviceId
|
||||
function getTermsConditions(req, res, next) {
|
||||
const { config } = req.settings
|
||||
const terms = configManager.getTermsConditions(config)
|
||||
return settingsLoader.fetchCurrentConfigVersion()
|
||||
return settingsLoader
|
||||
.fetchCurrentConfigVersion()
|
||||
.then(version => res.json({ terms: createTerms(terms), version }))
|
||||
.catch(next)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ const logger = require('../logger')
|
|||
const plugins = require('../plugins')
|
||||
const Tx = require('../tx')
|
||||
|
||||
function postTx (req, res, next) {
|
||||
function postTx(req, res, next) {
|
||||
const pi = plugins(req.settings, req.deviceId)
|
||||
|
||||
return Tx.post(_.set('deviceId', req.deviceId, req.body), pi)
|
||||
|
|
@ -38,17 +38,20 @@ function postTx (req, res, next) {
|
|||
logger.warn('Harmless DB conflict, the query will be retried.')
|
||||
return res.status(204).json({})
|
||||
}
|
||||
if (err instanceof E.StaleTxError) return res.status(409).json({ errorType: 'stale' })
|
||||
if (err instanceof E.RatchetError) return res.status(409).json({ errorType: 'ratchet' })
|
||||
if (err instanceof E.StaleTxError)
|
||||
return res.status(409).json({ errorType: 'stale' })
|
||||
if (err instanceof E.RatchetError)
|
||||
return res.status(409).json({ errorType: 'ratchet' })
|
||||
|
||||
throw err
|
||||
})
|
||||
.catch(next)
|
||||
}
|
||||
|
||||
function getTx (req, res, next) {
|
||||
function getTx(req, res, next) {
|
||||
if (req.query.status) {
|
||||
return helpers.fetchStatusTx(req.params.id, req.query.status)
|
||||
return helpers
|
||||
.fetchStatusTx(req.params.id, req.query.status)
|
||||
.then(r => res.json(r))
|
||||
.catch(next)
|
||||
}
|
||||
|
|
@ -56,9 +59,10 @@ function getTx (req, res, next) {
|
|||
return next(httpError('Not Found', 404))
|
||||
}
|
||||
|
||||
function getPhoneTx (req, res, next) {
|
||||
function getPhoneTx(req, res, next) {
|
||||
if (req.query.phone) {
|
||||
return helpers.fetchPhoneTx(req.query.phone)
|
||||
return helpers
|
||||
.fetchPhoneTx(req.query.phone)
|
||||
.then(r => res.json(r))
|
||||
.catch(next)
|
||||
}
|
||||
|
|
@ -66,9 +70,10 @@ function getPhoneTx (req, res, next) {
|
|||
return next(httpError('Not Found', 404))
|
||||
}
|
||||
|
||||
function getEmailTx (req, res, next) {
|
||||
function getEmailTx(req, res, next) {
|
||||
if (req.query.email) {
|
||||
return helpers.fetchEmailTx(req.query.email)
|
||||
return helpers
|
||||
.fetchEmailTx(req.query.email)
|
||||
.then(r => res.json(r))
|
||||
.catch(next)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,26 +7,35 @@ const configManager = require('../new-config-manager')
|
|||
const loyalty = require('../loyalty')
|
||||
const respond = require('../respond')
|
||||
|
||||
function verifyPromoCode (req, res, next) {
|
||||
loyalty.getPromoCode(req.body.codeInput)
|
||||
function verifyPromoCode(req, res, next) {
|
||||
loyalty
|
||||
.getPromoCode(req.body.codeInput)
|
||||
.then(promoCode => {
|
||||
if (!promoCode) return next()
|
||||
|
||||
const transaction = req.body.tx
|
||||
const commissions = configManager.getCommissions(transaction.cryptoCode, req.deviceId, req.settings.config)
|
||||
const commissions = configManager.getCommissions(
|
||||
transaction.cryptoCode,
|
||||
req.deviceId,
|
||||
req.settings.config,
|
||||
)
|
||||
const tickerRate = new BN(transaction.rawTickerPrice)
|
||||
const discount = commissionMath.getDiscountRate(promoCode.discount, commissions[transaction.direction])
|
||||
const discount = commissionMath.getDiscountRate(
|
||||
promoCode.discount,
|
||||
commissions[transaction.direction],
|
||||
)
|
||||
const rates = {
|
||||
[transaction.cryptoCode]: {
|
||||
[transaction.direction]: (transaction.direction === 'cashIn')
|
||||
? tickerRate.times(discount).decimalPlaces(5)
|
||||
: tickerRate.div(discount).decimalPlaces(5)
|
||||
}
|
||||
[transaction.direction]:
|
||||
transaction.direction === 'cashIn'
|
||||
? tickerRate.times(discount).decimalPlaces(5)
|
||||
: tickerRate.div(discount).decimalPlaces(5),
|
||||
},
|
||||
}
|
||||
|
||||
respond(req, res, {
|
||||
promoCode: promoCode,
|
||||
newRates: rates
|
||||
newRates: rates,
|
||||
})
|
||||
})
|
||||
.catch(next)
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ const router = express.Router()
|
|||
const plugins = require('../plugins')
|
||||
const respond = require('../respond')
|
||||
|
||||
function verifyTx (req, res, next) {
|
||||
function verifyTx(req, res, next) {
|
||||
const pi = plugins(req.settings, req.deviceId)
|
||||
pi.verifyTransaction(req.body)
|
||||
.then(idResult => respond(req, res, idResult))
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ const router = express.Router()
|
|||
const plugins = require('../plugins')
|
||||
const respond = require('../respond')
|
||||
|
||||
function verifyUser (req, res, next) {
|
||||
function verifyUser(req, res, next) {
|
||||
const pi = plugins(req.settings, req.deviceId)
|
||||
pi.verifyUser(req.body)
|
||||
.then(idResult => respond(req, res, idResult))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue