nexus site path corrected
[portal.git] / ecomp-portal-FE / client / app / services / manifest / manifest.service.js
1 /*-
2  * ================================================================================
3  * eCOMP Portal
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
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  * ================================================================================
19  */
20 /**
21  * Created by mlittle on 9/9/2016.
22  */
23 'use strict';
24
25 (function () {
26     class ManifestService {
27         constructor($q, $log, $http, conf, uuid, utilsService) {
28             this.$q = $q;
29             this.$log = $log;
30             this.$http = $http;
31             this.conf = conf;
32             this.uuid = uuid;
33             this.utilsService = utilsService;
34         }
35
36         getManifest() {
37             let deferred = this.$q.defer();
38             this.$http({
39                 method: "GET",
40                 url: this.conf.api.getManifest,
41                 cache: false,
42                 headers: {
43                     'X-ECOMP-RequestID':this.uuid.generate()
44                 }
45             }).then( res => {
46                 if (this.utilsService.isValidJSON(res)== false) {
47                     this.$log.error('ManifestService.getManifest failed: ');
48                     deferred.reject('ManifestService.getManifest: response.data null or not object');
49                 } else {
50                     // this.$log.info('ManifestService.getManifest Succeeded');
51                     // this.$log.debug('ManifestService.getManifest: ', JSON.stringify(res))
52                     deferred.resolve(res.data);
53                 }
54             }).catch( status => {
55                 this.$log.error('ManifestService.getManifest failed: ' + status.data);
56                 deferred.reject(status);
57             });
58             return deferred.promise;
59         }
60
61     }
62     ManifestService.$inject = ['$q', '$log', '$http', 'conf', 'uuid4', 'utilsService'];
63     angular.module('ecompApp').service('manifestService', ManifestService)
64 })();