This commit is contained in:
Josh Harvey 2016-03-29 17:58:27 +01:00
parent 7be7c3f8e6
commit 591ffcf162
4 changed files with 129 additions and 54 deletions

173
bin/ssu
View file

@ -4,80 +4,149 @@
var wreck = require('wreck')
var argv = process.argv.slice(2)
var Promise = require('es6-promise')
var pgp = require('pg-promise')({
promiseLib: Promise
})
var fs = require('fs')
var cmd = argv[0]
var fingerprint = argv[1]
if (!cmd || !fingerprint) {
if (!cmd) bail()
function bail () {
console.log('Command line utility for lamassu-server')
console.log('\nUsage: ssu reboot <machine-fingerprint>')
console.log('\nssu reboot <machine-fingerprint>')
console.log('This will remotely reboot your lamassu-machine.')
console.log('\nssu crypto <code> <ticker-plugin> <wallet-plugin>')
console.log('This will configure a new cryptocurrency.')
process.exit(1)
}
var opts = {json: true}
wreck.get('http://localhost:7070/pid?fingerprint=' + fingerprint, opts, function (err, res, payload) {
if (err) {
console.log('Please make sure that lamassu-server is running on this box.')
process.exit(2)
switch (cmd) {
case 'reboot':
reboot()
break
case 'crypto':
crypto()
break
default:
}
function reboot () {
var fingerprint = argv[1]
if (!fingerprint) {
console.log('Fingerprint required')
process.exit(1)
}
if (!payload || !payload.pid) {
console.log('The requested lamassu-machine appears to be running an old version.')
process.exit(3)
}
var pid = payload.pid
if (Date.now() - payload.ts > 10000) {
console.log('lamassu-machine is not connected to server.')
process.exit(6)
}
var opts2 = {
headers: {'Content-Type': 'application/json'},
payload: JSON.stringify({pid: pid, fingerprint: fingerprint})
}
wreck.post('http://localhost:7070/reboot', opts2, function (err2, res) {
if (err2) {
var opts = {json: true}
wreck.get('http://localhost:7070/pid?fingerprint=' + fingerprint, opts, function (err, res, payload) {
if (err) {
console.log('Please make sure that lamassu-server is running on this box.')
process.exit(2)
}
if (res.statusCode !== 200) {
console.log('Communication error')
return
if (!payload || !payload.pid) {
console.log('The requested lamassu-machine appears to be running an old version.')
process.exit(3)
}
console.log('Rebooting...')
var pid = payload.pid
var ts = null
if (Date.now() - payload.ts > 10000) {
console.log('lamassu-machine is not connected to server.')
process.exit(6)
}
setTimeout(function () {
if (Date.now() - ts < 10000) {
console.log('lamassu-machine did not reboot but is still contacting server.')
process.exit(4)
var opts2 = {
headers: {'Content-Type': 'application/json'},
payload: JSON.stringify({pid: pid, fingerprint: fingerprint})
}
wreck.post('http://localhost:7070/reboot', opts2, function (err2, res) {
if (err2) {
console.log('Please make sure that lamassu-server is running on this box.')
process.exit(2)
}
console.log('lamassu-machine rebooted but is not coming back up.')
process.exit(5)
}, 30000)
if (res.statusCode !== 200) {
console.log('Communication error')
return
}
setInterval(function () {
wreck.get('http://localhost:7070/pid?fingerprint=' + fingerprint, opts, function (err3, res, payload) {
if (err3) {
console.log('lamassu-server appears to be down.')
process.exit(2)
console.log('Rebooting...')
var ts = null
setTimeout(function () {
if (Date.now() - ts < 10000) {
console.log('lamassu-machine did not reboot but is still contacting server.')
process.exit(4)
}
ts = payload.ts
console.log('lamassu-machine rebooted but is not coming back up.')
process.exit(5)
}, 30000)
if (payload.pid !== pid) {
console.log('lamassu-machine is back up!')
process.exit(0)
}
})
}, 5000)
setInterval(function () {
wreck.get('http://localhost:7070/pid?fingerprint=' + fingerprint, opts, function (err3, res, payload) {
if (err3) {
console.log('lamassu-server appears to be down.')
process.exit(2)
}
ts = payload.ts
if (payload.pid !== pid) {
console.log('lamassu-machine is back up!')
process.exit(0)
}
})
}, 5000)
})
})
})
}
function crypto () {
var code = argv[1]
var tickerPlugin = argv[2]
var walletPlugin = argv[3]
if (!code || !tickerPlugin || !walletPlugin) {
console.log('\nssu crypto <code> <ticker-plugin> <wallet-plugin>')
console.log('This will configure a new cryptocurrency.')
process.exit(1)
}
code = code.toUpperCase()
var psqlUrl
try {
psqlUrl = process.env.DATABASE_URL || JSON.parse(fs.readFileSync('/etc/lamassu.json')).postgresql
} catch (ex) {
psqlUrl = 'psql://lamassu:lamassu@localhost/lamassu'
}
var db = pgp(psqlUrl)
return db.one('select data from user_config where type=$1', 'exchanges')
.then(function (data) {
var config = data.data
config.exchanges.plugins.current[code] = {
ticker: tickerPlugin,
transfer: walletPlugin
}
return db.none('update user_config set data=$1 where type=$2', [config, 'exchanges'])
})
.then(function () {
console.log('success')
pgp.end()
})
.catch(function (err) {
console.log(err.stack)
pgp.end()
})
}