bee3a4c27e88f39725d22f9f2d4f74252720644f
[vid.git] / vid-app-common / src / main / webapp / app / vid / scripts / modals / report-modal / report-modal-request.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("reportModalInstanceController", ["$uibModalInstance", "$scope", "$window", "ReportService", "errorMsg", "requestInfo", reportModalInstanceController]);
25
26     function reportModalInstanceController($uibModalInstance, $scope, $window, ReportService, errorMsg, requestInfo) {
27         const vm = this;
28
29         const init = function() {
30             vm.timestamp =  ReportService.getReportTimeStamp();
31             vm.downloadEnable = false;
32             ReportService.getReportData(requestInfo).then(
33                 response => {
34                     vm.saveReportData(response);
35                 }, response => {
36                     vm.printReportFail(response);
37                 });
38         };
39
40         vm.saveReportData = function(response) {
41             vm.report = errorMsg + "\n\n Collected data from API:\n" + JSON.stringify(response.data,  null, "\t") ;
42
43             const blob = new Blob([ vm.report ], { type : 'text/plain' });
44             vm.download = ($window.URL || $window.webkitURL).createObjectURL( blob );
45             vm.downloadEnable = true;
46         };
47
48         vm.printReportFail = function(response) {
49             vm.downloadEnable = false;
50             vm.report = errorMsg + "\n\n API error:\n" + JSON.stringify(response.data,  null, "\t") ;
51         };
52
53
54         vm.close = function () {
55             $uibModalInstance.close();
56         };
57
58         vm.ok = function () {
59             $uibModalInstance.close(true);
60         };
61
62         init();
63     }
64 })();