mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
0546100556
relates to #102
116 lines
4.2 KiB
JavaScript
116 lines
4.2 KiB
JavaScript
'use strict';
|
|
const BPromise = require('bluebird');
|
|
const logger = require('../logger');
|
|
const eventType = require('../eventType');
|
|
const NameExistsError = require('../error/NameExistsError');
|
|
const NotFoundError = require('../error/NotFoundError');
|
|
const ValidationError = require('../error/ValidationError');
|
|
const validateRequest = require('../error/validateRequest');
|
|
const extractUser = require('../extractUser');
|
|
|
|
const legacyFeatureMapper = require('../helper/legacy-feature-mapper');
|
|
const version = 1;
|
|
|
|
module.exports = function (app, config) {
|
|
const featureDb = config.featureDb;
|
|
const eventStore = config.eventStore;
|
|
|
|
app.get('/features', (req, res) => {
|
|
featureDb.getFeatures()
|
|
.then((features) => features.map(legacyFeatureMapper.addOldFields))
|
|
.then(features => res.json({ version, features }));
|
|
});
|
|
|
|
app.get('/features/:featureName', (req, res) => {
|
|
featureDb.getFeature(req.params.featureName)
|
|
.then(legacyFeatureMapper.addOldFields)
|
|
.then(feature => res.json(feature).end())
|
|
.catch(() => res.status(404).json({ error: 'Could not find feature' }));
|
|
});
|
|
|
|
app.post('/features', (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);
|
|
|
|
validateRequest(req)
|
|
.then(validateFormat)
|
|
.then(validateUniqueName)
|
|
.then(() => eventStore.create({
|
|
type: eventType.featureCreated,
|
|
createdBy: extractUser(req),
|
|
data: legacyFeatureMapper.toNewFormat(req.body),
|
|
}))
|
|
.then(() => res.status(201).end())
|
|
.catch(NameExistsError, () => {
|
|
res.status(403)
|
|
.json([{ msg: `A feature named '${req.body.name}' already exists.` }])
|
|
.end();
|
|
})
|
|
.catch(ValidationError, () => res.status(400).json(req.validationErrors()))
|
|
.catch(err => {
|
|
logger.error('Could not create feature toggle', err);
|
|
res.status(500).end();
|
|
});
|
|
});
|
|
|
|
app.put('/features/:featureName', (req, res) => {
|
|
const featureName = req.params.featureName;
|
|
const userName = extractUser(req);
|
|
const updatedFeature = legacyFeatureMapper.toNewFormat(req.body);
|
|
|
|
updatedFeature.name = featureName;
|
|
|
|
featureDb.getFeature(featureName)
|
|
.then(() => eventStore.create({
|
|
type: eventType.featureUpdated,
|
|
createdBy: userName,
|
|
data: updatedFeature,
|
|
}))
|
|
.then(() => res.status(200).end())
|
|
.catch(NotFoundError, () => res.status(404).end())
|
|
.catch(err => {
|
|
logger.error(`Could not update feature toggle=${featureName}`, err);
|
|
res.status(500).end();
|
|
});
|
|
});
|
|
|
|
app.delete('/features/:featureName', (req, res) => {
|
|
const featureName = req.params.featureName;
|
|
const userName = extractUser(req);
|
|
|
|
featureDb.getFeature(featureName)
|
|
.then(() => eventStore.create({
|
|
type: eventType.featureArchived,
|
|
createdBy: userName,
|
|
data: {
|
|
name: featureName,
|
|
},
|
|
}))
|
|
.then(() => res.status(200).end())
|
|
.catch(NotFoundError, () => res.status(404).end())
|
|
.catch(err => {
|
|
logger.error(`Could not archive feature=${featureName}`, err);
|
|
res.status(500).end();
|
|
});
|
|
});
|
|
|
|
function validateUniqueName (req) {
|
|
return new BPromise((resolve, reject) => {
|
|
featureDb.getFeature(req.body.name)
|
|
.then(() => {
|
|
reject(new NameExistsError('Feature name already exist'));
|
|
}, () => {
|
|
resolve(req);
|
|
});
|
|
});
|
|
}
|
|
|
|
function validateFormat (req) {
|
|
if (req.body.strategy && req.body.strategies) {
|
|
return BPromise.reject(new ValidationError('Cannot use both "strategy" and "strategies".'));
|
|
}
|
|
|
|
return BPromise.resolve(req);
|
|
}
|
|
};
|