summaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/app/modules/home/serviceUpload/onboarding/onBoardingService.js
blob: abc788c39d949026e35c9b899a304de20e01f54a (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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/*
 * Copyright 2017 Huawei Technologies Co., Ltd.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
(function () {
    'use strict';

    /**
     * @ngdoc function
     * @name app.service:homeService
     * @description
     * # homeService
     * Service of the app
     */

    angular.module('vnfmarket')
        .factory('onBoardingService', onBoardingService);

    onBoardingService.$inject = ['$q', 'vnfConfig', 'httpService', '$mdDialog'];

    function onBoardingService($q, vnfConfig, httpService, $mdDialog) {
        return {
            getFunctionalList: getFunctionalList,
            getOnBoardingSteps: getOnBoardingSteps
        };

        function getFunctionalList(csarId, operTypeId, operId) {
            var url = vnfConfig.api.home.getFunctionalList.url,
                method = vnfConfig.api.home.getFunctionalList.method;

            url = url.replace(":csarId", csarId);
            url += "?operTypeId=" + operTypeId;
            url += "&operId=" + operId;


            /*var response =
                {
                    "operTypeName": "Validation",
                    "operTypeId": "validation",
                    "oper": [{
                        "operId": "upload_id_1",
                        "operName": "XYZ",
                        "status": 0
                    }]
                };

            if(operTypeId == "lifecycletest" && operId == "lifecycle_id_2") {
                response =
                {
                    "operTypeName": "Validation",
                    "operTypeId": "validation",
                    "oper": [{
                        "operId": "upload_id_1",
                        "operName": "XYZ",
                        "status": 0
                    }]
                };
            }*/

            var defer = $q.defer();

            //defer.resolve(response);

            httpService.apiRequest(url, method)
                .then(function (response) {
                    defer.resolve(response);
                }, function (error) {
                    defer.reject(error);
                });
            return defer.promise;
        }

        function getOnBoardingSteps() {

            var url = vnfConfig.api.home.getOnBoardingSteps.url,
                method = vnfConfig.api.home.getOnBoardingSteps.method;

            var defer = $q.defer();

            /*var response = [
                {
                    "operTypeName": "Validation",
                    "operTypeId": "validation",
                    "oper": [{
                        "operId": "upload_id_1",
                        "operName": "XYZ"
                    }, {
                        "operId": "upload_id_2",
                        "operName": "XYZ"
                    }]
                },
                {
                    "operTypeName": "LifeCycle",
                    "operTypeId": "lifecycletest",
                    "oper": [{
                        "operId": "lifecycle_id_1",
                        "operName": "XYZ"
                    }, {
                        "operId": "lifecycle_id_2",
                        "operName": "XYZ"
                    }, {
                        "operId": "lifecycle_id_3",
                        "operName": "ZZZ"
                    }]
                },
                {
                    "operTypeName": "Function Test",
                    "operTypeId": "functiontest",
                    "oper": [
                        {
                            "operId": "packageExists",
                            "operName": "Check Package exists"
                        }, {
                            "operId": "download",
                            "operName": "Download Package from Repository"
                        },
                        {
                            "operId": "functestexec",
                            "operName": "Execute Function Testing"
                        },
                        {
                            "operId": "functestexec2",
                            "operName": "Execute Function Testing2"
                        },
                        {
                            "operId": "functestexec3",
                            "operName": "Execute Function Testing3"
                        }]
                }
            ];

            defer.resolve(response);*/


            httpService.apiRequest(url, method)
                .then(function (response) {
                    defer.resolve(response);
                }, function (error) {
                    defer.reject(error);
                });
            return defer.promise;
        }
    }

})();