mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			162 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			162 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
 | 
						|
const Controller = require('../controller');
 | 
						|
const joi = require('joi');
 | 
						|
 | 
						|
const {
 | 
						|
    FEATURE_CREATED,
 | 
						|
    FEATURE_UPDATED,
 | 
						|
    FEATURE_ARCHIVED,
 | 
						|
} = require('../../event-type');
 | 
						|
const NameExistsError = require('../../error/name-exists-error');
 | 
						|
const { handleErrors } = require('./util');
 | 
						|
const extractUser = require('../../extract-user');
 | 
						|
const {
 | 
						|
    UPDATE_FEATURE,
 | 
						|
    DELETE_FEATURE,
 | 
						|
    CREATE_FEATURE,
 | 
						|
} = require('../../permissions');
 | 
						|
const { featureShema, nameSchema } = require('./feature-schema');
 | 
						|
const version = 1;
 | 
						|
 | 
						|
class FeatureController extends Controller {
 | 
						|
    constructor(config) {
 | 
						|
        super(config);
 | 
						|
        this.featureToggleStore = config.stores.featureToggleStore;
 | 
						|
        this.eventStore = config.stores.eventStore;
 | 
						|
 | 
						|
        this.get('/', this.getAllToggles);
 | 
						|
        this.post('/', this.createToggle, CREATE_FEATURE);
 | 
						|
        this.get('/:featureName', this.getToggle);
 | 
						|
        this.put('/:featureName', this.updateToggle, UPDATE_FEATURE);
 | 
						|
        this.delete('/:featureName', this.deleteToggle, DELETE_FEATURE);
 | 
						|
        this.post('/validate', this.validate);
 | 
						|
        this.post('/:featureName/toggle', this.toggle, UPDATE_FEATURE);
 | 
						|
    }
 | 
						|
 | 
						|
    async getAllToggles(req, res) {
 | 
						|
        const features = await this.featureToggleStore.getFeatures();
 | 
						|
        res.json({ version, features });
 | 
						|
    }
 | 
						|
 | 
						|
    async getToggle(req, res) {
 | 
						|
        try {
 | 
						|
            const name = req.params.featureName;
 | 
						|
            const feature = await this.featureToggleStore.getFeature(name);
 | 
						|
            res.json(feature).end();
 | 
						|
        } catch (err) {
 | 
						|
            res.status(404).json({ error: 'Could not find feature' });
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    async validate(req, res) {
 | 
						|
        const name = req.body.name;
 | 
						|
 | 
						|
        try {
 | 
						|
            await joi.validate({ name }, nameSchema);
 | 
						|
            await this.validateUniqueName(name);
 | 
						|
            res.status(201).end();
 | 
						|
        } catch (error) {
 | 
						|
            handleErrors(res, error);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    // TODO: cleanup this validation
 | 
						|
    async validateUniqueName(name) {
 | 
						|
        let msg;
 | 
						|
        try {
 | 
						|
            const definition = await this.featureToggleStore.hasFeature(name);
 | 
						|
            msg = definition.archived
 | 
						|
                ? 'An archived toggle with that name already exist'
 | 
						|
                : 'A toggle with that name already exist';
 | 
						|
        } catch (error) {
 | 
						|
            // No conflict, everything ok!
 | 
						|
            return;
 | 
						|
        }
 | 
						|
 | 
						|
        // Interntional throw here!
 | 
						|
        throw new NameExistsError(msg);
 | 
						|
    }
 | 
						|
 | 
						|
    async createToggle(req, res) {
 | 
						|
        const toggleName = req.body.name;
 | 
						|
        const userName = extractUser(req);
 | 
						|
 | 
						|
        try {
 | 
						|
            await this.validateUniqueName(toggleName);
 | 
						|
            const featureToggle = await joi.validate(req.body, featureShema);
 | 
						|
            await this.eventStore.store({
 | 
						|
                type: FEATURE_CREATED,
 | 
						|
                createdBy: userName,
 | 
						|
                data: featureToggle,
 | 
						|
            });
 | 
						|
            res.status(201).end();
 | 
						|
        } catch (error) {
 | 
						|
            handleErrors(res, error);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    async updateToggle(req, res) {
 | 
						|
        const featureName = req.params.featureName;
 | 
						|
        const userName = extractUser(req);
 | 
						|
        const updatedFeature = req.body;
 | 
						|
 | 
						|
        updatedFeature.name = featureName;
 | 
						|
 | 
						|
        try {
 | 
						|
            await this.featureToggleStore.getFeature(featureName);
 | 
						|
            await joi.validate(updatedFeature, featureShema);
 | 
						|
            await this.eventStore.store({
 | 
						|
                type: FEATURE_UPDATED,
 | 
						|
                createdBy: userName,
 | 
						|
                data: updatedFeature,
 | 
						|
            });
 | 
						|
            res.status(200).end();
 | 
						|
        } catch (error) {
 | 
						|
            handleErrors(res, error);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    async toggle(req, res) {
 | 
						|
        const featureName = req.params.featureName;
 | 
						|
        const userName = extractUser(req);
 | 
						|
 | 
						|
        try {
 | 
						|
            const feature = await this.featureToggleStore.getFeature(
 | 
						|
                featureName
 | 
						|
            );
 | 
						|
 | 
						|
            feature.enabled = !feature.enabled;
 | 
						|
            await this.eventStore.store({
 | 
						|
                type: FEATURE_UPDATED,
 | 
						|
                createdBy: userName,
 | 
						|
                data: feature,
 | 
						|
            });
 | 
						|
            res.status(200).end();
 | 
						|
        } catch (error) {
 | 
						|
            handleErrors(res, error);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    async deleteToggle(req, res) {
 | 
						|
        const featureName = req.params.featureName;
 | 
						|
        const userName = extractUser(req);
 | 
						|
 | 
						|
        try {
 | 
						|
            await this.featureToggleStore.getFeature(featureName);
 | 
						|
            await this.eventStore.store({
 | 
						|
                type: FEATURE_ARCHIVED,
 | 
						|
                createdBy: userName,
 | 
						|
                data: {
 | 
						|
                    name: featureName,
 | 
						|
                },
 | 
						|
            });
 | 
						|
            res.status(200).end();
 | 
						|
        } catch (error) {
 | 
						|
            handleErrors(res, error);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
module.exports = FeatureController;
 |