mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 14:42:20 +03:00
40 lines
1.5 KiB
Python
40 lines
1.5 KiB
Python
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
# Author: İsmail BAŞARAN <ismail.basaran@tubitak.gov.tr> <basaran.ismaill@gmail.com>
|
|
|
|
import os,configparser
|
|
from os import listdir
|
|
from os.path import isfile, join
|
|
from configparser import SafeConfigParser
|
|
|
|
class ConfigManager(object):
|
|
"""
|
|
This class written for configuration file management of ahenk and ahenk plugins
|
|
Sample ahenk configuration file path /etc/ahenk/ahenk.conf and sample ahenk plugins configuration folder path /etc/ahenk/config.d/
|
|
Usage: Takes two argument, - both of them are optional - one of the is a configuration file path the other one
|
|
is configuration files folder path
|
|
"""
|
|
def __init__(self, configurationFilePath=None, configurationFolderPath=None):
|
|
self.configurationFilePath = configurationFilePath
|
|
self.configurationFolderPath = configurationFolderPath
|
|
|
|
|
|
def read(self):
|
|
configFiles = []
|
|
|
|
# Check if given ahenk configuration file exists
|
|
# If file exists add it to configFiles array.
|
|
# TODO must write config file validater !!
|
|
if self.configurationFilePath:
|
|
if os.path.exists(self.configurationFilePath):
|
|
configFiles.append(self.configurationFilePath)
|
|
|
|
if self.configurationFolderPath and os.path.exists(self.configurationFolderPath):
|
|
files = [f for f in listdir(self.configurationFolderPath) if isfile(join(self.configurationFolderPath, f))]
|
|
for f in files:
|
|
configFiles.append(join(self.configurationFolderPath, f))
|
|
|
|
parser = SafeConfigParser()
|
|
configValues = parser.read(configFiles)
|
|
|
|
return parser
|