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

150 lines
3.9 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-10-27 20:51:21 +02:00
const NotFoundError = require('../error/notfound-error');
const STRATEGY_COLUMNS = [
'name',
'description',
'parameters',
'built_in',
'deprecated',
];
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, getLogger) {
2016-11-05 10:16:48 +01:00
this.db = db;
this.logger = getLogger('strategy-store.js');
2016-11-05 10:16:48 +01:00
}
2020-09-18 09:05:09 +02:00
async getStrategies() {
const rows = await this.db
.select(STRATEGY_COLUMNS)
2016-11-05 10:16:48 +01:00
.from(TABLE)
2020-09-18 09:05:09 +02:00
.orderBy('name', 'asc');
return rows.map(this.rowToStrategy);
}
2020-09-18 09:05:09 +02:00
async getEditableStrategies() {
const rows = await this.db
.select(STRATEGY_COLUMNS)
.from(TABLE)
.where({ built_in: 0 }) // eslint-disable-line
2020-09-18 09:05:09 +02:00
.orderBy('name', 'asc');
return rows.map(this.rowToEditableStrategy);
}
2020-09-18 09:05:09 +02:00
async getStrategy(name) {
2016-11-05 10:16:48 +01:00
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
2017-06-28 10:17:14 +02:00
rowToStrategy(row) {
if (!row) {
throw new NotFoundError('No strategy found');
}
return {
name: row.name,
editable: row.built_in !== 1,
description: row.description,
2016-12-12 17:09:44 +01:00
parameters: row.parameters,
deprecated: row.deprecated,
};
2014-11-17 22:39:04 +01:00
}
rowToEditableStrategy(row) {
if (!row) {
throw new NotFoundError('No strategy found');
}
return {
name: row.name,
description: row.description,
parameters: row.parameters,
deprecated: row.deprecated,
};
}
2017-06-28 10:17:14 +02:00
eventDataToRow(data) {
return {
name: data.name,
description: data.description,
2016-12-12 17:09:44 +01:00
parameters: JSON.stringify(data.parameters),
};
}
async createStrategy(data) {
2016-11-05 10:16:48 +01:00
this.db(TABLE)
.insert(this.eventDataToRow(data))
2017-06-28 10:17:14 +02:00
.catch(err =>
this.logger.error('Could not insert strategy, error: ', err),
2017-06-28 10:17:14 +02:00
);
}
async updateStrategy(data) {
this.db(TABLE)
.where({ name: data.name })
.update(this.eventDataToRow(data))
2017-06-28 10:17:14 +02:00
.catch(err =>
this.logger.error('Could not update strategy, error: ', err),
2017-06-28 10:17:14 +02:00
);
}
async deprecateStrategy({ name }) {
this.db(TABLE)
.where({ name })
.update({ deprecated: true })
.catch(err =>
this.logger.error('Could not deprecate strategy, error: ', err),
);
}
async reactivateStrategy({ name }) {
this.db(TABLE)
.where({ name })
.update({ deprecated: false })
.catch(err =>
this.logger.error(
'Could not reactivate strategy, error: ',
err,
),
);
}
async deleteStrategy({ name }) {
return this.db(TABLE)
.where({ name })
.del()
.catch(err => {
this.logger.error('Could not delete strategy, error: ', err);
});
}
async importStrategy(data) {
const rowData = this.eventDataToRow(data);
return this.db(TABLE)
.where({ name: rowData.name, built_in: 0 }) // eslint-disable-line
.update(rowData)
.then(result =>
result === 0 ? this.db(TABLE).insert(rowData) : result,
)
.catch(err =>
this.logger.error('Could not import strategy, error: ', err),
);
}
async dropStrategies() {
return this.db(TABLE)
.where({ built_in: 0 }) // eslint-disable-line
.delete()
.catch(err =>
this.logger.error('Could not drop strategies, error: ', err),
);
}
2017-06-28 10:17:14 +02:00
}
2014-11-17 22:39:04 +01:00
2016-11-05 10:16:48 +01:00
module.exports = StrategyStore;