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
2020-02-20 08:30:43 +01:00

68 lines
1.8 KiB
JavaScript

'use strict';
const { STRATEGY_CREATED, STRATEGY_DELETED } = require('../event-type');
const logger = require('../logger');
const NotFoundError = require('../error/notfound-error');
const STRATEGY_COLUMNS = ['name', 'description', 'parameters'];
const TABLE = 'strategies';
class StrategyStore {
constructor (db, eventStore) {
this.db = db;
eventStore.on(STRATEGY_CREATED, event => this._createStrategy(event.data));
eventStore.on(STRATEGY_DELETED, event => {
db(TABLE)
.where('name', event.data.name)
.del()
.catch(err => {
logger.error('Could not delete strategy, error was: ', err);
});
});
}
getStrategies () {
return this.db
.select(STRATEGY_COLUMNS)
.from(TABLE)
.orderBy('name', 'asc')
.map(this.rowToStrategy);
}
getStrategy (name) {
return this.db
.first(STRATEGY_COLUMNS)
.from(TABLE)
.where({ name })
.then(this.rowToStrategy);
}
rowToStrategy (row) {
if (!row) {
throw new NotFoundError('No strategy found');
}
return {
name: row.name,
description: row.description,
parameters: row.parameters,
};
}
eventDataToRow (data) {
return {
name: data.name,
description: data.description,
parameters: JSON.stringify(data.parameters),
};
}
_createStrategy (data) {
this.db(TABLE)
.insert(this.eventDataToRow(data))
.catch(err => logger.error('Could not insert strategy, error was: ', err));
}
};
module.exports = StrategyStore;