summaryrefslogtreecommitdiffstats
path: root/conductor/conductor/data/plugins/inventory_provider/utils/aai_utils.py
blob: c88b4595eb574f852a89dbeb6395b6b67a894bfd (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
#
# -------------------------------------------------------------------------
#   Copyright (C) 2020 Wipro Limited.
#
#   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.
#
# -------------------------------------------------------------------------
#

QUERY_PARAMS = {'service_instance': ["service-instance-id", "service-instance-name", "environment-context",
                                     "workload-context", "model-invariant-id", "model-version-id", "widget-model-id",
                                     "widget-model-version", "service-instance-location-id", "orchestration-status"],
                'nst': ["model-role"]
                }


def convert_hyphen_to_under_score(hyphened_dict):
    converted_dict = dict()
    if hyphened_dict:
        for key in hyphened_dict:
            if '-' in key:
                converted_dict[key.replace('-', '_').lower()] = hyphened_dict[key]
            else:
                converted_dict[key] = hyphened_dict[key]
        if 'resource_version' in converted_dict:
            converted_dict.pop('resource_version')
    return converted_dict


def add_query_params(filtering_attributes):
    if not filtering_attributes:
        return ''
    url = '?'
    for key, value in filtering_attributes.items():
        url = f'{url}{key}={value}&'
    return url


def add_query_params_and_depth(filtering_attributes, depth):
    url_with_query_params = add_query_params(filtering_attributes)
    if url_with_query_params:
        return f"{url_with_query_params}depth={depth}"
    else:
        return f"?depth={depth}"


def get_first_level_and_second_level_filter(filtering_attributes, aai_node):
    second_level_filters = dict()
    valid_query_params = QUERY_PARAMS.get(aai_node)
    for key in list(filtering_attributes):
        if key not in valid_query_params:
            second_level_filters[key] = filtering_attributes[key]
            del filtering_attributes[key]
    return second_level_filters


def get_inv_values_for_second_level_filter(second_level_filters, nssi_instance):
    if not second_level_filters:
        return None
    inventory_attributes = dict()
    for key in list(second_level_filters):
        inventory_attributes[key] = nssi_instance.get(key)
    return inventory_attributes


def get_instance_info(nxi_instance):
    nxi_dict = dict()
    nxi_dict['instance_id'] = nxi_instance.get('service-instance-id')
    nxi_dict['instance_name'] = nxi_instance.get('service-instance-name')
    if nxi_instance.get('workload-context'):
        nxi_dict['domain'] = nxi_instance.get('workload-context')
    return nxi_dict


def get_nst_info(nst_instance):
    nst_dict = {}
    nst_dict['model_invariant_id'] = nst_instance.get('model-invariant-id')
    nst_dict['model_type'] = nst_instance.get('model-type')
    nst_dict['model_role'] = nst_instance.get('model-role')
    return nst_dict


def get_model_ver_info(model_version):
    for key in list(model_version):
        if "model-elements" in key:
            del model_version["model-elements"]
    return model_version


def get_profiles(profile_instances, profile_type):
    profile_type_plural = profile_type + 's'
    return [x[profile_type_plural][profile_type][0] for x in profile_instances if x.get(profile_type_plural)]