
The read() method silently ignores errors which is not so useful if .gerttyrc doesn't exist, so instead of using that use the readfp which will open the file and then correctly read from the file (and raise if the file does not exist). Change-Id: I3bf68408595e06c6ffb60632b46995c1fadbea3f
48 lines
1.9 KiB
Python
48 lines
1.9 KiB
Python
# Copyright 2014 OpenStack Foundation
|
|
#
|
|
# 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.
|
|
|
|
import os
|
|
import ConfigParser
|
|
|
|
|
|
DEFAULT_CONFIG_PATH='~/.gerttyrc'
|
|
|
|
class Config(object):
|
|
def __init__(self, server=None, path=DEFAULT_CONFIG_PATH):
|
|
self.path = os.path.expanduser(path)
|
|
self.config = ConfigParser.RawConfigParser()
|
|
with open(self.path, 'r') as f:
|
|
self.config.readfp(f, filename=f.name)
|
|
if server is None:
|
|
server = self.config.sections()[0]
|
|
self.server = server
|
|
self.url = self.config.get(server, 'url')
|
|
self.username = self.config.get(server, 'username')
|
|
self.password = self.config.get(server, 'password')
|
|
if self.config.has_option(server, 'verify_ssl'):
|
|
self.verify_ssl = self.config.getboolean(server, 'verify_ssl')
|
|
else:
|
|
self.verify_ssl = True
|
|
if not self.verify_ssl:
|
|
os.environ['GIT_SSL_NO_VERIFY']='true'
|
|
self.git_root = os.path.expanduser(self.config.get(server, 'git_root'))
|
|
if self.config.has_option(server, 'dburi'):
|
|
self.dburi = self.config.get(server, 'dburi')
|
|
else:
|
|
self.dburi = 'sqlite:///' + os.path.expanduser('~/.gertty.db')
|
|
if self.config.has_option(server, 'log_file'):
|
|
self.log_file = os.path.expanduser(self.config.get(server, 'log_file'))
|
|
else:
|
|
self.log_file = os.path.expanduser('~/.gertty.log')
|