aboutsummaryrefslogtreecommitdiffstats
path: root/moon_gui/static/app/policy/action/policy.controller.add.js
blob: 0320c2e98284ba9e51130d1915538662d1b30a0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
(function() {

    'use strict';

    angular
        .module('moon')
        .controller('PolicyAddController', PolicyAddController);

    PolicyAddController.$inject = ['$scope', '$translate', 'alertService', 'formService', 'policyService', 'utilService', 'modelService'];

    function PolicyAddController($scope, $translate, alertService, formService, policyService, utilService, modelService) {

        var add = this;

        /*
         *
         */

        add.loading = false;

        add.form = {};

        add.policy =  {name: null, genre: null, description: null, model_id: null};

        add.genres = ['admin', 'authz'];

        add.models = [];

        add.modelsLoading = true;

        add.create = createPolicy;


        activate();

        function activate(){

            resolveModels();

        }

        /*
         *
         */

        function resolveModels() {

            modelService.findAllWithCallBack(resolveModelsCallback);

        }

        function resolveModelsCallback(models) {

            add.models = models;

            add.modelsLoading = false;

        }


        function createPolicy() {

            if(formService.isInvalid(add.form)) {

                formService.checkFieldsValidity(add.form);

            } else {


                add.loading = true;

                policyService.data.policy.create({}, {

                    name: add.policy.name,
                    description: add.policy.description,
                    genre: [add.selectedGenre],
                    model_id: add.selectedModel.id

                }, createSuccess, createError);

            }

            function createSuccess(data) {

                var createdPolicy = utilService.transformOne(data, 'policies');

                $translate('moon.policy.add.success', { policyName: createdPolicy.name }).then(function (translatedValue) {
                    alertService.alertSuccess(translatedValue);
                });

                add.loading = false;

                $scope.$emit('event:policyCreatedSuccess', createdPolicy);

            }

            function createError(reason) {

                $translate('moon.policy.add.error', { policyName: add.model.name }).then(function (translatedValue) {
                    alertService.alertError(translatedValue);
                });

                add.loading = false;

                $scope.$emit('event:policyCreatedError', add.project);

            }

        }

    }

})();