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

« back to all changes in this revision

Viewing changes to makeuser.py

  • Committer: dcoles
  • Date: 2008-08-13 07:26:44 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1017
Console: Refactored a lot of the console stuff into a class to make calls to 
the console from Python a lot nicer. Eventually it should even be able to be 
used by consoleservice but needs a little more work (at the moment it's only 
used for starting the console).
Also added in a few Tutorial specific functions to console such as 'inspect' 
which gives a summary of the the evaluated code block and flush to clear and 
optionally set globals.

Listmake will need to be rerun after this revision due to the new 
lib/common/console.py

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).
25
29
 
26
30
import sys
27
31
import os
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
 
32
import getopt
33
33
import common.makeuser
34
34
 
35
 
if len(sys.argv) <= 1:
36
 
    print "Usage: python makeuser.py <username>"
37
 
    sys.exit()
38
 
 
39
 
username = sys.argv[1]
 
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']
40
79
 
41
80
try:
42
 
    common.makeuser.makeuser(username)
 
81
    # Make the user's database entry
 
82
    common.makeuser.make_user_db(**user)
43
83
except Exception, message:
44
84
    print "Error: " + str(message)
45
85
    sys.exit(1)
46
86
 
47
 
print "Successfully created user " + username + "."
 
87
print "Successfully created user %s (%s)." % (login, user['fullname'])