source: mailjam/mailjam/config.py@ 20:bf238ca0c37f

Last change on this file since 20:bf238ca0c37f was 20:bf238ca0c37f, checked in by Borja Lopez <borja@…>, 12 years ago

Fixed multiple bugs found while doing manual tests of both the server and
MTA client. All of those bugs are related to how configuration files are
loaded.

File size: 3.7 KB
Line 
1# -*- coding: utf-8 -*-
2
3"""
4The mailjam project - config.py
5
6This file is released under the BSD license, see LICENSE for
7more information.
8
9Francisco de Borja Lopez Rio - <borja@codigo23.net>
10Soluciones Informaticas Codigo23 S.L.U. - http://codigo23.net
11"""
12
13import os
14from ConfigParser import SafeConfigParser
15
16class DaemonConfig():
17 def __init__(self, configfile=None):
18 self.configfile = configfile
19 self.default_paths = ['/usr/local/etc/mailjam', '/usr/local/etc',
20 '/etc/mailjam', '/etc',
21 os.path.join(os.path.dirname(__file__),'../conf')]
22 self.config = {}
23
24 @property
25 def default_filename(self):
26 """
27 Method to get the default configuration filename. It is a method instead
28 of an attribute for easier subclassing
29 """
30 return 'mailjam.conf'
31
32 @property
33 def sections(self):
34 """
35 Method to get the list of available sections in the configuration file.
36 It is a method instead of an attribute for easier subclassing.
37
38 FIXME: Perhaps it would be better to dinamically get the list of
39 sections from the configuration file itself.
40 """
41 return ['xmlrpc_server', 'storage', 'archive',
42 'mailing_lists', 'members']
43
44 def validate_configfile(self):
45 if self.configfile:
46 # ensure we have the full path to the provided file
47 self.configfile = os.path.join(os.path.dirname(__file__),
48 self.configfile)
49 if not os.path.exists(self.configfile):
50 # the file does not exist, so we override it with None,
51 # allowing the next few lines to search for a valid
52 # config file on the usual places
53 self.configfile = None
54 else:
55 return self.configfile
56
57 if not self.configfile:
58 for path in self.default_paths:
59 full_path = os.path.join(path, self.default_filename)
60 if os.path.exists(full_path):
61 self.configfile = full_path
62 return full_path
63
64 # if we reach here, self.configfile will be still None, no valid
65 # config files were found, and so we raise an exception
66 raise IOError('ERROR - Can not find ' + self.default_filename + \
67 ' in your environment')
68
69 def load(self):
70 if not self.configfile:
71 self.validate_configfile()
72 parser = SafeConfigParser()
73 parser.read(self.configfile)
74 for section in self.sections:
75 self.config[section] = {}
76 for name, value in parser.items(section):
77 self.config[section][name] = value
78 return self.config
79
80 def get_section_parameters(self, section):
81 if section not in self.sections:
82 raise IndexError('ERROR - ' + section + \
83 ' is not one of the available sections: ' + \
84 ', '.join(self.sections))
85 if section not in self.config.keys():
86 # perhaps the config hasn't been loaded yet
87 self.load()
88
89 return self.config[section]
90
91class MTAClientConfig(DaemonConfig):
92 @property
93 def default_filename(self):
94 return 'mailjam-mta.conf'
95
96 @property
97 def sections(self):
98 return ['server', 'archive']
99
100
101def get_config_parameters(section=None, configfile=None):
102 """
103 This function is kept here for backwards compatibility.
104 By default all the daemon code will use this function to get
105 configuration parameters from the default configuration file.
106 """
107 config = DaemonConfig(configfile)
108 return config.get_section_parameters(section)
109
110
Note: See TracBrowser for help on using the repository browser.