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

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: mattgiuca
  • Date: 2008-02-25 01:17:22 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:560
settings: Python code generates all of the HTML for the static page.
The JavaScript makes a call to get the data but doesn't yet populate the page.

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
    '/bin/echo',
101
101
    # Needed by python
102
102
    '/usr/bin/python%s' % PYTHON_VERSION,
 
103
    # Needed by fileservice
 
104
    '/lib/libcom_err.so.2',
 
105
    '/lib/libcrypt.so.1',
 
106
    '/lib/libkeyutils.so.1',
 
107
    '/lib/libresolv.so.2',
 
108
    '/lib/librt.so.1',
 
109
    '/lib/libuuid.so.1',
 
110
    '/usr/lib/libapr-1.so.0',
 
111
    '/usr/lib/libaprutil-1.so.0',
 
112
    '/usr/lib/libdb-4.4.so',
 
113
    '/usr/lib/libexpat.so.1',
 
114
    '/usr/lib/libgcrypt.so.11',
 
115
    '/usr/lib/libgnutls.so.13',
 
116
    '/usr/lib/libgpg-error.so.0',
 
117
    '/usr/lib/libgssapi_krb5.so.2',
 
118
    '/usr/lib/libk5crypto.so.3',
 
119
    '/usr/lib/libkrb5.so.3',
 
120
    '/usr/lib/libkrb5support.so.0',
 
121
    '/usr/lib/liblber.so.2',
 
122
    '/usr/lib/libldap_r.so.2',
 
123
    '/usr/lib/libneon.so.26',
 
124
    '/usr/lib/libpq.so.5',
 
125
    '/usr/lib/libsasl2.so.2',
 
126
    '/usr/lib/libsqlite3.so.0',
 
127
    '/usr/lib/libsvn_client-1.so.1',
 
128
    '/usr/lib/libsvn_delta-1.so.1',
 
129
    '/usr/lib/libsvn_diff-1.so.1',
 
130
    '/usr/lib/libsvn_fs-1.so.1',
 
131
    '/usr/lib/libsvn_fs_base-1.so.1',
 
132
    '/usr/lib/libsvn_fs_fs-1.so.1',
 
133
    '/usr/lib/libsvn_ra-1.so.1',
 
134
    '/usr/lib/libsvn_ra_dav-1.so.1',
 
135
    '/usr/lib/libsvn_ra_local-1.so.1',
 
136
    '/usr/lib/libsvn_ra_svn-1.so.1',
 
137
    '/usr/lib/libsvn_repos-1.so.1',
 
138
    '/usr/lib/libsvn_subr-1.so.1',
 
139
    '/usr/lib/libsvn_wc-1.so.1',
 
140
    '/usr/lib/libtasn1.so.3',
 
141
    '/usr/lib/libxml2.so.2',
103
142
    # Needed by matplotlib
104
143
    '/usr/lib/i686/cmov/libssl.so.0.9.8',
105
144
    '/usr/lib/i686/cmov/libcrypto.so.0.9.8',
120
159
    '/usr/lib/libXdmcp.so.6',
121
160
    '/lib/libgcc_s.so.1',
122
161
    '/etc/matplotlibrc',
 
162
    # Needed for resolv
 
163
    '/lib/libnss_dns.so.2',
 
164
    #'/lib/libnss_mdns4.so',
 
165
    '/etc/hosts',
 
166
    '/etc/resolv.conf',
 
167
    #'/etc/hosts.conf',
 
168
    #'/etc/hostname',
 
169
    '/etc/nsswitch.conf',
 
170
    '/lib/libnss_files.so.2',
