mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
37 lines
1.3 KiB
JavaScript
37 lines
1.3 KiB
JavaScript
var logger = require('../logger');
|
|
var eventType = require('../eventType');
|
|
var ValidationError = require('../error/ValidationError');
|
|
var validateRequest = require('../error/validateRequest');
|
|
|
|
module.exports = function (app, config) {
|
|
var featureDb = config.featureDb;
|
|
var eventStore = config.eventStore;
|
|
|
|
app.get('/archive/features', function (req, res) {
|
|
featureDb.getArchivedFeatures().then(function (archivedFeatures) {
|
|
res.json({ 'features': archivedFeatures });
|
|
});
|
|
});
|
|
|
|
app.post('/archive/revive', function (req, res) {
|
|
req.checkBody('name', 'Name is required').notEmpty();
|
|
|
|
validateRequest(req)
|
|
.then(function() {
|
|
return eventStore.create({
|
|
type: eventType.featureRevived,
|
|
createdBy: req.connection.remoteAddress,
|
|
data: req.body
|
|
});
|
|
}).then(function() {
|
|
res.status(200).end();
|
|
}).catch(ValidationError, function() {
|
|
res.status(400).json(req.validationErrors());
|
|
})
|
|
.catch(function(err) {
|
|
logger.error("Could not revive feature toggle", err);
|
|
res.status(500).end();
|
|
});
|
|
});
|
|
};
|