2010-01-10 20:14:17 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding:utf-8 -*-
|
|
|
|
#
|
|
|
|
# Copyright 2009 chickenzilla
|
|
|
|
# Copyright 2010 Le Coz Florent <louizatakk@fedoraproject.org>
|
|
|
|
#
|
|
|
|
# This file is part of Poezio.
|
|
|
|
#
|
|
|
|
# Poezio is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, version 3 of the License.
|
|
|
|
#
|
|
|
|
# Poezio is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Poezio. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2010-05-18 13:29:02 +00:00
|
|
|
"""
|
|
|
|
Defines the global config instance, used to get or set (and save) values
|
|
|
|
from/to the config file
|
|
|
|
"""
|
|
|
|
|
2010-01-26 19:33:40 +00:00
|
|
|
from ConfigParser import RawConfigParser, NoOptionError
|
2010-07-08 20:15:02 +00:00
|
|
|
from os import environ, makedirs, path
|
2010-01-31 05:33:54 +00:00
|
|
|
from shutil import copy2
|
2010-07-08 01:30:51 +00:00
|
|
|
import argparse
|
2010-01-10 20:14:17 +00:00
|
|
|
|
|
|
|
class Config(RawConfigParser):
|
|
|
|
"""
|
|
|
|
load/save the config to a file
|
|
|
|
"""
|
|
|
|
def __init__(self, file_name):
|
|
|
|
self.defsection = "Poezio"
|
|
|
|
self.file_name = file_name
|
|
|
|
RawConfigParser.__init__(self, None)
|
|
|
|
RawConfigParser.read(self, file_name)
|
|
|
|
|
2010-01-26 19:33:40 +00:00
|
|
|
def get(self, option, default):
|
|
|
|
"""
|
|
|
|
get a value from the config but return
|
|
|
|
a default value if it is not found
|
|
|
|
The type of default defines the type
|
|
|
|
returned
|
|
|
|
"""
|
2010-05-18 13:29:02 +00:00
|
|
|
try:
|
2010-01-26 19:33:40 +00:00
|
|
|
if type(default) == int:
|
|
|
|
res = self.getint(option)
|
|
|
|
elif type(default) == float:
|
|
|
|
res = self.getfloat(option)
|
|
|
|
elif type(default) == bool:
|
2010-02-10 16:47:43 +00:00
|
|
|
res = self.getboolean(option)
|
2010-01-26 19:33:40 +00:00
|
|
|
else:
|
|
|
|
res = self.getstr(option)
|
|
|
|
except NoOptionError:
|
|
|
|
return default
|
|
|
|
return res
|
|
|
|
|
2010-05-18 13:29:02 +00:00
|
|
|
def __get(self, option):
|
|
|
|
"""
|
|
|
|
facility for RawConfigParser.get
|
|
|
|
"""
|
2010-01-10 20:14:17 +00:00
|
|
|
return RawConfigParser.get(self, self.defsection, option)
|
|
|
|
|
2010-01-26 19:33:40 +00:00
|
|
|
def getstr(self, option):
|
2010-05-18 13:29:02 +00:00
|
|
|
"""
|
|
|
|
get a value and returns it as a string
|
|
|
|
"""
|
|
|
|
return self.__get(option)
|
2010-01-26 17:10:37 +00:00
|
|
|
|
2010-01-10 20:14:17 +00:00
|
|
|
def getint(self, option):
|
2010-05-18 13:29:02 +00:00
|
|
|
"""
|
|
|
|
get a value and returns it as an int
|
|
|
|
"""
|
2010-05-11 16:45:14 +00:00
|
|
|
try:
|
2010-05-18 13:29:02 +00:00
|
|
|
return int(self.__get(option))
|
2010-05-11 16:45:14 +00:00
|
|
|
except ValueError:
|
|
|
|
return -1
|
2010-01-10 20:14:17 +00:00
|
|
|
|
|
|
|
def getfloat(self, option):
|
2010-05-18 13:29:02 +00:00
|
|
|
"""
|
|
|
|
get a value and returns it as a float
|
|
|
|
"""
|
|
|
|
return float(self.__get(option))
|
2010-01-10 20:14:17 +00:00
|
|
|
|
|
|
|
def getboolean(self, option):
|
2010-05-18 13:29:02 +00:00
|
|
|
"""
|
|
|
|
get a value and returns it as a boolean
|
|
|
|
"""
|
2010-01-10 20:14:17 +00:00
|
|
|
return RawConfigParser.getboolean(self, self.defsection, option)
|
|
|
|
|
|
|
|
def save(self):
|
2010-05-18 13:29:02 +00:00
|
|
|
"""
|
|
|
|
save the configuration in the file
|
|
|
|
"""
|
|
|
|
fdes = open(self.file_name, "w")
|
|
|
|
RawConfigParser.write(self, fdes)
|
|
|
|
fdes.close()
|
2010-01-10 20:14:17 +00:00
|
|
|
|
2010-02-10 16:47:43 +00:00
|
|
|
def set_and_save(self, option, value):
|
2010-05-18 13:29:02 +00:00
|
|
|
"""
|
|
|
|
set the value in the configuration then save it
|
|
|
|
to the file
|
|
|
|
"""
|
|
|
|
RawConfigParser.set(self, self.defsection, option, value)
|
2010-01-10 20:14:17 +00:00
|
|
|
self.save()
|
|
|
|
|
2010-07-08 01:30:51 +00:00
|
|
|
import argparse
|
|
|
|
|
2010-05-18 13:29:02 +00:00
|
|
|
# creates the configuration directory if it doesn't exist
|
|
|
|
# and copy the default config in it
|
2010-01-31 05:33:54 +00:00
|
|
|
CONFIG_HOME = environ.get("XDG_CONFIG_HOME")
|
|
|
|
if not CONFIG_HOME:
|
2010-01-31 14:25:48 +00:00
|
|
|
CONFIG_HOME = environ.get('HOME')+'/.config'
|
|
|
|
CONFIG_PATH = CONFIG_HOME + '/poezio/'
|
2010-01-31 14:28:21 +00:00
|
|
|
try:
|
|
|
|
makedirs(CONFIG_PATH)
|
2010-05-18 13:29:02 +00:00
|
|
|
except OSError:
|
|
|
|
pass
|
2010-01-31 05:33:54 +00:00
|
|
|
|
2010-07-08 20:15:02 +00:00
|
|
|
if not path.isfile(CONFIG_PATH+'poezio.cfg'):
|
|
|
|
copy2('../data/default_config.cfg', CONFIG_PATH+'poezio.cfg')
|
|
|
|
|
2010-07-08 01:30:51 +00:00
|
|
|
parser = argparse.ArgumentParser(prog="poezio", description='An XMPP ncurses client.')
|
|
|
|
parser.add_argument('-f', '--file', default=CONFIG_PATH+'poezio.cfg', help='the config file you want to use', metavar="FILE")
|
|
|
|
args = parser.parse_args()
|
2010-07-08 20:15:02 +00:00
|
|
|
|
2010-07-08 01:30:51 +00:00
|
|
|
config = Config(args.file)
|