~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/config/__init__.py

ivle.webapp.base.ivle-headings.html: Apply class="userhello" to the
    'Not logged in' message as well as the logged in and public mode ones.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# IVLE - Informatics Virtual Learning Environment
2
 
# Copyright (C) 2007-2009 The University of Melbourne
3
 
#
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.
8
 
#
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.
13
 
#
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
17
 
 
18
 
# Author: Matt Giuca, Will Grant
19
 
 
20
 
"""
21
 
Provides programmatic access to the IVLE configuration file.
22
 
"""
23
 
 
24
 
import os
25
 
 
26
 
from configobj import ConfigObj
27
 
from validate import Validator
28
 
 
29
 
__all__ = ["ConfigError", "Config"]
30
 
 
31
 
class ConfigError(Exception):
32
 
    """
33
 
    An error reading or writing the configuration file.
34
 
    """
35
 
    pass
36
 
 
37
 
def search_conffile():
38
 
    """
39
 
    Search for the config file, and return it as a filename.
40
 
    1. Environment var IVLECONF (full filename).
41
 
    2. ./etc/ivle.conf
42
 
    3. /etc/ivle/ivle.conf
43
 
    Raises a ConfigError on error.
44
 
    """
45
 
    if 'IVLECONF' in os.environ:
46
 
        fname = os.environ['IVLECONF']
47
 
        if os.path.exists(fname):
48
 
            return 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")
54
 
 
55
 
_NO_VALUE = []
56
 
class Config(ConfigObj):
57
 
    """
58
 
    The configuration object. Can be instantiated with no arguments (will
59
 
    implicitly find the ivle.conf file and load it).
60
 
 
61
 
    Automatically validates the file against the spec (found in
62
 
    ./ivle-spec.conf relative to this module).
63
 
    """
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.
70
 
        """
71
 
        specfile = os.path.join(os.path.dirname(__file__), 'ivle-spec.conf')
72
 
        if blank:
73
 
            super(Config, self).__init__(configspec=specfile, *args, **kwargs)
74
 
        else:
75
 
            conffile = search_conffile()
76
 
            super(Config, self).__init__(infile=conffile, configspec=specfile,
77
 
                                         *args, **kwargs)
78
 
            # XXX This doesn't raise errors if it doesn't validate
79
 
            self.validate(Validator())
80
 
 
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.
88
 
        """
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)
92
 
        conf_section = self
93
 
        for seg in path[:-1]:
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
99
 
        keyname = path[-1]
100
 
        if value is not _NO_VALUE:
101
 
            conf_section[keyname] = value
102
 
        if comment is not None:
103
 
            try:
104
 
                conf_section[keyname]
105
 
            except KeyError:
106
 
                pass        # Fail silently
107
 
            else:
108
 
                conf_section.comments[keyname] = comment.split('\n')
109
 
 
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.
114
 
        """
115
 
        # Iterate over each segment of the path, and find the value in conf file
116
 
        value = self
117
 
        for seg in path.split('/'):
118
 
            value = value[seg]      # May raise KeyError
119
 
        return value