Added seed code for access-management.
[ta/access-management.git] / src / access_management / config / amconfigparser.py
1 #!/usr/bin/env python
2
3 # Copyright 2019 Nokia
4
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 """
18 amconfigparser module
19 Config parser for AM use
20 """
21 import ConfigParser
22 import logging
23
24 logger = logging.getLogger(__name__)
25
26 class AMConfigParser(object):
27     """
28     Config parser for AM
29     """
30     cfg_file = '/etc/access_management/am_config.ini'
31
32
33     def __init__(self, config_file=""):
34         """
35         Creates an instance of the config parser
36         """
37         if config_file:
38             self.config_path = config_file
39         else:
40             self.config_path = self.cfg_file
41
42     def parse(self):
43         """
44         Parses the config
45         :return: returns dictionary with config
46         :rtype: dict[dict[str]]
47         """
48         config = ConfigParser.ConfigParser()
49         config.read(self.config_path)
50         config_dict = {s: dict(config.items(s)) for s in config.sections()}
51         return config_dict