b91a813161f3e6bc3b335f9f1b2a3f1cca5cb121
[portal.git] / ecomp-portal-FE-common / client / app / services / translate / translate.service.js
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2019 CMCC, Inc. and others. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * 
37  */
38 'use strict';
39
40 (function () {
41   class TranslateService {
42     constructor($q, $log, $http, conf, uuid, utilsService) {
43       this.$q = $q;
44       this.$log = $log;
45       this.$http = $http;
46       this.conf = conf;
47       this.uuid = uuid;
48       this.utilsService = utilsService;
49     }
50     getCurrentLang(loginId) {
51       let deferred = this.$q.defer();
52       this.$log.info('TranslateService::getCurrentLang');
53       let url = this.conf.api.getCurrentLang.replace(':loginId', loginId);
54       this.$log.info('TranslateMenuService::getCurrentLang url: '+url);
55       this.$http({
56         method: 'GET',
57         url: url,
58         cache: false,
59         headers: {
60           'X-ECOMP-RequestID':this.uuid.generate()
61         }
62       }).then(res => {
63         // If response comes back as a redirected HTML page which IS NOT a success
64         if (this.utilsService.isValidJSON(res)== false) {
65           deferred.reject('functionalMenu.service::getManagedRolesMenu Failed');
66         } else {
67           this.$log.info('functionalMenu.service::getManagedRolesMenu succeeded: ');
68           deferred.resolve(res.data);
69         }
70       }).catch(status => {
71         deferred.reject(status);
72       });
73       return deferred.promise;
74     }
75     getLangList() {
76       let deferred = this.$q.defer();
77       this.$http({
78         method: 'GET',
79         url: this.conf.api.getLanguages,
80         // url: 'http://172.20.230.41:9000/ecompportal/auxapi/language',
81         cache: false,
82         headers: {
83           'X-ECOMP-RequestID':this.uuid.generate()
84         }
85       }).then(res => {
86         // If response comes back as a redirected HTML page which IS NOT a success
87         if (this.utilsService.isValidJSON(res)== false) {
88           deferred.reject('TranslateService::getLangList Failed');
89         } else {
90           this.$log.info('TranslateService::getLangList succeeded: ');
91           deferred.resolve(res.data);
92         }
93       }).catch(status => {
94         deferred.reject(status);
95       });
96       return deferred.promise;
97     }
98     saveSelectedLang(loginId, data) {
99       let deferred = this.$q.defer();
100       this.$log.info('saveSelectedLang::saveSelectedLang: ', data);
101       let url = this.conf.api.updateLang.replace(':loginId', loginId);
102       this.$http({
103         method: 'POST',
104         url: url,
105         cache: false,
106         data: data,
107         headers: {
108           'X-ECOMP-RequestID':this.uuid.generate()
109         }
110       }).then(res => {
111         // If response comes back as a redirected HTML page which IS NOT a success
112         if (this.utilsService.isValidJSON(res)== false) {
113           deferred.reject('saveSelectedLang::saveSelectedLang Failed');
114         } else {
115           this.$log.info('saveSelectedLang::saveSelectedLang succeeded: ');
116           deferred.resolve(res.data);
117         }
118       }).catch(errRes => {
119         deferred.reject(errRes);
120       });
121       return deferred.promise;
122     }
123   }
124   TranslateService.$inject = ['$q', '$log', '$http', 'conf','uuid4', 'utilsService'];
125   angular.module('ecompApp').service('translateService', TranslateService)
126 })();