Added service components
[portal.git] / portal-FE-common / src / app / shared / services / scheduler / scheduler.service.ts
1 /*
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright © 2019 AT&T Intellectual Property. 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
39 import { Injectable } from '@angular/core';
40 import { HttpClient, HttpParams } from '@angular/common/http';
41 import { environment } from '../../../../environments/environment';
42 import { Observable } from 'rxjs';
43
44 @Injectable({
45   providedIn: 'root'
46 })
47 export class SchedulerService {
48
49   api = environment.api;
50
51   constructor(private http: HttpClient) { }
52
53   /** get scheduler uuID **/
54   getStatusSchedulerId(schedulerInfo:any): Observable<any> {
55     let getStatusSchedulerByIdURL = this.api.getSchedulerId+'?r='+ Math.random();
56     return this.http.post(getStatusSchedulerByIdURL,schedulerInfo);
57   }
58
59   /** get time slots for Range scheduler **/
60   getTimeslotsForScheduler(schedulerID:any): Observable<any> {
61     let getTimeslotsForSchedulerURL = this.api.getTimeslotsForScheduler + '/' + schedulerID + '?r=' + Math.random();
62     return this.http.get(getTimeslotsForSchedulerURL);
63   }
64
65   /** postSubmitForApprovedTimeslots **/
66   postSubmitForApprovedTimeslots(approvedTimeSlotsObj:any): Observable<any> {
67     let getStatusSchedulerByIdURL = this.api.postSubmitForApprovedTimeslots+'?r='+ Math.random();
68     return this.http.post(getStatusSchedulerByIdURL,approvedTimeSlotsObj);
69   }
70
71   /** Get policy information from BE **/
72   getPolicyInfo(): Observable<any> {
73     let getPolicyInfoURL = this.api.getPolicy+'?r='+ Math.random();
74     return this.http.get<Map<String, any>>(getPolicyInfoURL);
75   }
76
77   /** get Scheduler UI constants from BE **/
78   getSchedulerConstants(): Observable<any> {
79     let getSchedulerConstantsURL = this.api.getSchedulerConstants;
80     return this.http.get(getSchedulerConstantsURL);
81   }
82
83   /** getWidgetData **/
84   getWidgetData(widgetId: any,widgetData: any, widgetParam: any){
85     let widgetInfo={
86       id: widgetId,
87       data: widgetData,
88       param: widgetParam
89     }
90     return widgetInfo;
91   }
92
93   showWidget(widgetId: any,widgetData: any, widgetParam: any) {
94     let widgetInfo={
95       id: widgetId,
96       data: widgetData,
97       param: widgetParam
98     }
99     //Need to open  popup here
100   }
101 }