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
|
/*
Copyright (C) 2019 CMCC, Inc. and others. All rights reserved.
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.
*/
import { Injectable } from '@angular/core';
import { HttpClient, HttpHeaders, HttpParams, HttpResponse } from '@angular/common/http';
import { Observable } from 'rxjs/Observable';
import { homeData, homeVmLineData, servicesSelectData, servicesTableData, creatensData, onboardTableData, onboardDataVNF, onboardDataPNF , baseUrl} from './dataInterface';
@Injectable()
export class HomesService {
constructor(private http: HttpClient) { }
baseUrl = baseUrl.baseUrl;
baseUrlbar = baseUrl.baseUrl + "/uui-lcm/";
url = {
home_serviceData: this.baseUrl + "/uui-lcm/serviceNumByCustomer",
home_performanceData: this.baseUrl + "/performance/queryAllSourceNames",
home_alarmData: this.baseUrl + "/alarm/statusCount",
home_alarmChartData: this.baseUrl + "/alarm/diagram",
home_servicebarData:this.baseUrl + "",
home_servicebarnsData: this.baseUrlbar + "ns-packages",
home_servicebarvnfData: this.baseUrlbar + "vnf-packages",
home_servicebarpnfData: this.baseUrlbar + "pnf-packages",
sourceNames: this.baseUrl + "/alarm/getSourceNames",
listSortMasters:this.baseUrl+"/listSortMasters",
currentLanguage:"/api/portal-auxapi/languageSetting/user/",
}
// Time formatting milliseconds to normal
dateformater(vmstime) {
if (!vmstime) {
return ''
}
let mstime = Number((vmstime + '').slice(0, 13));
let time = new Date(mstime);
let year = time.getFullYear();
let month = time.getMonth() + 1;
let day = time.getDate();
let hours = time.getHours();
let minutes = time.getMinutes();
let seconds = time.getSeconds();
let formattime = year + '-' + month + '-' + day + ' ' + hours + ':' + minutes + ':' + seconds;
return formattime;
}
// home
getHomeServiceData() {
return this.http.get<any>(this.url.home_serviceData);
}
getHomePerformanceData() {
return this.http.get<String[]>(this.url.home_performanceData);
}
getHomeAlarmData() {
return this.http.get<any>(this.url.home_alarmData);
}
getHomeAlarmChartData(paramsObj) {
let params = new HttpParams({ fromObject: paramsObj });
return this.http.get<any>(this.url.home_alarmChartData, { params });
}
getHomeServiceBarData(){
return this.http.get<any>(this.url.home_servicebarData);
}
getHomeServiceBarNsData(){
return this.http.get<any>(this.url.home_servicebarnsData);
}
getHomeServiceBarVnfData(){
return this.http.get<any>(this.url.home_servicebarvnfData);
}
getHomeServiceBarPnfData(){
return this.http.get<any>(this.url.home_servicebarpnfData);
}
// alarm data
getAlarmFormData(currentPage: number, pageSize: number, sourceName?: string, priority?: string, startTime?: string, endTime?: string, vfStatus?: string) {
return this.http.get<any>(this.baseUrl + '/alarm/' + '/' + currentPage + '/' + pageSize + '?sourceName=' + sourceName + '&priority=' + priority + '&startTime=' + startTime + '&endTime=' + endTime + '&vfStatus=' + vfStatus);
}
getSourceNames() {
return this.http.get<any>(this.baseUrl + '/alarm/getSourceNames/');
}
getstatuscount() {
let httpurl = this.baseUrl + '/alarm/statusCount';
return this.http.get<any>(httpurl);
}
getAlarmDetailData(id) {
let httpurl = this.baseUrl + '/alarm/getAlarmsHeaderDetail/' + id;
return this.http.get<any>(httpurl);
}
// performance data
getqueryAllSourceNames() {
let httpurl = this.baseUrl + "/performance/queryAllSourceNames";
return this.http.get<any>(httpurl);
}
getperformanceSourceNames(currentPage: number, pageSize: number, sourceName: string) {
let httpurl = this.baseUrl + "/performanceSsourceNames" + "/" + currentPage + "/" + pageSize + "?sourceName=" + sourceName;
return this.http.get<any>(httpurl);
}
getPerformanceFormData(currentPage: number, pageSize: number, sourceName?: string, startTime?: string, endTime?: string) {
return this.http.get<any>(this.baseUrl + '/performance' + '/' + currentPage + '/' + pageSize + '?sourceName=' + sourceName + '&startTime=' + startTime + '&endTime=' + endTime);
}
getPerformanceHeaderDetail(id) {
let httpurl = this.baseUrl + '/performance/getPerformanceHeaderDetail/' + id;
return this.http.get<any>(httpurl);
}
getListSortMasters(){
return this.http.get<any>(this.url.listSortMasters);
}
getCurrentLanguage(currentloginId){
let url=this.url.currentLanguage+currentloginId;
return this.http.get<any>(url);
}
}
|