1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/lib/db/strategy-store.js

68 lines
1.8 KiB
JavaScript
Raw Normal View History

2016-06-18 21:53:18 +02:00
'use strict';
2016-10-26 10:43:11 +02:00
2016-12-09 14:50:30 +01:00
const { STRATEGY_CREATED, STRATEGY_DELETED } = require('../event-type');
2016-06-20 10:27:19 +02:00
const logger = require('../logger');
2016-10-27 20:51:21 +02:00
const NotFoundError = require('../error/notfound-error');
2016-12-12 17:09:44 +01:00
const STRATEGY_COLUMNS = ['name', 'description', 'parameters'];
2016-11-05 10:16:48 +01:00
const TABLE = 'strategies';
2014-11-17 22:39:04 +01:00
2016-11-05 10:16:48 +01:00
class StrategyStore {
constructor (db, eventStore) {
this.db = db;
2016-12-09 14:50:30 +01:00
eventStore.on(STRATEGY_CREATED, event => this._createStrategy(event.data));
eventStore.on(STRATEGY_DELETED, event => {
2016-11-05 10:16:48 +01:00
db(TABLE)
.where('name', event.data.name)
.del()
.catch(err => {
logger.error('Could not delete strategy, error was: ', err);
});
});
}
2016-11-05 10:16:48 +01:00
getStrategies () {
return this.db
.select(STRATEGY_COLUMNS)
2016-11-05 10:16:48 +01:00
.from(TABLE)
2016-12-10 12:12:00 +01:00
.orderBy('name', 'asc')
2016-11-05 10:16:48 +01:00
.map(this.rowToStrategy);
}
2016-11-05 10:16:48 +01:00
getStrategy (name) {
return this.db
.first(STRATEGY_COLUMNS)
2016-11-05 10:16:48 +01:00
.from(TABLE)
2016-06-18 21:53:18 +02:00
.where({ name })
2016-11-05 10:16:48 +01:00
.then(this.rowToStrategy);
}
2014-11-17 22:39:04 +01:00
2016-11-05 10:16:48 +01:00
rowToStrategy (row) {
if (!row) {
throw new NotFoundError('No strategy found');
}
2014-11-17 22:39:04 +01:00
return {
name: row.name,
description: row.description,
2016-12-12 17:09:44 +01:00
parameters: row.parameters,
};
2014-11-17 22:39:04 +01:00
}
2016-11-05 10:16:48 +01:00
eventDataToRow (data) {
return {
name: data.name,
description: data.description,
2016-12-12 17:09:44 +01:00
parameters: JSON.stringify(data.parameters),
};
}
2016-11-05 10:16:48 +01:00
_createStrategy (data) {
this.db(TABLE)
.insert(this.eventDataToRow(data))
2016-12-02 16:20:13 +01:00
.catch(err => logger.error('Could not insert strategy, error was: ', err));
}
2014-11-17 22:39:04 +01:00
};
2016-11-05 10:16:48 +01:00
module.exports = StrategyStore;