update link to upper-constraints.txt
[optf/osdf.git] / osdf / adapters / dcae / des.py
1 # -------------------------------------------------------------------------
2 #   Copyright (C) 2020 Wipro Limited.
3 #
4 #   Licensed under the Apache License, Version 2.0 (the "License");
5 #   you may not use this file except in compliance with the License.
6 #   You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #   Unless required by applicable law or agreed to in writing, software
11 #   distributed under the License is distributed on an "AS IS" BASIS,
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #   See the License for the specific language governing permissions and
14 #   limitations under the License.
15 #
16 # -------------------------------------------------------------------------
17 #
18
19 import requests
20
21 from osdf.config.base import osdf_config
22 from osdf.utils.interfaces import RestClient
23
24
25 class DESException(Exception):
26     pass
27
28
29 def extract_data(service_id, request_data):
30     """Extracts data from the data lake via DES.
31
32     param: service_id: kpi data identifier
33     param: request_data: data to send
34     param: osdf_config: osdf config to retrieve api info
35     """
36
37     config = osdf_config.deployment
38     user, password = config['desUsername'], config['desPassword']
39     headers = config["desHeaders"]
40     req_url = config["desUrl"] + config["desApiPath"] + service_id
41     rc = RestClient(userid=user, passwd=password, url=req_url, headers=headers, method="POST")
42
43     try:
44         response_json = rc.request(data=request_data)
45         return response_json.get("result")
46     except requests.RequestException as e:
47         raise DESException("Request exception was encountered {}".format(e))