summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/testBE/FakeBackendInterceptor.ts
blob: dd1c0d20918193fa8f3e60d051c7e52a53ee762a (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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
import { Injectable } from '@angular/core';
import { HttpRequest, HttpResponse, HttpHandler, HttpEvent, HttpInterceptor, HTTP_INTERCEPTORS } from '@angular/common/http';
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/observable/of';
import 'rxjs/add/observable/throw';
import 'rxjs/add/operator/delay';
import 'rxjs/add/operator/mergeMap';
import 'rxjs/add/operator/materialize';
import 'rxjs/add/operator/dematerialize';

@Injectable()
export class FakeBackendInterceptor implements HttpInterceptor {

    constructor() { }
    loopcnt: any = 0;
    bodyData = [];
    statusCnt:any =10;

    intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
        // array in local storage for registered users
        let sites: any[] = JSON.parse(localStorage.getItem('sites')) || [];

        // wrap in delayed observable to simulate server api call
        return Observable.of(null).mergeMap(() => {

            // create site
            if (request.url.endsWith('order/newSiteData') && request.method === 'POST') {
                // get new user object from post body
                let newSite = request.body;
                sites.push(newSite);
                localStorage.setItem('sites', JSON.stringify(sites));
                console.log(sites);
              
                // respond 200 OK
                return Observable.of(new HttpResponse({ status: 200 }));
            }
            // get data manage service data
            if (request.url.endsWith('/uui-lcm/Sotnservices/servicesubscription/SOTN/serviceinstance/ISAAC-IS02') || request.url.endsWith('/uui-lcm/Sotnservices/servicesubscription/SOTN/serviceinstance/ISAAC-IS03') && request.method === 'GET') {
                let body = {
                    "service":{
                        "name":"CCVPNServiceV2-36",
                        "description":"CCVPNServiceV2",
                        "serviceInvariantUuid":"57c8a933-1364-4f85-b7a9-666d80ecc5b6",
                        "serviceUuid":"0734e398-a427-49f2-9abe-de8eb02542ad",
                        "globalSubscriberId": "{{customer}}",
                        "serviceType": "{{service-subscription}}",
                        "parameters":{
                          "locationConstraints":[],
                          "resources":[],
                          "requestInputs":{                
                            "sotnUnderlay":[
                              {
                                "l2vpn":[
                                  {
                                    "l2vpn_COS": "123",         
                                    "l2vpn_dualLink": "Yes",
                                    "l2vpn_description": "VPN Description",                 
                                    "l2vpn_name": "VPN2",
                                    "l2vpn_tenantId": "989933",                  
                                    "l2vpn_vpnType": "SOTN",         
                                    "l2vpn_cbs": "123",                 
                                    "l2vpn_ebs": "23",         
                                    "l2vpn_colorAware": "true",         
                                    "l2vpn_reroute": "Yes",        
                                    "l2vpn_couplingFlag": "true",                 
                                    "l2vpn_cir": "100",
                                    "l2vpn_startTime": "28-02-2020",
                                    "l2vpn_endTime": "21-02-2020",         
                                    "l2vpn_eir": "1000",         
                                    "l2vpn_SLS": "1234"
                                  }
                                ],
                                "sotnUni":[
                                  {
                                    "sotnuni_cVLAN": "Huawei",						
                                    "sotnuni_tpId": "Huawei-112233"
                                  },
                                  {
                                    "sotnuni_cVLAN": "Huawei-1",						
                                    "sotnuni_tpId": "Huawei1-554433"
                                  }
                                ]					  						                 
                              }
                            ]
                          }
                        }
                      }
                    
                    };
                return Observable.of(new HttpResponse({ status: 200, body: body }));

            }
            // get monotor service data
            if (request.url.endsWith('/uui-lcm/Sotnservices/resourceTopology/service/service-subscriptions/service-subscription/sotn/service-instances/service-instance/ISAAC-IS02') || request.url.endsWith('/uui-lcm/Sotnservices/resourceTopology/service/service-subscriptions/service-subscription/sotn/service-instances/service-instance/ISAAC-IS03') && request.method === 'GET') {
                let body = {
                    "nodes": [
                      {
                        "id": "1",
                        "shape": "circularImage",
                        "image": "./assets/images/tpoint.png",
                        "label": "Termination Point",
                        "color": "Green",
                        "dataNode": {}
                      },
                      {
                        "id": "2",
                        "shape": "circularImage",
                        "image": "./assets/images/edge.png",
                        "label": "Node",
                        "color": "Green",
                        "dataNode": {
                          "ethtSvcName": "sotn-021-VS-monitored",
                          "colorAware": "true",
                          "cbs": "100",
                          "couplingFlag": "true",
                          "ebs": "evpl",
                          "cir": "200000",
                          "eir": "0"
                        }
                      },
                      {
                        "id": "3",
                        "shape": "circularImage",
                        "image": "./assets/images/logicallink.png",
                        "label": "Logical Link",
                        "color": "Green",
                        "dataNode": {
                          "ethtSvcName": "sotn-021-VS-monitored",
                          "colorAware": "true",
                          "cbs": "100",
                          "couplingFlag": "true",
                          "ebs": "evpl",
                          "cir": "200000",
                          "eir": "0"
                        }
                      },
                      {
                        "id": "4",
                        "shape": "circularImage",
                        "image": "./assets/images/edge.png",
                        "label": "Node",
                        "color": "Green",
                        "dataNode": {
                          "zipcode": "100095",
                          "siteName": "hubtravel",
                          "description": "desc",
                          "location": "laptop-5",
                          "cvlan": "100"
                        }
                      },
                      {
                        "id": "5",
                        "shape": "circularImage",
                        "image": "./assets/images/tpoint.png",
                        "label": "Termination Point",
                        "color": "Green",
                        "dataNode": {
                          "accessltpid": "155",
                          "siteName": "hubtravel",
                          "description": "desc",
                          "accessnodeid": "10.10.10.10",
                          "cvlan": "100"
                        }
                      }
                    ],
                    "edges": [
                      {
                        "from": "1",
                        "to": "2"
                      },
                      {
                        "from": "2",
                        "to": "3"
                      },
                      {
                        "from": "3",
                        "to": "4"
                      },
                      {
                        "from": "4",
                        "to": "5"
                      }
                    ]
                  };

                return Observable.of(new HttpResponse({ status: 200, body: body }));

            }
         
            if (request.url.endsWith('/uui-lcm/customers/service-subscriptions') && request.method === 'GET') {
                let body = {
                    "subscriptions": [
                      {
                        "serviceType": "SOTN"
                      }]
                   };

                return Observable.of(new HttpResponse({ status: 200, body: body }));

            }
            if (request.url.endsWith('/uui-lcm/Sotnservices/ServiceInstances/SOTN') && request.method === 'GET') {
                let body = {
                    "serviceInstanceList": [
                        {
                            "serviceInstance": "ISAAC-IS02",
                            "serviceInstancename":"SiteService-5011"
                        },
                        {
                            "serviceInstance": "ISAAC-IS03",
                            "serviceInstancename":"ISAAC-IS0333"
                        }
                    ]
                };

                return Observable.of(new HttpResponse({ status: 200, body: body }));

            }
            // pass through any requests not handled above
            return next.handle(request);

        })

            // call materialize and dematerialize to ensure delay even if an error is thrown (https://github.com/Reactive-Extensions/RxJS/issues/648)
            .materialize()
            .delay(500)
            .dematerialize();
    }
}

export let fakeBackendProvider = {
    // use fake backend in place of Http service for backend-less development
    provide: HTTP_INTERCEPTORS,
    useClass: FakeBackendInterceptor,
    multi: true
};