mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
cdd483ffec
* feat: Add new Flexible Rollout Strategy fixes #516 * feat: update unleash-frontend to version 3.2.8 * chore: update flexible rollout documentation
65 lines
1.7 KiB
JavaScript
65 lines
1.7 KiB
JavaScript
'use strict';
|
|
|
|
const flexibleRollout = require('./flexible-rollout-strategy.json');
|
|
const async = require('async');
|
|
|
|
function insertStrategySQL(strategy) {
|
|
return `
|
|
INSERT INTO strategies (name, description, parameters, built_in)
|
|
SELECT '${strategy.name}', '${strategy.description}', '${JSON.stringify(
|
|
strategy.parameters
|
|
)}', 1
|
|
WHERE
|
|
NOT EXISTS (
|
|
SELECT name FROM strategies WHERE name = '${strategy.name}'
|
|
);`;
|
|
}
|
|
|
|
function insertEventsSQL(strategy) {
|
|
return `
|
|
INSERT INTO events (type, created_by, data)
|
|
SELECT 'strategy-created', 'migration', '${JSON.stringify(strategy)}'
|
|
WHERE
|
|
NOT EXISTS (
|
|
SELECT name FROM strategies WHERE name = '${strategy.name}'
|
|
);`;
|
|
}
|
|
|
|
function removeEventsSQL(strategy) {
|
|
return `
|
|
INSERT INTO events (type, created_by, data)
|
|
SELECT 'strategy-deleted', 'migration', '${JSON.stringify(strategy)}'
|
|
WHERE
|
|
EXISTS (
|
|
SELECT name FROM strategies WHERE name = '${
|
|
strategy.name
|
|
}' AND built_in = 1
|
|
);`;
|
|
}
|
|
|
|
function removeStrategySQL(strategy) {
|
|
return `
|
|
DELETE FROM strategies
|
|
WHERE name = '${strategy.name}' AND built_in = 1`;
|
|
}
|
|
|
|
exports.up = function(db, callback) {
|
|
async.series(
|
|
[
|
|
db.runSql.bind(db, insertEventsSQL(flexibleRollout)),
|
|
db.runSql.bind(db, insertStrategySQL(flexibleRollout)),
|
|
],
|
|
callback
|
|
);
|
|
};
|
|
|
|
exports.down = function(db, callback) {
|
|
async.series(
|
|
[
|
|
db.runSql.bind(db, removeEventsSQL(flexibleRollout)),
|
|
db.runSql.bind(db, removeStrategySQL(flexibleRollout)),
|
|
],
|
|
callback
|
|
);
|
|
};
|