update for change to etsicatalog
[modeling/etsicatalog.git] / catalog / pub / utils / values.py
1 # Copyright 2017 ZTE Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #         http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15
16 def ignore_case_get(args, key, def_val=""):
17     if not key:
18         return def_val
19     if key in args:
20         return args[key]
21     for old_key in args:
22         if old_key.upper() == key.upper():
23             return args[old_key]
24     return def_val
25
26
27 def remove_none_key(data, none_list=None):
28     none_list = none_list if none_list else [None, '', 'NULL', 'None', [], {}]
29     if isinstance(data, dict):
30         data = dict([(k, remove_none_key(v, none_list)) for k, v in list(data.items()) if v not in none_list])
31     if isinstance(data, list):
32         data = [remove_none_key(s, none_list) for s in data if s not in none_list]
33     return data