2016-11-04 09:03:13 +01:00
|
|
|
/* eslint camelcase: "off" */
|
|
|
|
'use strict';
|
|
|
|
|
2016-11-28 17:11:11 +01:00
|
|
|
const logger = require('../logger');
|
2016-11-04 09:03:13 +01:00
|
|
|
const COLUMNS = ['app_name', 'instance_id', 'client_ip', 'last_seen', 'created_at'];
|
|
|
|
const TABLE = 'client_instances';
|
|
|
|
|
2016-11-05 14:08:47 +01:00
|
|
|
const mapRow = (row) => ({
|
|
|
|
appName: row.app_name,
|
|
|
|
instanceId: row.instance_id,
|
|
|
|
clientIp: row.client_ip,
|
|
|
|
lastSeen: row.last_seen,
|
|
|
|
createdAt: row.created_at,
|
|
|
|
});
|
|
|
|
|
2016-11-28 17:11:11 +01:00
|
|
|
const mapAppsRow = (row) => ({
|
|
|
|
appName: row.app_name,
|
|
|
|
createdAt: row.created_at,
|
|
|
|
});
|
|
|
|
|
2016-11-05 14:08:47 +01:00
|
|
|
class ClientInstanceStore {
|
|
|
|
|
|
|
|
constructor (db) {
|
|
|
|
this.db = db;
|
2016-11-28 17:11:11 +01:00
|
|
|
setTimeout(() => this._removeInstancesOlderThanTwoDays(), 10).unref();
|
|
|
|
setInterval(() => this._removeInstancesOlderThanTwoDays(), 24 * 61 * 60 * 1000).unref();
|
|
|
|
}
|
|
|
|
|
|
|
|
_removeInstancesOlderThanTwoDays () {
|
|
|
|
this.db(TABLE)
|
|
|
|
.whereRaw('created_at < now() - interval \'2 days\'')
|
|
|
|
.del()
|
|
|
|
.then((res) => logger.info(`Deleted ${res} instances`));
|
2016-11-05 14:08:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
updateRow (details) {
|
|
|
|
return this.db(TABLE)
|
2016-11-04 09:03:13 +01:00
|
|
|
.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
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-11-05 14:08:47 +01:00
|
|
|
insertNewRow (details) {
|
|
|
|
return this.db(TABLE).insert({
|
2016-11-04 09:03:13 +01:00
|
|
|
app_name: details.appName,
|
|
|
|
instance_id: details.instanceId,
|
|
|
|
client_ip: details.clientIp,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-11-05 14:08:47 +01:00
|
|
|
insert (details) {
|
|
|
|
return this.db(TABLE)
|
2016-11-04 09:03:13 +01:00
|
|
|
.count('*')
|
|
|
|
.where('app_name', details.appName)
|
|
|
|
.where('instance_id', details.instanceId)
|
|
|
|
.map(row => ({ count: row.count }))
|
|
|
|
.then(rows => {
|
|
|
|
if (rows[0].count > 0) {
|
2016-11-05 14:08:47 +01:00
|
|
|
return this.updateRow(details);
|
2016-11-04 09:03:13 +01:00
|
|
|
} else {
|
2016-11-05 14:08:47 +01:00
|
|
|
return this.insertNewRow(details);
|
2016-11-04 09:03:13 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-11-05 14:08:47 +01:00
|
|
|
getAll () {
|
|
|
|
return this.db
|
2016-11-04 09:03:13 +01:00
|
|
|
.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);
|
|
|
|
}
|
2016-11-28 17:11:11 +01:00
|
|
|
|
|
|
|
getByAppName (appName) {
|
|
|
|
return this.db
|
|
|
|
.select(COLUMNS)
|
|
|
|
.from(TABLE)
|
|
|
|
.where('app_name', appName)
|
|
|
|
.orderBy('last_seen', 'desc')
|
|
|
|
.map(mapRow);
|
|
|
|
}
|
|
|
|
|
|
|
|
getApplications () {
|
|
|
|
return this.db
|
|
|
|
.distinct('app_name')
|
|
|
|
.select(['app_name'])
|
|
|
|
.from(TABLE)
|
|
|
|
.orderBy('app_name', 'desc')
|
|
|
|
.map(mapRow);
|
|
|
|
}
|
2016-11-04 09:03:13 +01:00
|
|
|
};
|
2016-11-05 14:08:47 +01:00
|
|
|
|
|
|
|
module.exports = ClientInstanceStore;
|