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

« back to all changes in this revision

Viewing changes to ivle/conf/conf.py

Replaced Python config files (conf.py) with new config files system, using
    configobj (INI-file style config files).

setup.py config now produces ./etc/ivle.conf, a new-style config file.
ivle/conf/conf.py is now part of the IVLE source code. It reads the new config
file and provides the same legacy interface, so all of IVLE still functions,
including setup.py config.

Added /etc to the source tree (config files will be stored here).
Added configobj as a dependency in doc/setup/install_proc.txt.

setup.py install copies ./etc/ivle.conf into /etc/ivle/ivle.conf.

Removed boilerplate code generation from setup/configure.py (that code is now
part of ivle/conf/conf.py which is now in the source tree).

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
import configobj
31
31
 
32
 
import ivle.config
33
 
 
34
 
try:
35
 
    conf = ivle.config.Config(plugins=False)
36
 
except ivle.config.ConfigError, e:
37
 
    raise ImportError(str(e))
38
 
 
39
 
# This dict maps legacy config option names to new config option paths
40
 
# ('section/option_name')
41
 
CONFIG_OPTIONS = {
42
 
    'root_dir': 'urls/root',
43
 
    'prefix': 'paths/prefix',
44
 
    'data_path': 'paths/data',
45
 
    'log_path': 'paths/logs',
46
 
    'python_site_packages_override': 'paths/site_packages',
47
 
    'public_host': 'urls/public_host',
48
 
    'db_host': 'database/host',
49
 
    'db_port': 'database/port',
50
 
    'db_dbname': 'database/name',
51
 
    'db_user': 'database/username',
52
 
    'db_password': 'database/password',
53
 
    'auth_modules': 'auth/modules',
54
 
    'ldap_url': 'auth/ldap_url',
55
 
    'ldap_format_string': 'auth/ldap_format_string',
56
 
    'subject_pulldown_modules': 'auth/subject_pulldown_modules',
57
 
    'svn_addr': 'urls/svn_addr',
58
 
    'usrmgt_host': 'usrmgt/host',
59
 
    'usrmgt_port': 'usrmgt/port',
60
 
    'usrmgt_magic': 'usrmgt/magic',
61
 
}
62
 
 
63
 
for legacyopt, newopt_path in CONFIG_OPTIONS.iteritems():
64
 
    # Iterate over each segment of the path, and find the value in conf file
65
 
    try:
66
 
        value = conf
67
 
        for seg in newopt_path.split('/'):
68
 
            value = value[seg]
69
 
        globals()[legacyopt] = value
70
 
    except KeyError:
71
 
        globals()[legacyopt] = None
72
 
 
73
 
# XXX Munge some nice shiny new-style values into horrible old-style values
74
 
# IRONY: These have just been split from commas. We need to re-join it so that
75
 
# pulldown_subj and auth_modules can re-split them.
76
 
subject_pulldown_modules = ','.join(subject_pulldown_modules)
77
 
auth_modules = ','.join(auth_modules)
 
32
def search_conffile():
 
33
    """
 
34
    Search for the config file, and return it as a filename.
 
35
    1. Environment var IVLECONF (full filename).
 
36
    2. ./etc/ivle.conf
 
37
    3. /etc/ivle/ivle.conf
 
38
    """
 
39
    if 'IVLECONF' in os.environ:
 
40
        fname = os.environ['IVLECONF']
 
41
        if os.path.exists(fname):
 
42
            return fname
 
43
    if os.path.exists('./etc/ivle.conf'):
 
44
        return './etc/ivle.conf'
 
45
    if os.path.exists('/etc/ivle/ivle.conf'):
 
46
        return '/etc/ivle/ivle.conf'
 
47
    raise RuntimeError("Could not find IVLE config file")
 
48
 
 
49
conffile = search_conffile()
 
50
conf = configobj.ConfigObj(conffile)
 
51
 
 
52
CONFIG_OPTIONS = ('root_dir', 'prefix', 'data_path', 'log_path',
 
53
    'public_host', 'allowed_uids', 'db_host', 'db_port', 'db_dbname',
 
54
    'db_forumdbname', 'db_user', 'db_password', 'auth_modules', 'ldap_url',
 
55
    'ldap_format_string', 'subject_pulldown_modules', 'svn_addr',
 
56
    'usrmgt_host', 'usrmgt_port', 'usrmgt_magic', 'forum_secret'
 
57
    )
 
58
 
 
59
for opt in CONFIG_OPTIONS:
 
60
    globals()[opt] = conf[opt]
 
61
 
 
62
# XXX Convert db_port and usrmgt_port to int.
 
63
# Because.
 
64
db_port = int(db_port)
 
65
usrmgt_port = int(usrmgt_port)
78
66
 
79
67
# Additional auto-generated config options
80
68
 
90
78
 
91
79
# 'site-packages' directory in Python, where Python libraries are to be
92
80
# installed.
93
 
if python_site_packages_override is None:
94
 
    PYTHON_VERSION = sys.version[0:3]   # eg. "2.5"
95
 
    python_site_packages = os.path.join(prefix,
96
 
                               'lib/python%s/site-packages' % PYTHON_VERSION)
97
 
else:
98
 
    python_site_packages = python_site_packages_override
 
81
PYTHON_VERSION = sys.version[0:3]   # eg. "2.5"
 
82
python_site_packages = os.path.join(prefix,
 
83
                           'lib/python%s/site-packages' % PYTHON_VERSION)
99
84
 
100
85
# In the local file system, where the student/user jails will be mounted.
101
86
# Only a single copy of the jail's system components will be stored here -