summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/core/services/managemencs.service.ts
blob: c8eed218d07ea4661c94bf6095e61ae2806321db (plain)
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
import { Injectable } from '@angular/core';
import { HttpClient, HttpHeaders, HttpParams, HttpResponse } from '@angular/common/http';
import { Observable } from 'rxjs/Observable';
import { baseUrl } from '../models/dataInterface';


@Injectable()
export class ManagemencsService {

    constructor(private http: HttpClient) { }
    baseUrl = baseUrl.baseUrl;

    /* line up */
    url = {
        customers: this.baseUrl + "/uui-lcm/customers", /* get or delete */
        CustomersPir: this.baseUrl + "/uui-lcm/serviceNumByCustomer", /* get */
        serviceType: this.baseUrl + "/uui-lcm/customers/*_*/service-subscriptions", /* get */
        CustomersColumn: this.baseUrl + "/uui-lcm/serviceNumByServiceType/" + "*_*", /* get */
        deleteCustomer: this.baseUrl + "/uui-lcm/customers", /* delete */
        createCustomer: this.baseUrl + "/uui-lcm/customers/", /* put */
        createServiceType: this.baseUrl + "/uui-lcm/customers/*_*/service-subscriptions/*+*", /* put */
        getCustomerresourceVersion: this.baseUrl + "/uui-lcm/customers/*_*", /* get */
        getServiceTypeResourceVersion: this.baseUrl + "/uui-lcm/customers/*_*/service-subscriptions/*+*",
        deleteServiceType: this.baseUrl + "/uui-lcm/customers/*_*/service-subscriptions/*+*",
    };

    //The following APIs are optimizable ----------------------------------

    // Get all customers
    getAllCustomers() {
        return this.http.get<any>(this.url.customers);
    }
    // create New Customer
    createCustomer(customer, createParams) {
        let url = this.url.createCustomer + customer;
        return this.http.put(url, createParams);
    }
    // delete SelectCustomer
    deleteSelectCustomer(paramsObj) {
        let url = this.url.deleteCustomer;
        let params = new HttpParams({ fromObject: paramsObj });
        return this.http.delete(url, { params });
    }

    //The following APIs are not optimizable ---------------------------------

    // get all servicetype
    getServiceTypes(customer) {
        let url = this.url.serviceType.replace("*_*", customer.id);
        return this.http.get<any>(url);
    }
    // get Customer Pir
    getCustomersPie() {
        return this.http.get<any>(this.url.CustomersPir);
    }
    // get Customer ber
    getCustomersColumn(customer) {
        let url = this.url.CustomersColumn.replace("*_*", customer.id);
        return this.http.get<any>(url);
    }
    // create ServiceType
    createServiceType(createParams) {
        let customerId = createParams.customer.id,
            ServiceType = createParams.ServiceType;
        let url = this.url.createServiceType.replace("*_*", customerId).replace("*+*", ServiceType);
        return this.http.put(url, createParams);//online
    }
    // Get delete Customer Version
    getdeleteCustomerVersion(thisdeleteCustomer) {
        let url = this.url.getCustomerresourceVersion.replace("*_*", thisdeleteCustomer.id);
        return this.http.get(url);
    }
    // Get delete ServiceType Version
    getdeleteServiceTypeVersion(params) {
        let customerId = params.customerId.id,
            ServiceType = params.ServiceType;
        let url = this.url.getServiceTypeResourceVersion.replace("*_*", customerId).replace("*+*", ServiceType);
        return this.http.get(url);
    }
    // delete Select ServiceType
    deleteSelectServiceType(paramsObj) {
        let customerId = paramsObj.customerId.id,
            ServiceType = paramsObj.ServiceType,
            version = {
                "resourceVersion": paramsObj.version
            };
        let url = this.url.deleteServiceType.replace("*_*", customerId).replace("*+*", ServiceType);
        let params = new HttpParams({ fromObject: version });
        return this.http.delete(url, { params });
    }
}