1
# IVLE - Informatics Virtual Learning Environment
2
# Copyright (C) 2007-2009 The University of Melbourne
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; either version 2 of the License, or
7
# (at your option) any later version.
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
# GNU General Public License for more details.
14
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
# Author: Matt Giuca, Will Grant
21
Provides programmatic access to the IVLE configuration file.
26
from configobj import ConfigObj
27
from validate import Validator
29
__all__ = ["ConfigError", "Config"]
31
class ConfigError(Exception):
33
An error reading or writing the configuration file.
37
def search_conffile():
39
Search for the config file, and return it as a filename.
40
1. Environment var IVLECONF (full filename).
42
3. /etc/ivle/ivle.conf
43
Raises a ConfigError on error.
45
if 'IVLECONF' in os.environ:
46
fname = os.environ['IVLECONF']
47
if os.path.exists(fname):
49
if os.path.exists('./etc/ivle.conf'):
50
return './etc/ivle.conf'
51
if os.path.exists('/etc/ivle/ivle.conf'):
52
return '/etc/ivle/ivle.conf'
53
raise ConfigError("Could not find IVLE config file")
56
class Config(ConfigObj):
58
The configuration object. Can be instantiated with no arguments (will
59
implicitly find the ivle.conf file and load it).
61
Automatically validates the file against the spec (found in
62
./ivle-spec.conf relative to this module).
64
def __init__(self, blank=False, *args, **kwargs):
65
"""Initialises a new Config object. Searches for the config file,
66
loads it, and validates it.
67
@param blank: If blank=True, will create a blank config instead, and
68
not search for the config file.
69
@raise ConfigError: If the config file cannot be found.
71
specfile = os.path.join(os.path.dirname(__file__), 'ivle-spec.conf')
73
super(Config, self).__init__(configspec=specfile, *args, **kwargs)
75
conffile = search_conffile()
76
super(Config, self).__init__(infile=conffile, configspec=specfile,
78
# XXX This doesn't raise errors if it doesn't validate
79
self.validate(Validator())
81
def set_by_path(self, path, value=_NO_VALUE, comment=None):
82
"""Writes a value to an option, given a '/'-separated path.
83
@param path: '/'-separated path to configuration option.
84
@param value: Optional - value to write to the option.
85
@param comment: Optional - comment string (lines separated by '\n's).
86
Note: If only a comment is being inserted, and the value does not
87
exist, fails silently.
89
path = path.split('/')
90
# Iterate over each segment of the path, and find the section in conf
91
# file to insert the value into (use all but the last path segment)
94
# Create the section if it isn't there
95
if seg not in conf_section:
96
conf_section[seg] = {}
97
conf_section = conf_section[seg]
98
# The final path segment names the key to insert into
100
if value is not _NO_VALUE:
101
conf_section[keyname] = value
102
if comment is not None:
104
conf_section[keyname]
108
conf_section.comments[keyname] = comment.split('\n')
110
def get_by_path(self, path):
111
"""Gets an option's value, given a '/'-separated path.
112
@param path: '/'-separated path to configuration option.
113
@raise KeyError: if no config option is at that path.
115
# Iterate over each segment of the path, and find the value in conf file
117
for seg in path.split('/'):
118
value = value[seg] # May raise KeyError