eff029175f665742c7ff747b7b01bde23e5d1678
[vid.git] / vid-app-common / src / main / webapp / app / vid / scripts / modals / report-modal / report-modal.controller.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2019 NOKIA Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 (function () {
22     'use strict';
23
24     appDS2.controller("reportModalController", ["$uibModalInstance", "$scope", "$window", "DataService", "ReportService", "errorMsg", reportModalController]);
25
26     function reportModalController($uibModalInstance, $scope, $window, DataService, ReportService, errorMsg) {
27         const vm = this;
28
29         const init = function() {
30             vm.timestamp =  ReportService.getReportTimeStamp();
31             vm.downloadEnable = false;
32             $scope.isSpinnerVisible = true;
33
34             ReportService.getReportData({}).then(
35                 response => {
36                     $scope.isSpinnerVisible = false;
37                     vm.saveReportData(response);
38                 }, response => {
39                     $scope.isSpinnerVisible = false;
40                     vm.printReportFail(response);
41                 });
42         };
43
44         vm.saveReportData = function(response) {
45             vm.report =
46                 "Selected test API: \n" + DataService.getMsoRequestParametersTestApi()
47                 + "\n\n Data from GUI:\n" + errorMsg
48                 + "\n\n Collected data from API:\n" + JSON.stringify(response.data,  null, "\t") ;
49
50
51             const blob = new Blob([ vm.report ], { type : 'text/plain' });
52             vm.download = ($window.URL || $window.webkitURL).createObjectURL( blob );
53             vm.downloadEnable = true;
54         };
55
56         vm.printReportFail = function(response) {
57             vm.downloadEnable = false;
58             vm.report = errorMsg + "\n\n API error:\n" + JSON.stringify(response.data,  null, "\t") ;
59         };
60
61         vm.close = function () {
62             $uibModalInstance.close();
63         };
64
65         vm.ok = function () {
66             $uibModalInstance.close(true);
67         };
68
69         init();
70     }
71 })();