aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt-odlux/odlux/apps/configurationApp/src/services/restServices.ts
blob: 0fcd945673092f1a59c7368f469fdc75b5b2dca2 (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
/**
 * ============LICENSE_START========================================================================
 * ONAP : ccsdk feature sdnr wt odlux
 * =================================================================================================
 * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. 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.
 * ============LICENSE_END==========================================================================
 */

import { requestRest, requestRestExt } from '../../../../framework/src/services/restService';
import { convertPropertyNames, replaceHyphen } from '../../../../framework/src/utilities/yangHelper';

import { NetworkElementConnection } from '../models/networkElementConnection';

type ImportOnlyResponse = {
  'ietf-yang-library:yang-library': {
    'module-set': {
      'import-only-module': {
        'name': string;
        'revision': string;
      }[];
    }[];
  };
};


type CapabilityResponse = {
  'network-topology:node': {
    'node-id': string;
    'netconf-node-topology:available-capabilities': {
      'available-capability': {
        'capability-origin': string;
        'capability': string;
      }[];
    };
    'netconf-node-topology:unavailable-capabilities': {
      'unavailable-capability': {
        'capability': string;
        'failure-reason': string;
      }[];
    };
  }[];
};

type CapabilityAnswer = {
  availableCapabilities: {
    capabilityOrigin: string;
    capability: string;
    version: string;
  }[] | null;
  unavailableCapabilities: {
    failureReason: string;
    capability: string;
    version: string;
  }[] | null;
  importOnlyModules: {
    name: string;
    revision: string;
  }[] | null;
};

const capParser = /^\(.*\?revision=(\d{4}-\d{2}-\d{2})\)(\S+)$/i;

class RestService {
  public getNetworkElementUri = (nodeId: string) => '/rests/data/network-topology:network-topology/topology=topology-netconf/node=' + nodeId;

  public async getImportOnlyModules(nodeId: string): Promise<{ name: string; revision: string }[]> {
    const path = `${this.getNetworkElementUri(nodeId)}/yang-ext:mount/ietf-yang-library:yang-library?content=nonconfig&fields=module-set(import-only-module(name;revision))`;
    const importOnlyResult = await requestRest<ImportOnlyResponse>(path, { method: 'GET' });
    const importOnlyModules = importOnlyResult
      ? importOnlyResult['ietf-yang-library:yang-library']['module-set'][0]['import-only-module']
      : [];
    return importOnlyModules;
  }

  public async getCapabilitiesByMountId(nodeId: string): Promise<CapabilityAnswer> {
    const path = this.getNetworkElementUri(nodeId);
    const capabilitiesResult = await requestRest<CapabilityResponse>(path, { method: 'GET' });
    const availableCapabilities = capabilitiesResult && capabilitiesResult['network-topology:node'] && capabilitiesResult['network-topology:node'].length > 0 &&
      (capabilitiesResult['network-topology:node'][0]['netconf-node-topology:available-capabilities'] &&
        capabilitiesResult['network-topology:node'][0]['netconf-node-topology:available-capabilities']['available-capability'] &&
        capabilitiesResult['network-topology:node'][0]['netconf-node-topology:available-capabilities']['available-capability'].map<any>(obj => convertPropertyNames(obj, replaceHyphen)) || [])
        .map(cap => {
          const capMatch = cap && capParser.exec(cap.capability);
          return capMatch ? {
            capabilityOrigin: cap.capabilityOrigin,
            capability: capMatch && capMatch[2] || '',
            version: capMatch && capMatch[1] || '',
          } : null ;
        }).filter((cap) => cap != null) || [] as any;

    const unavailableCapabilities = capabilitiesResult && capabilitiesResult['network-topology:node'] && capabilitiesResult['network-topology:node'].length > 0 &&
      (capabilitiesResult['network-topology:node'][0]['netconf-node-topology:unavailable-capabilities'] &&
      capabilitiesResult['network-topology:node'][0]['netconf-node-topology:unavailable-capabilities']['unavailable-capability'] &&
      capabilitiesResult['network-topology:node'][0]['netconf-node-topology:unavailable-capabilities']['unavailable-capability'].map<any>(obj => convertPropertyNames(obj, replaceHyphen)) || [])
        .map(cap => {
          const capMatch = cap && capParser.exec(cap.capability);
          return capMatch ? {
            failureReason: cap.failureReason,
            capability: capMatch && capMatch[2] || '',
            version: capMatch && capMatch[1] || '',
          } : null ;
        }).filter((cap) => cap != null) || [] as any;

    const importOnlyModules = availableCapabilities && availableCapabilities.findIndex((ac: { capability: string }) => ac.capability && ac.capability.toLowerCase() === 'ietf-yang-library') > -1
      ? await this.getImportOnlyModules(nodeId)
      : null;

    return { availableCapabilities, unavailableCapabilities, importOnlyModules };
  }

  public async getMountedNetworkElementByMountId(nodeId: string): Promise<NetworkElementConnection | null> {
    // const path = 'restconf/operational/network-topology:network-topology/topology/topology-netconf/node/' + nodeId;
    // const connectedNetworkElement = await requestRest<NetworkElementConnection>(path, { method: "GET" });
    // return connectedNetworkElement || null;

    const path = '/rests/operations/data-provider:read-network-element-connection-list';
    const body = { 'data-provider:input': { 'filter': [{ 'property': 'node-id', 'filtervalue': nodeId }], 'sortorder': [], 'pagination': { 'size': 1, 'page': 1 } } };
    const networkElementResult = await requestRest<{ 'data-provider:output': { data: NetworkElementConnection[] } }>(path, { method: 'POST', body: JSON.stringify(body) });
    return networkElementResult && networkElementResult['data-provider:output'] && networkElementResult['data-provider:output'].data &&
      networkElementResult['data-provider:output'].data.map(obj => convertPropertyNames(obj, replaceHyphen))[0] || null;
  }

  /** Reads the config data by restconf path.
  * @param path The restconf path to be used for read.
  * @returns The data.
  */
  public getConfigData(path: string) {
    return requestRestExt<{ [key: string]: any }>(path, { method: 'GET' });
  }

  /** Updates or creates the config data by restconf path using data.
   * @param path The restconf path to identify the note to update.
   * @param data The data to be updated.
   * @returns The written data.
   */
  public setConfigData(path: string, data: any, method: 'PUT' | 'POST' = 'PUT') {
    return requestRestExt<{ [key: string]: any }>(path, { method, body: JSON.stringify(data) });
  }

  public executeRpc(path: string, data: any) {
    return requestRestExt<{ [key: string]: any }>(path, { method: 'POST', body: JSON.stringify(data) });
  }

  /** Removes the element by restconf path.
  * @param path The restconf path to identify the note to update.
  * @returns The restconf result.
  */
  public removeConfigElement(path: string) {
    return requestRestExt<{ [key: string]: any }>(path, { method: 'DELETE' });
  }
}

export const restService = new RestService();
export default restService;