36
# Requireds and optionals will be used to display the usage message
37
# AND do argument processing
38
# The names here must correspond to the fields in the database.
39
requireds = ["login", "fullname", "rolenm"]
41
('p', 'password', "Cleartext password for this user"),
42
('n', 'nick', "Display name (defaults to <fullname>)"),
43
('e', 'email', "Email address"),
44
('s', 'studentid', "Student ID")
47
if len(sys.argv) <= 3:
48
# Nicely format the usage message using the optionals
49
print ("Usage: %s [OPTIONS] %s\n OPTIONS"
50
% (os.path.basename(sys.argv[0]),
51
' '.join(['<%s>' % x for x in requireds])))
52
for short, long, desc in optionals:
53
t = " -%s | --%s" % (short, long)
54
print t + (' ' * max(28 - len(t), 2)) + desc
34
57
if os.getuid() != 0:
35
58
print "Must run %s as root." % os.path.basename(sys.argv[0])
38
from ivle.config import Config
39
from ivle.database import get_store, User
40
from ivle.pulldown_subj import enrol_user
42
usage = """usage: %prog [OPTIONS] <LOGIN> <FULLNAME>
43
Creates an IVLE user."""
45
parser = optparse.OptionParser(usage)
46
parser.add_option("-p", "--password",
47
action="store", dest="password",
48
help="Cleartext password"
50
parser.add_option("-n", "--nick",
51
action="store", dest="nick",
52
help="Display name (defaults to <FULLNAME>)"
54
parser.add_option("-e", "--email",
55
action="store", dest="email",
58
parser.add_option("-s", "--studentid",
59
action="store", dest="studentid",
62
parser.add_option("--admin",
63
action="store_true", dest="admin",
64
help="Give the user full administrative privileges",
68
(options, args) = parser.parse_args()
71
parser.error("incorrect number of arguments")
73
user = {'login': unicode(args[0]), 'fullname': unicode(args[1])}
75
for attr in ('password', 'nick', 'email', 'studentid', 'admin'):
76
val = getattr(options, attr)
78
if isinstance(val, str):
61
shorts = ''.join([o[0] + ":" for o in optionals])
62
longs = [o[1] + "=" for o in optionals]
63
opts, args = getopt.gnu_getopt(sys.argv[1:], shorts, longs)
66
# Get the dictionary of fields from opts and args
68
for i in range(0, len(requireds)):
69
user[requireds[i]] = args[i]
70
for short, long, _ in optionals:
72
user[long] = opts['-' + short]
75
user[long] = opts['--' + long]
82
79
if 'nick' not in user:
83
80
user['nick'] = user['fullname']
86
store = get_store(config)
88
if User.get_by_login(store, user['login']) is not None:
89
print "user '%s' already exists" % user['login']
83
# Make the user's database entry
84
ivle.makeuser.make_user_db(**user)
85
except Exception, message:
86
print "Error: " + str(message)
92
# Make the user's database entry
93
userobj = User(**user)
95
enrol_user(config, store, userobj)
98
print "successfully created user '%s' (%s)." % (userobj.login, userobj.fullname)
89
print "Successfully created user %s (%s)." % (login, user['fullname'])