/* 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 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 + "", sourceNames: this.baseUrl + "/alarm/getSourceNames", listSortMasters:this.baseUrl+"/listSortMasters", currentLanguage:this.baseUrl+"/ONAPPORTAL/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(this.url.home_serviceData); } getHomePerformanceData() { return this.http.get(this.url.home_performanceData); } getHomeAlarmData() { return this.http.get(this.url.home_alarmData); } getHomeAlarmChartData(paramsObj) { let params = new HttpParams({ fromObject: paramsObj }); return this.http.get(this.url.home_alarmChartData, { params }); } getHomeServiceBarData(){ return this.http.get(this.url.home_servicebarData); } // alarm data getAlarmFormData(currentPage: number, pageSize: number, sourceName?: string, priority?: string, startTime?: string, endTime?: string, vfStatus?: string) { return this.http.get(this.baseUrl + '/alarm/' + '/' + currentPage + '/' + pageSize + '?sourceName=' + sourceName + '&priority=' + priority + '&startTime=' + startTime + '&endTime=' + endTime + '&vfStatus=' + vfStatus); } getSourceNames() { return this.http.get(this.baseUrl + '/alarm/getSourceNames/'); } getstatuscount() { let httpurl = this.baseUrl + '/alarm/statusCount'; return this.http.get(httpurl); } getAlarmDetailData(id) { let httpurl = this.baseUrl + '/alarm/getAlarmsHeaderDetail/' + id; return this.http.get(httpurl); } // performance data getqueryAllSourceNames() { let httpurl = this.baseUrl + "/performance/queryAllSourceNames"; return this.http.get(httpurl); } getperformanceSourceNames(currentPage: number, pageSize: number, sourceName: string) { let httpurl = this.baseUrl + "/performanceSsourceNames" + "/" + currentPage + "/" + pageSize + "?sourceName=" + sourceName; return this.http.get(httpurl); } getPerformanceFormData(currentPage: number, pageSize: number, sourceName?: string, startTime?: string, endTime?: string) { return this.http.get(this.baseUrl + '/performance' + '/' + currentPage + '/' + pageSize + '?sourceName=' + sourceName + '&startTime=' + startTime + '&endTime=' + endTime); } getPerformanceHeaderDetail(id) { let httpurl = this.baseUrl + '/performance/getPerformanceHeaderDetail/' + id; return this.http.get(httpurl); } //2019.1.2 add listSortMasters getListSortMasters(){ return this.http.get(this.url.listSortMasters); } //2019.05.08 add getCurrentLanguage(currentloginId){ let url=this.url.currentLanguage+currentloginId; return this.http.get(url); } }