lamassu-server/lib/exchange.js
2016-12-08 00:13:59 +02:00

47 lines
1.2 KiB
JavaScript

const configManager = require('./config-manager')
const settingsLoader = require('./settings-loader')
function noExchangeError (cryptoCode) {
const err = new Error('No exchange plugin defined for: ' + cryptoCode)
err.name = 'NoExchangeError'
return err
}
function lookupExchange (cryptoCode) {
const settings = settingsLoader.settings()
return configManager.cryptoScoped(cryptoCode, settings.config).exchange
}
function fetchExchange (cryptoCode) {
return Promise.resolve()
.then(() => {
const settings = settingsLoader.settings()
const plugin = lookupExchange(cryptoCode)
if (!plugin) throw noExchangeError(cryptoCode)
const account = settings.accounts[plugin]
const exchange = require('lamassu-' + plugin)
return {exchange, account}
})
}
function buy (cryptoAtoms, fiatCode, cryptoCode) {
return fetchExchange(cryptoCode)
.then(r => r.exchange.buy(r.account, cryptoAtoms, fiatCode, cryptoCode))
}
function sell (cryptoAtoms, fiatCode, cryptoCode) {
return fetchExchange(cryptoCode)
.then(r => r.exchange.sell(r.account, cryptoAtoms, fiatCode, cryptoCode))
}
function active (fiatCode, cryptoCode) {
return !!lookupExchange(cryptoCode)
}
module.exports = {
buy,
sell,
active
}