1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-06 00:07:44 +01:00
unleash.unleash/packages/unleash-api/lib/db/client-instances.js

62 lines
1.6 KiB
JavaScript
Raw Normal View History

2016-11-04 09:03:13 +01:00
/* eslint camelcase: "off" */
'use strict';
const COLUMNS = ['app_name', 'instance_id', 'client_ip', 'last_seen', 'created_at'];
const TABLE = 'client_instances';
module.exports = function (db) {
function updateRow (details) {
return db(TABLE)
.where('app_name', details.appName)
.where('instance_id', details.instanceId)
.update({
last_seen: 'now()',
2016-11-05 12:42:58 +01:00
client_ip: details.clientIp,
2016-11-04 09:03:13 +01:00
});
}
function insertNewRow (details) {
return db(TABLE).insert({
app_name: details.appName,
instance_id: details.instanceId,
client_ip: details.clientIp,
});
}
function insert (details) {
2016-11-05 12:42:58 +01:00
console.log(details);
2016-11-04 09:03:13 +01:00
return db(TABLE)
.count('*')
.where('app_name', details.appName)
.where('instance_id', details.instanceId)
.map(row => ({ count: row.count }))
.then(rows => {
if (rows[0].count > 0) {
return updateRow(details);
} else {
return insertNewRow(details);
}
});
}
function getAll () {
return db
.select(COLUMNS)
.from(TABLE)
2016-11-04 23:02:55 +01:00
.orderBy('last_seen', 'desc')
2016-11-04 09:03:13 +01:00
.map(mapRow);
}
function mapRow (row) {
return {
appName: row.app_name,
instanceId: row.instance_id,
clientIp: row.client_ip,
lastSeen: row.last_seen,
createdAt: row.created_at,
};
}
return { insert, getAll };
};