1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/unleash-server/lib/featureApi.js
2014-10-23 15:17:22 +02:00

67 lines
1.9 KiB
JavaScript

var eventStore = require('./eventStore'),
eventType = require('./eventType'),
featureDb = require('./featureDb');
module.exports = function (app) {
app.get('/features', function (req, res) {
featureDb.getFeatures().then(function (features) {
res.json({features: features});
});
});
app.get('/features/:id', function (req, res) {
featureDb.getFeature(req.params.id).then(function (feature) {
if (feature) {
res.json(feature);
} else {
res.json(404, {error: 'Could not find feature'});
}
});
});
app.post('/features', function (req, res) {
var newFeature = req.body,
createdBy = req.connection.remoteAddress;
var handleFeatureExist = function() {
res.status(403).end();
};
var handleCreateFeature = function () {
eventStore.create({
type: eventType.featureCreated,
createdBy: createdBy,
data: newFeature
}).then(function () {
res.status(201).end();
}, function () {
res.status(500).end();
});
};
featureDb.getFeature(newFeature.name).then(handleFeatureExist, handleCreateFeature);
});
app.patch('/features/:featureName', function (req, res) {
var featureName = req.params.featureName;
featureDb.getFeature(featureName).then(
function () {
var changeRequest = req.body;
var event = {};
event.type = eventType.featureUpdated;
event.user = req.connection.remoteAddress;
event.data = changeRequest;
res.status(202).end();
},
function () {
res.status(404).end();
}
);
});
};