You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.6 KiB
78 lines
2.6 KiB
# 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 getpass |
|
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() |
|
|
|
try: |
|
with open(self.path, 'r') as f: |
|
self.config.readfp(f, filename=f.name) |
|
except IOError: |
|
self.print_sample() |
|
exit(1) |
|
|
|
if server is None: |
|
server = self.config.sections()[0] |
|
self.server = server |
|
url = self.config.get(server, 'url') |
|
if not url.endswith('/'): |
|
url += '/' |
|
self.url = url |
|
self.username = self.config.get(server, 'username') |
|
if not self.config.has_option(server, 'password'): |
|
self.password = getpass.getpass("Password for %s (%s): " |
|
% (self.url, self.username)) |
|
else: |
|
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') |
|
|
|
def print_sample(self): |
|
print """Please create a configuration file ~/.gerttyrc |
|
|
|
Example: |
|
|
|
-----8<-------8<-----8<-----8<--- |
|
[gerrit] |
|
url=https://review.example.org/ |
|
username=<gerrit username> |
|
password=<gerrit password> |
|
git_root=~/git/ |
|
-----8<-------8<-----8<-----8<--- |
|
|
|
Then invoke: |
|
gertty gerrit |
|
"""
|
|
|