123
171
]
124
172
# Symlinks to make within the jail. Src mapped to dst.
125
173
JAIL_LINKS = {
152
200
 
153
201
# Configuration options, defaults and descriptions
154
202
config_options = []
155
 
config_options.append(ConfigOption("root_dir", "/ivle",
 
203
config_options.append(ConfigOption("root_dir", "/",
156
204
    """Root directory where IVLE is located (in URL space):""",
157
205
    """
158
206
# In URL space, where in the site is IVLE located. (All URLs will be prefixed
165
213
# In the local file system, where IVLE is actually installed.
166
214
# This directory should contain the "www" and "bin" directories."""))
167
215
config_options.append(ConfigOption("jail_base", "/home/informatics/jails",
168
 
    """Root directory where the jails (containing user files) are stored
 
216
    """Location of Directories
 
217
=======================
 
218
Root directory where the jails (containing user files) are stored
169
219
(on the local file system):""",
170
220
    """
171
221
# In the local file system, where are the student/user file spaces located.
179
229
# In the local file system, where are the per-subject file spaces located.
180
230
# The individual subject directories are expected to be located immediately
181
231
# in subdirectories of this location."""))
182
 
config_options.append(ConfigOption("problems_base",
183
 
    "/home/informatics/problems",
184
 
    """Root directory where the problem directories (containing
185
 
subject-independent problem sheets) are stored (on the local file
 
232
config_options.append(ConfigOption("exercises_base",
 
233
    "/home/informatics/exercises",
 
234
    """Root directory where the exercise directories (containing
 
235
subject-independent exercise sheets) are stored (on the local file
186
236
system):""",
187
237
    """
188
 
# In the local file system, where are the subject-independent problem sheet
 
238
# In the local file system, where are the subject-independent exercise sheet
189
239
# file spaces located."""))
190
240
config_options.append(ConfigOption("public_host", "public.localhost",
191
241
    """Hostname which will cause the server to go into "public mode",
231
281
    (Caution: This password is stored in plaintext in lib/conf/conf.py)""",
232
282
    """
233
283
# Database password"""))
 
284
config_options.append(ConfigOption("auth_modules", "ldap_auth",
 
285
    """Authentication config
 
286
=====================
 
287
Comma-separated list of authentication modules. Only "ldap" is available
 
288
by default.""",
 
289
    """
 
290
# Comma-separated list of authentication modules.
 
291
# These refer to importable Python modules in the www/auth directory.
 
292
# Modules "ldap" and "guest" are available in the source tree, but
 
293
# other modules may be plugged in to auth against organisation-specific
 
294
# auth backends."""))
 
295
config_options.append(ConfigOption("ldap_url", "ldaps://www.example.com",
 
296
    """(LDAP options are only relevant if "ldap" is included in the list of
 
297
auth modules).
 
298
URL for LDAP authentication server:""",
 
299
    """
 
300
# URL for LDAP authentication server"""))
 
301
config_options.append(ConfigOption("ldap_format_string",
 
302
    "uid=%s,ou=users,o=example",
 
303
    """Format string for LDAP auth request:
 
304
    (Must contain a single "%s" for the user's login name)""",
 
305
    """
 
306
# Format string for LDAP auth request
 
307
# (Must contain a single "%s" for the user's login name)"""))
 
308
config_options.append(ConfigOption("svn_addr", "http://svn.localhost/",
 
309
    """Subversion config
 
310
=================
 
311
The base url for accessing subversion repositories:""",
 
312
    """
 
313
# The base url for accessing subversion repositories."""))
 
314
config_options.append(ConfigOption("svn_conf", "/opt/ivle/svn/svn.conf",
 
315
    """The location of the subversion configuration file used by apache
 
316
to host the user repositories:""",
 
317
    """
 
318
# The location of the subversion configuration file used by
 
319
# apache to host the user repositories."""))
 
320
config_options.append(ConfigOption("svn_repo_path", "/home/informatics/repositories",
 
321
    """The root directory for the subversion repositories:""",
 
322
    """
 
323
# The root directory for the subversion repositories."""))
 
324
config_options.append(ConfigOption("svn_auth_ivle", "/opt/ivle/svn/ivle.auth",
 
325
    """The location of the password file used to authenticate users
 
326
of the subversion repository from the ivle server:""",
 
327
    """
 
328
# The location of the password file used to authenticate users
 
329
# of the subversion repository from the ivle server."""))
 
330
config_options.append(ConfigOption("svn_auth_local", "/opt/ivle/svn/local.auth",
 
331
    """The location of the password file used to authenticate local users
 
332
of the subversion repository:""",
 
333
    """
 
334
# The location of the password file used to authenticate local users
 
335
# of the subversion repository."""))
 
336
config_options.append(ConfigOption("usrmgt_host", "localhost",
 
337
    """User Management Server config
 
338
============================
 
339
The hostname where the usrmgt-server runs:""",
 
340
    """
 
341
# The hostname where the usrmgt-server runs."""))
 
342
config_options.append(ConfigOption("usrmgt_port", "2178",
 
343
    """The port where the usrmgt-server runs:""",
 
344
    """
 
345
# The port where the usrmgt-server runs."""))
 
346
config_options.append(ConfigOption("usrmgt_magic", "",
 
347
    """The password for the usrmgt-server:""",
 
348
    """
 
349
# The password for the usrmgt-server."""))
234
350
 
235
351
# Try importing existing conf, but if we can't just set up defaults
236
352
# The reason for this is that these settings are used by other phases
385
501
Copy subjects/ to subjects directory (unless --nosubjects specified).
386
502
 
387
503
--nojail        Do not copy the jail.
388
 
--nosubjects    Do not copy the subjects and problems directories.
 
504
--nosubjects    Do not copy the subjects and exercises directories.
389
505
--dry | -n  Print out the actions but don't do anything."""
390
506
    elif operation == 'updatejails':
391
507
        print """sudo python setup.py updatejails [--dry|-n]
403
519
    # We build two separate lists, by walking www and console
404
520
    list_www = build_list_py_files('www')
405
521
    list_lib = build_list_py_files('lib')
406
 
    list_console = build_list_py_files('console')
407
522
    list_subjects = build_list_py_files('subjects', no_top_level=True)
408
 
    list_problems = build_list_py_files('problems', no_top_level=True)
 
523
    list_exercises = build_list_py_files('exercises', no_top_level=True)
 
524
    list_scripts = [
 
525
        "scripts/python-console",
 
526
        "scripts/fileservice",
 
527
        "scripts/usrmgt-server",
 
528
    ]
409
529
    # Make sure that the files generated by conf are in the list
410
530
    # (since listmake is typically run before conf)
411
531
    if "lib/conf/conf.py" not in list_lib:
412
 
        list_www.append("lib/conf/conf.py")
413
 
    # Make sure that console/python-console is in the list
414
 
    if "console/python-console" not in list_console:
415
 
        list_console.append("console/python-console")
 
532
        list_lib.append("lib/conf/conf.py")
416
533
    # Write these out to a file
417
534
    cwd = os.getcwd()
418
535
    # the files that will be created/overwritten
436
553
list_lib = """)
437
554
        writelist_pretty(file, list_lib)
438
555
        file.write("""
439
 
# List of all installable files in console directory.
440
 
list_console = """)
441
 
        writelist_pretty(file, list_console)
 
556
# List of all installable files in scripts directory.
 
557
list_scripts = """)
 
558
        writelist_pretty(file, list_scripts)
442
559
        file.write("""
443
560
# List of all installable files in subjects directory.
444
561
# This is to install sample subjects and material.
445
562
list_subjects = """)
446
563
        writelist_pretty(file, list_subjects)
447
564
        file.write("""
448
 
# List of all installable files in problems directory.
 
565
# List of all installable files in exercises directory.
449
566
# This is to install sample exercise material.
450
 
list_problems = """)
451
 
        writelist_pretty(file, list_problems)
 
567
list_exercises = """)
 
568
        writelist_pretty(file, list_exercises)
452
569
 
453
570
        file.close()
454
571
    except IOError, (errno, strerror):
494
611
        file.write(']\n')
495
612
 
496
613
def conf(args):
497
 
    global db_port
 
614
    global db_port, usrmgt_port
498
615
    # Set up some variables
499
616
 
500
617
    cwd = os.getcwd()
501
618
    # the files that will be created/overwritten
502
619
    conffile = os.path.join(cwd, "lib/conf/conf.py")
 
620
    jailconffile = os.path.join(cwd, "lib/conf/jailconf.py")
503
621
    conf_hfile = os.path.join(cwd, "trampoline/conf.h")
504
622
 
505
623
    # Get command-line arguments to avoid asking questions.
519
637
        print """This tool will create the following files:
520
638
    %s
521
639
    %s
 
640
    %s
522
641
prompting you for details about your configuration. The file will be
523
642
overwritten if it already exists. It will *not* install or deploy IVLE.
524
643
 
525
644
Please hit Ctrl+C now if you do not wish to do this.
526
 
""" % (conffile, conf_hfile)
 
645
""" % (conffile, jailconffile, conf_hfile)
527
646
 
528
647
        # Get information from the administrator
529
648
        # If EOF is encountered at any time during the questioning, just exit
555
674
        "Invalid DB port (%s).\n"
556
675
        "Must be an integer between 0 and 65535." % repr(db_port))
557
676
        return 1
 
677
    try:
 
678
        usrmgt_port = int(usrmgt_port)
 
679
        if usrmgt_port < 0 or usrmgt_port >= 65536: raise ValueError()
 
680
    except ValueError:
 
681
        print >>sys.stderr, (
 
682
        "Invalid user management port (%s).\n"
 
683
        "Must be an integer between 0 and 65535." % repr(usrmgt_port))
 
684
        return 1
558
685
 
559
686
    # Write lib/conf/conf.py
560
687
 
577
704
 
578
705
    print "Successfully wrote lib/conf/conf.py"
579
706
 
 
707
    # Write conf/jailconf.py
 
708
 
 
709
    try:
 
710
        conf = open(jailconffile, "w")
 
711
 
 
712
        # In the "in-jail" version of conf, we don't need MOST of the details
 
713
        # (it would be a security risk to have them here).
 
714
        # So we just write root_dir, and jail_base is "/".
 
715
        # (jail_base being "/" means "jail-relative" paths are relative to "/"
 
716
        # when inside the jail.)
 
717
        conf.write("""# IVLE Configuration File
 
718
# conf.py
 
719
# Miscellaneous application settings
 
720
# (User jail version)
 
721
 
 
722
 
 
723
# In URL space, where in the site is IVLE located. (All URLs will be prefixed
 
724
# with this).
 
725
# eg. "/" or "/ivle".
 
726
root_dir = %s
 
727
 
 
728
# In the local file system, where are the student/user file spaces located.
 
729
# The user jails are expected to be located immediately in subdirectories of
 
730
# this location.
 
731
jail_base = '/'
 
732
 
 
733
# The hostname for serving publicly accessible pages
 
734
public_host = %s
 
735
""" % (repr(root_dir),repr(public_host)))
 
736
 
 
737
        conf.close()
 
738
    except IOError, (errno, strerror):
 
739
        print "IO error(%s): %s" % (errno, strerror)
 
740
        sys.exit(1)
 
741
 
 
742
    print "Successfully wrote lib/conf/jailconf.py"
 
743
 
580
744
    # Write trampoline/conf.h
581
745
 
582
746
    try:
600
764
 * (Note that root is an implicit member of this list).
601
765
 */
602
766
static const int allowed_uids[] = { %s };
603
 
""" % (jail_base, repr(allowed_uids_list)[1:-1]))
 
767
""" % (repr(jail_base)[1:-1], repr(allowed_uids_list)[1:-1]))
 
768
    # Note: The above uses PYTHON reprs, not C reprs
 
769
    # However they should be the same with the exception of the outer
 
770
    # characters, which are stripped off and replaced
604
771
 
605
772
        conf.close()
606
773
    except IOError, (errno, strerror):
612
779
    print
613
780
    print "You may modify the configuration at any time by editing"
614
781
    print conffile
 
782
    print jailconffile
615
783
    print conf_hfile
616
784
    print
617
785
    return 0
637
805
    action_mkdir('jail/home', dry)
638
806
    action_mkdir('jail/tmp', dry)
639
807
 
 
808
    # Chmod the tmp directory to world writable
 
809
    action_chmod_w('jail/tmp', dry)
 
810
 
640
811
    # Copy all console and operating system files into the jail
641
 
    action_copylist(install_list.list_console, 'jail/opt/ivle', dry)
 
812
    action_copylist(install_list.list_scripts, 'jail/opt/ivle', dry)
642
813
    copy_os_files_jail(dry)
643
814
    # Chmod the python console
644
 
    action_chmod_x('jail/opt/ivle/console/python-console', dry)
 
815
    action_chmod_x('jail/opt/ivle/scripts/python-console', dry)
 
816
    action_chmod_x('jail/opt/ivle/scripts/fileservice', dry)
645
817
    
 
818
    # Also copy the IVLE lib directory into the jail
 
819
    # This is necessary for running certain scripts
 
820
    action_copylist(install_list.list_lib, 'jail/opt/ivle', dry)
 
821
    # IMPORTANT: The file jail/opt/ivle/lib/conf/conf.py contains details
 
822
    # which could compromise security if left in the jail (such as the DB
 
823
    # password).
 
824
    # The "safe" version is in jailconf.py. Delete conf.py and replace it with
 
825
    # jailconf.py.
 
826
    action_copyfile('lib/conf/jailconf.py',
 
827
        'jail/opt/ivle/lib/conf/conf.py', dry)
646
828
 
647
829
    # Compile .py files into .pyc or .pyo files
648
830
    compileall.compile_dir('www', quiet=True)
649
 
    compileall.compile_dir('console', quiet=True)
 
831
    compileall.compile_dir('lib', quiet=True)
 
832
    compileall.compile_dir('scripts', quiet=True)
 
833
    compileall.compile_dir('jail/opt/ivle/lib', quiet=True)
 
834
 
 
835
    # Set up ivle.pth inside the jail
 
836
    # Need to set /opt/ivle/lib to be on the import path
 
837
    ivle_pth = \
 
838
        "jail/usr/lib/python%s/site-packages/ivle.pth" % PYTHON_VERSION
 
839
    f = open(ivle_pth, 'w')
 
840
    f.write('/opt/ivle/lib\n')
 
841
    f.close()
650
842
 
651
843
    return 0
652
844
 
694
886
    # chown trampoline to root and set setuid bit
695
887
    action_chown_setuid(tramppath, dry)
696
888
 
 
889
    # Create a scripts directory to put the usrmgt-server in.
 
890
    action_mkdir(os.path.join(ivle_install_dir, 'scripts'), dry)
 
891
    usrmgtpath = os.path.join(ivle_install_dir, 'scripts/usrmgt-server')
 
892
    action_copyfile('scripts/usrmgt-server', usrmgtpath, dry)
 
893
    action_chmod_x(usrmgtpath, dry)
 
894
 
697
895
    # Copy the www and lib directories using the list
698
896
    action_copylist(install_list.list_www, ivle_install_dir, dry)
699
897
    action_copylist(install_list.list_lib, ivle_install_dir, dry)
 
898
    
 
899
    # Copy the php directory
 
900
    action_copytree('www/php/phpBB3',os.path.join(ivle_install_dir,'www/php/phpBB3'), 
 
901
    dry)
700
902
 
701
903
    if not nojail:
702
904
        # Copy the local jail directory built by the build action
704
906
        # for all the students' jails).
705
907
        action_copytree('jail', os.path.join(jail_base, 'template'), dry)
706
908
    if not nosubjects:
707
 
        # Copy the subjects and problems directories across
 
909
        # Copy the subjects and exercises directories across
708
910
        action_copylist(install_list.list_subjects, subjects_base, dry,
709
911
            srcdir="./subjects")
710
 
        action_copylist(install_list.list_problems, problems_base, dry,
711
 
            srcdir="./problems")
 
912
        action_copylist(install_list.list_exercises, exercises_base, dry,
 
913
            srcdir="./exercises")
712
914
 
713
915
    # Append IVLE path to ivle.pth in python site packages
714
916
    # (Unless it's already there)
799
1001
    if ret != 0:
800
1002
        raise RunError(prog, ret)
801
1003
 
 
1004
def action_remove(path, dry):
 
1005
    """Calls rmtree, deleting the target file if it exists."""
 
1006
    try:
 
1007
        print "rm -r", path
 
1008
        if not dry:
 
1009
            shutil.rmtree(path, True)
 
1010
    except OSError, (err, msg):
 
1011
        if err != errno.EEXIST:
 
1012
            raise
 
1013
        # Otherwise, didn't exist, so we don't care
 
1014
 
802
1015
def action_rename(src, dst, dry):
803
1016
    """Calls rename. Deletes the target if it already exists."""
804
 
    if os.access(dst, os.F_OK):
805
 
        print "rm -r", dst
806
 
        if not dry:
807
 
            shutil.rmtree(dst, True)
 
1017
    action_remove(dst, dry)
808
1018
    print "mv ", src, dst
809
1019
    if dry: return
810
1020
    try:
830
1040
    directories as necessary.
831
1041
 
832
1042
    See shutil.copytree."""
833
 
    if os.access(dst, os.F_OK):
834
 
        print "rm -r", dst
835
 
        if not dry:
836
 
            shutil.rmtree(dst, True)
 
1043
    # Allow copying over itself
 
1044
    if (os.path.normpath(os.path.join(os.getcwd(),src)) ==
 
1045
        os.path.normpath(os.path.join(os.getcwd(),dst))):
 
1046
        return
 
1047
    action_remove(dst, dry)
837
1048
    print "cp -r", src, dst
838
1049
    if dry: return
839
1050
    shutil.copytree(src, dst, True)
842
1053
    """Hard-links an entire directory tree. Same as copytree but the created
843
1054
    files are hard-links not actual copies. Removes the existing destination.
844
1055
    """
845
 
    if os.access(dst, os.F_OK):
846
 
        print "rm -r", dst
847
 
        if not dry:
848
 
            shutil.rmtree(dst, True)
 
1056
    action_remove(dst, dry)
849
1057
    print "<cp with hardlinks> -r", src, dst
850
1058
    if dry: return
851
1059
    common.makeuser.linktree(src, dst)
926
1134
        os.chmod(file, stat.S_IXUSR | stat.S_IRUSR | stat.S_IWUSR
927
1135
            | stat.S_IXGRP | stat.S_IRGRP | stat.S_IXOTH | stat.S_IROTH)
928
1136
 
 
1137
 
 
1138
def action_chmod_w(file, dry):
 
1139
    """Chmod 777 a file (sets permissions to rwxrwxrwx)."""
 
1140
    print "chmod 777", file
 
1141
    if not dry:
 
1142
        os.chmod(file, stat.S_IXUSR | stat.S_IRUSR | stat.S_IWUSR
 
1143
            | stat.S_IXGRP | stat.S_IWGRP | stat.S_IRGRP | stat.S_IXOTH
 
1144
            | stat.S_IWOTH | stat.S_IROTH)
 
1145
 
929
1146
def query_user(default, prompt):
930
1147
    """Prompts the user for a string, which is read from a line of stdin.
931
1148
    Exits silently if EOF is encountered. Returns the string, with spaces