2021-04-20 12:32:02 +02:00
|
|
|
import { Knex } from 'knex';
|
|
|
|
import { Logger, LogProvider } from '../logger';
|
|
|
|
|
2021-07-07 10:46:50 +02:00
|
|
|
import NotFoundError from '../error/notfound-error';
|
2020-04-14 22:29:11 +02:00
|
|
|
|
2021-01-21 13:47:08 +01:00
|
|
|
const STRATEGY_COLUMNS = [
|
|
|
|
'name',
|
|
|
|
'description',
|
|
|
|
'parameters',
|
|
|
|
'built_in',
|
|
|
|
'deprecated',
|
2021-04-22 13:33:35 +02:00
|
|
|
'display_name',
|
2021-01-21 13:47:08 +01:00
|
|
|
];
|
2016-11-05 10:16:48 +01:00
|
|
|
const TABLE = 'strategies';
|
2014-11-17 22:39:04 +01:00
|
|
|
|
2021-04-20 12:32:02 +02:00
|
|
|
export interface IStrategy {
|
|
|
|
name: string;
|
|
|
|
editable: boolean;
|
|
|
|
description: string;
|
|
|
|
parameters: object;
|
|
|
|
deprecated: boolean;
|
2021-04-22 13:33:35 +02:00
|
|
|
displayName: string;
|
2021-04-20 12:32:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface IEditableStrategy {
|
|
|
|
name: string;
|
|
|
|
description: string;
|
|
|
|
parameters: object;
|
|
|
|
deprecated: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IMinimalStrategy {
|
|
|
|
name: string;
|
|
|
|
description: string;
|
|
|
|
parameters: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface IStrategyRow {
|
|
|
|
name: string;
|
|
|
|
built_in: number;
|
|
|
|
description: string;
|
|
|
|
parameters: object;
|
|
|
|
deprecated: boolean;
|
2021-04-22 13:33:35 +02:00
|
|
|
display_name: string;
|
2021-04-20 12:32:02 +02:00
|
|
|
}
|
|
|
|
export default class StrategyStore {
|
|
|
|
private db: Knex;
|
|
|
|
|
|
|
|
private logger: Logger;
|
|
|
|
|
|
|
|
constructor(db: Knex, getLogger: LogProvider) {
|
2016-11-05 10:16:48 +01:00
|
|
|
this.db = db;
|
2019-04-30 21:14:23 +02:00
|
|
|
this.logger = getLogger('strategy-store.js');
|
2016-11-05 10:16:48 +01:00
|
|
|
}
|
2014-12-08 20:56:22 +01:00
|
|
|
|
2021-04-20 12:32:02 +02:00
|
|
|
async getStrategies(): Promise<IStrategy[]> {
|
2020-09-18 09:05:09 +02:00
|
|
|
const rows = await this.db
|
2016-05-01 22:53:09 +02:00
|
|
|
.select(STRATEGY_COLUMNS)
|
2016-11-05 10:16:48 +01:00
|
|
|
.from(TABLE)
|
2021-04-22 13:33:35 +02:00
|
|
|
.orderBy('sort_order', 'asc')
|
2020-09-18 09:05:09 +02:00
|
|
|
.orderBy('name', 'asc');
|
|
|
|
|
|
|
|
return rows.map(this.rowToStrategy);
|
2016-05-01 22:53:09 +02:00
|
|
|
}
|
|
|
|
|
2021-04-20 12:32:02 +02:00
|
|
|
async getEditableStrategies(): Promise<IEditableStrategy[]> {
|
2020-09-18 09:05:09 +02:00
|
|
|
const rows = await this.db
|
2019-03-14 17:56:02 +01:00
|
|
|
.select(STRATEGY_COLUMNS)
|
|
|
|
.from(TABLE)
|
|
|
|
.where({ built_in: 0 }) // eslint-disable-line
|
2021-04-22 13:33:35 +02:00
|
|
|
.orderBy('sort_order', 'asc')
|
2020-09-18 09:05:09 +02:00
|
|
|
.orderBy('name', 'asc');
|
2021-04-22 13:33:35 +02:00
|
|
|
|
2020-09-18 09:05:09 +02:00
|
|
|
return rows.map(this.rowToEditableStrategy);
|
2019-03-14 17:56:02 +01:00
|
|
|
}
|
|
|
|
|
2021-04-20 12:32:02 +02:00
|
|
|
async getStrategy(name: string): Promise<IStrategy> {
|
2016-11-05 10:16:48 +01:00
|
|
|
return this.db
|
2016-05-01 22:53:09 +02:00
|
|
|
.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);
|
2016-05-01 22:53:09 +02:00
|
|
|
}
|
2014-11-17 22:39:04 +01:00
|
|
|
|
2021-04-20 12:32:02 +02:00
|
|
|
rowToStrategy(row: IStrategyRow): IStrategy {
|
2016-05-01 22:53:09 +02:00
|
|
|
if (!row) {
|
|
|
|
throw new NotFoundError('No strategy found');
|
|
|
|
}
|
|
|
|
return {
|
2021-04-22 13:33:35 +02:00
|
|
|
displayName: row.display_name,
|
2016-05-01 22:53:09 +02:00
|
|
|
name: row.name,
|
2017-06-28 21:10:43 +02:00
|
|
|
editable: row.built_in !== 1,
|
2016-05-01 22:53:09 +02:00
|
|
|
description: row.description,
|
2016-12-12 17:09:44 +01:00
|
|
|
parameters: row.parameters,
|
2021-01-21 13:47:08 +01:00
|
|
|
deprecated: row.deprecated,
|
2016-05-01 22:53:09 +02:00
|
|
|
};
|
2014-11-17 22:39:04 +01:00
|
|
|
}
|
|
|
|
|
2021-04-20 12:32:02 +02:00
|
|
|
rowToEditableStrategy(row: IStrategyRow): IEditableStrategy {
|
2019-03-14 17:56:02 +01:00
|
|
|
if (!row) {
|
|
|
|
throw new NotFoundError('No strategy found');
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
name: row.name,
|
|
|
|
description: row.description,
|
|
|
|
parameters: row.parameters,
|
2021-01-21 13:47:08 +01:00
|
|
|
deprecated: row.deprecated,
|
2019-03-14 17:56:02 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-04-22 10:07:10 +02:00
|
|
|
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
|
2021-04-20 12:32:02 +02:00
|
|
|
eventDataToRow(data): IMinimalStrategy {
|
2016-05-01 22:53:09 +02:00
|
|
|
return {
|
|
|
|
name: data.name,
|
|
|
|
description: data.description,
|
2016-12-12 17:09:44 +01:00
|
|
|
parameters: JSON.stringify(data.parameters),
|
2016-05-01 22:53:09 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-04-22 10:07:10 +02:00
|
|
|
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
|
|
|
|
async createStrategy(data): Promise<void> {
|
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 =>
|
2020-04-14 22:29:11 +02:00
|
|
|
this.logger.error('Could not insert strategy, error: ', err),
|
2017-06-28 10:17:14 +02:00
|
|
|
);
|
2016-05-01 22:53:09 +02:00
|
|
|
}
|
2016-12-17 12:31:23 +01:00
|
|
|
|
2021-04-22 10:07:10 +02:00
|
|
|
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
|
2021-04-20 12:32:02 +02:00
|
|
|
async updateStrategy(data): Promise<void> {
|
2016-12-17 12:31:23 +01:00
|
|
|
this.db(TABLE)
|
|
|
|
.where({ name: data.name })
|
|
|
|
.update(this.eventDataToRow(data))
|
2017-06-28 10:17:14 +02:00
|
|
|
.catch(err =>
|
2020-04-14 22:29:11 +02:00
|
|
|
this.logger.error('Could not update strategy, error: ', err),
|
2017-06-28 10:17:14 +02:00
|
|
|
);
|
2021-01-21 13:47:08 +01:00
|
|
|
}
|
|
|
|
|
2021-04-22 10:07:10 +02:00
|
|
|
async deprecateStrategy({ name }: Pick<IStrategy, 'name'>): Promise<void> {
|
2021-01-21 13:47:08 +01:00
|
|
|
this.db(TABLE)
|
|
|
|
.where({ name })
|
|
|
|
.update({ deprecated: true })
|
|
|
|
.catch(err =>
|
|
|
|
this.logger.error('Could not deprecate strategy, error: ', err),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-04-22 10:07:10 +02:00
|
|
|
async reactivateStrategy({ name }: Pick<IStrategy, 'name'>): Promise<void> {
|
2021-01-21 13:47:08 +01:00
|
|
|
this.db(TABLE)
|
|
|
|
.where({ name })
|
|
|
|
.update({ deprecated: false })
|
|
|
|
.catch(err =>
|
|
|
|
this.logger.error(
|
|
|
|
'Could not reactivate strategy, error: ',
|
|
|
|
err,
|
|
|
|
),
|
|
|
|
);
|
2016-12-17 12:31:23 +01:00
|
|
|
}
|
2019-03-13 19:10:13 +01:00
|
|
|
|
2021-04-22 10:07:10 +02:00
|
|
|
async deleteStrategy({ name }: Pick<IStrategy, 'name'>): Promise<void> {
|
|
|
|
await this.db(TABLE)
|
2019-03-13 19:10:13 +01:00
|
|
|
.where({ name })
|
|
|
|
.del()
|
|
|
|
.catch(err => {
|
2019-04-30 21:14:23 +02:00
|
|
|
this.logger.error('Could not delete strategy, error: ', err);
|
2019-03-13 19:10:13 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-04-22 10:07:10 +02:00
|
|
|
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
|
|
|
|
async importStrategy(data): Promise<void> {
|
2019-03-14 17:56:02 +01:00
|
|
|
const rowData = this.eventDataToRow(data);
|
2021-04-20 12:32:02 +02:00
|
|
|
await this.db(TABLE)
|
|
|
|
.insert(rowData)
|
|
|
|
.onConflict(['name'])
|
|
|
|
.merge();
|
2019-03-13 19:10:13 +01:00
|
|
|
}
|
|
|
|
|
2021-04-20 12:32:02 +02:00
|
|
|
async dropStrategies(): Promise<void> {
|
|
|
|
await this.db(TABLE)
|
2019-03-13 19:10:13 +01:00
|
|
|
.where({ built_in: 0 }) // eslint-disable-line
|
|
|
|
.delete()
|
|
|
|
.catch(err =>
|
2020-04-14 22:29:11 +02:00
|
|
|
this.logger.error('Could not drop strategies, error: ', err),
|
2019-03-13 19:10:13 +01:00
|
|
|
);
|
|
|
|
}
|
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;
|