mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
91 lines
3.0 KiB
JavaScript
91 lines
3.0 KiB
JavaScript
'use strict';
|
|
|
|
const eventType = require('../event-type');
|
|
const logger = require('../logger');
|
|
const NameExistsError = require('../error/name-exists-error');
|
|
const ValidationError = require('../error/validation-error.js');
|
|
const NotFoundError = require('../error/notfound-error');
|
|
const validateRequest = require('../error/validate-request');
|
|
const extractUser = require('../extract-user');
|
|
const version = 1;
|
|
|
|
const handleError = (req, res, error) => {
|
|
switch (error.constructor) {
|
|
case NotFoundError:
|
|
return res
|
|
.status(404)
|
|
.end();
|
|
case NameExistsError:
|
|
return res
|
|
.status(403)
|
|
.json([{ msg: `A strategy named '${req.body.name}' already exists.` }])
|
|
.end();
|
|
case ValidationError:
|
|
return res
|
|
.status(400)
|
|
.json(req.validationErrors())
|
|
.end();
|
|
default:
|
|
logger.error('Could perfom operation', error);
|
|
return res
|
|
.status(500)
|
|
.end();
|
|
}
|
|
};
|
|
|
|
module.exports = function (app, config) {
|
|
const { strategyStore, eventStore } = config.stores;
|
|
|
|
app.get('/strategies', (req, res) => {
|
|
strategyStore.getStrategies().then(strategies => {
|
|
res.json({ version, strategies });
|
|
});
|
|
});
|
|
|
|
app.get('/strategies/:name', (req, res) => {
|
|
strategyStore.getStrategy(req.params.name)
|
|
.then(strategy => res.json(strategy).end())
|
|
.catch(() => res.status(404).json({ error: 'Could not find strategy' }));
|
|
});
|
|
|
|
app.delete('/strategies/:name', (req, res) => {
|
|
const strategyName = req.params.name;
|
|
|
|
strategyStore.getStrategy(strategyName)
|
|
.then(() => eventStore.store({
|
|
type: eventType.strategyDeleted,
|
|
createdBy: extractUser(req),
|
|
data: {
|
|
name: strategyName,
|
|
},
|
|
}))
|
|
.then(() => res.status(200).end())
|
|
.catch(error => handleError(req, res, error));
|
|
});
|
|
|
|
app.post('/strategies', (req, res) => {
|
|
req.checkBody('name', 'Name is required').notEmpty();
|
|
req.checkBody('name', 'Name must match format ^[0-9a-zA-Z\\.\\-]+$').matches(/^[0-9a-zA-Z\\.\\-]+$/i);
|
|
|
|
const newStrategy = req.body;
|
|
|
|
validateRequest(req)
|
|
.then(validateStrategyName)
|
|
.then(() => eventStore.store({
|
|
type: eventType.strategyCreated,
|
|
createdBy: extractUser(req),
|
|
data: newStrategy,
|
|
}))
|
|
.then(() => res.status(201).end())
|
|
.catch(error => handleError(req, res, error));
|
|
});
|
|
|
|
function validateStrategyName (req) {
|
|
return new Promise((resolve, reject) => {
|
|
strategyStore.getStrategy(req.body.name)
|
|
.then(() => reject(new NameExistsError('Feature name already exist')))
|
|
.catch(() => resolve(req));
|
|
});
|
|
}
|
|
};
|