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

« back to all changes in this revision

Viewing changes to makeuser.py

  • Committer: mattgiuca
  • Date: 2008-01-25 06:20:32 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:313
test/test_framework: Updated examples, a bit of better descriptions, sample
    partial solutions, etc.

Added all sample subject material.
This has been copied from test/test_framework and modified slightly.
There is now a subject "sample" with 2 worksheets. The 1st worksheet has 3
exercises. These work in IVLE by default.

setup.py: Added code to install subjects into the designated directory. This
means that installing IVLE will result in the sample subjects being
immediately available.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
# Script to create a new user. This can also be done through the
24
24
# administration interface.
25
 
# This script wraps common.makeuser.
26
 
# It also creates a unix account which common.makeuser does not.
27
 
# (This script may not be appropriate for production on a multi-node
28
 
# environment).
29
25
 
30
26
import sys
31
27
import os
32
 
import getopt
 
28
import os.path
 
29
# Import modules from the website is tricky since they're in the www
 
30
# directory.
 
31
sys.path.append(os.path.join(os.getcwd(), 'www'))
 
32
import conf
33
33
import common.makeuser
34
34
 
35
 
# Requireds and optionals will be used to display the usage message
36
 
# AND do argument processing
37
 
# The names here must correspond to the fields in the database.
38
 
requireds = ["login", "fullname", "rolenm"]
39
 
optionals = [
40
 
    ('p', 'password', "Cleartext password for this user"),
41
 
    ('n', 'nick', "Display name (defaults to <fullname>)"),
42
 
    ('e', 'email', "Email address"),
43
 
    ('s', 'studentid', "Student ID")
44
 
]
45
 
 
46
 
if len(sys.argv) <= 3:
47
 
    # Nicely format the usage message using the optionals
48
 
    print ("Usage: python makeuser.py [OPTIONS] %s\n    OPTIONS"
49
 
        % ' '.join(['<%s>' % x for x in requireds]))
50
 
    for short, long, desc in optionals:
51
 
        t = "        -%s | --%s" % (short, long)
52
 
        print t + (' ' * max(28 - len(t), 2)) + desc
53
 
    sys.exit(1)
54
 
 
55
 
if os.getuid() != 0:
56
 
    print "Must run makeuser.py as root."
57
 
    sys.exit(1)
58
 
 
59
 
shorts = ''.join([o[0] + ":" for o in optionals])
60
 
longs = [o[1] + "=" for o in optionals]
61
 
opts, args = getopt.gnu_getopt(sys.argv[1:], shorts, longs)
62
 
opts = dict(opts)
63
 
 
64
 
# Get the dictionary of fields from opts and args
65
 
user = {}
66
 
for i in range(0, len(requireds)):
67
 
    user[requireds[i]] = args[i]
68
 
for short, long, _ in optionals:
69
 
    try:
70
 
        user[long] = opts['-' + short]
71
 
    except KeyError:
72
 
        try:
73
 
            user[long] = opts['--' + long]
74
 
        except KeyError:
75
 
            pass
76
 
login = user['login']
77
 
if 'nick' not in user:
78
 
    user['nick'] = user['fullname']
 
35
if len(sys.argv) <= 1:
 
36
    print "Usage: python makeuser.py <username>"
 
37
    sys.exit()
 
38
 
 
39
username = sys.argv[1]
79
40
 
80
41
try:
81
 
    # Make the user's database entry
82
 
    common.makeuser.make_user_db(**user)
 
42
    common.makeuser.makeuser(username)
83
43
except Exception, message:
84
44
    print "Error: " + str(message)
85
45
    sys.exit(1)
86
46
 
87
 
print "Successfully created user %s (%s)." % (login, user['fullname'])
 
47
print "Successfully created user " + username + "."