switch to rfc8040 restconf
[ccsdk/features.git] / sdnr / wt / odlux / apps / inventoryApp / src / services / inventoryService.ts
1 /**
2  * ============LICENSE_START========================================================================
3  * ONAP : ccsdk feature sdnr wt odlux
4  * =================================================================================================
5  * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
6  * =================================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software distributed under the License
13  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
14  * or implied. See the License for the specific language governing permissions and limitations under
15  * the License.
16  * ============LICENSE_END==========================================================================
17  */
18 import { requestRest } from '../../../../framework/src/services/restService';
19 import { convertPropertyNames, replaceHyphen } from '../../../../framework/src/utilities/yangHelper';
20
21 import { InventoryTreeNode, InventoryType } from '../models/inventory';
22 import { getTree, getElement } from '../fakeData';
23
24 /**
25  * Represents a web api accessor service for all maintenence entries related actions.
26  */
27 class InventoryService {
28   public async getInventoryTree(mountId: string, searchTerm: string = ""): Promise<InventoryTreeNode | null> {
29     //return await getTree(searchTerm);
30     const path = `/tree/read-inventoryequipment-tree/${mountId}`;
31     const body = {
32       "query": searchTerm
33     };
34     const inventoryTree = await requestRest<InventoryTreeNode>(path, { method: "POST" , body: JSON.stringify(body)});
35     return inventoryTree && convertPropertyNames(inventoryTree, replaceHyphen) || null;
36   }
37
38   public async getInventoryEntry(id: string): Promise<InventoryType | undefined> {
39     const path = `/restconf/operations/data-provider:read-inventory-list`;
40     const body = {
41       "input": {
42         "filter": [
43           { property: "id", filtervalue: id },
44         ],
45         "sortorder": [],
46         "pagination": {
47           "size": 1,
48           "page": 1
49         }
50       }
51     };
52     const inventoryTreeElement = await requestRest<{
53       output: {
54         "pagination": {
55           "size": number,
56           "page": number,
57           "total": number
58         },
59         "data": InventoryType[]
60       }
61     }>(path, { method: "POST", body: JSON.stringify(body) });
62
63     return inventoryTreeElement && inventoryTreeElement.output && inventoryTreeElement.output.pagination && inventoryTreeElement.output.pagination.total >= 1 &&
64       inventoryTreeElement.output.data && convertPropertyNames(inventoryTreeElement.output.data[0], replaceHyphen) || undefined;
65    // return await getElement(id);
66   }
67
68 }
69
70 export const inventoryService = new InventoryService();