e63ae730a3
* Added Apache Licence for each file. * Pep8 fixes Change-Id: Iba54681c048c612e4b7e5859edf4f3713934f290
37 lines
1.4 KiB
Python
37 lines
1.4 KiB
Python
# 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.
|
|
|
|
# tst
|
|
import os
|
|
import yaml
|
|
|
|
from nailgun.logger import logger
|
|
|
|
|
|
class GitExtensionSettings(object):
|
|
def __init__(self):
|
|
settings_files = []
|
|
project_path = os.path.dirname(__file__)
|
|
project_settings_file = os.path.join(project_path, 'settings.yaml')
|
|
settings_files.append(project_settings_file)
|
|
settings_files.append('/etc/git-exension-settings.yaml')
|
|
settings_files.append('/etc/nailgun/git-exension-settings.yaml')
|
|
self.config = {}
|
|
for sf in settings_files:
|
|
try:
|
|
logger.debug("Trying to read config file %s" % sf)
|
|
with open(sf) as custom_config:
|
|
self.config.update(yaml.load(custom_config.read()))
|
|
except Exception as e:
|
|
logger.error("Error while reading config file %s: %s" %
|
|
(sf, str(e)))
|