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

« back to all changes in this revision

Viewing changes to services/usrmgt-server

  • Committer: William Grant
  • Date: 2009-04-28 07:22:03 UTC
  • Revision ID: grantw@unimelb.edu.au-20090428072203-j5ratziusj3kv4tq
Allow template string interpolation in the config.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
import logging
6
6
 
7
7
import ivle.config
 
8
import ivle.conf
8
9
import ivle.database
9
10
import ivle.chat
10
11
import ivle.makeuser
11
12
 
12
 
config = ivle.config.Config()
13
 
 
14
13
# usage:
15
14
#   usrmgt-server <port> <magic>
16
15
 
29
28
#   - Rebuild svn auth file
30
29
#   - Rebuild passwd + push to nodes.
31
30
 
32
 
def activate_user(store, props, config):
 
31
def activate_user(store, props):
33
32
    """Create the on-disk stuff for the given user.
34
33
       Sets the state of the user in the db from pending to enabled.
35
 
    @param config: An ivle.config.Config object.
36
34
       Expected properties:
37
35
        login       - the user name for the jail
38
36
                      STRING REQUIRED
39
 
    @return: None
 
37
       Return Value: None
40
38
    """
41
39
 
42
40
    os.umask(0022) # Bad, but start_server sets it worse.
49
47
    user = ivle.database.User.get_by_login(store, login)
50
48
 
51
49
    # make svn config/auth
52
 
    repopath = os.path.join(config['paths']['svn']['repo_path'],
53
 
                            'users', login)
 
50
    repopath = os.path.join(ivle.conf.svn_repo_path, 'users', login)
54
51
    logging.debug("Creating user's Subversion repository")
55
52
    ivle.makeuser.make_svn_repo(repopath, throw_on_error=True)
56
53
 
57
 
    rebuild_svn_config(store, props, config)
 
54
    rebuild_svn_config(store, props)
58
55
 
59
56
    logging.debug("Adding Subversion authentication")
60
 
    passwd = ivle.makeuser.make_svn_auth(store, login, config,
 
57
    passwd = ivle.makeuser.make_svn_auth(store, login,
61
58
                                         throw_on_error=True)
62
59
 
63
60
    logging.debug("Creating jail")
64
 
    ivle.makeuser.make_jail(user, config)
 
61
    ivle.makeuser.make_jail(user)
65
62
 
66
63
    logging.info("Enabling user")
67
64
    user.state = u'enabled'
68
65
 
69
66
    return {"response": "okay"}
70
67
 
71
 
def rebuild_svn_config(store, props, config):
 
68
def rebuild_svn_config(store, props):
72
69
    """Rebuilds the svn config file
73
 
    @param config: An ivle.config.Config object.
74
 
    @return: response (okay, failure)
 
70
    Return value:
 
71
        response (okay, failure)
75
72
    """
76
73
    try:
77
 
        ivle.makeuser.rebuild_svn_config(store, config)
 
74
        ivle.makeuser.rebuild_svn_config(store)
78
75
    except Exception, e:
79
76
        logging.warning('Rebuild of Subversion authorization config failed!')
80
77
        return{'response': 'failure', 'msg': repr(e)}
81
78
 
82
79
    return {'response': 'okay'}
83
80
 
84
 
def rebuild_svn_group_config(store, props, config):
 
81
def rebuild_svn_group_config(store, props):
85
82
    """Rebuilds the svn group config file
86
 
    @param config: An ivle.config.Config object.
87
 
    @return: response (okay, failure)
 
83
    Return value:
 
84
        response (okay, failure)
88
85
    """
89
86
    try:
90
 
        ivle.makeuser.rebuild_svn_group_config(store, config)
 
87
        ivle.makeuser.rebuild_svn_group_config(store)
91
88
    except Exception, e:
92
89
        logging.warning(
93
90
            'Rebuild of Subversion group authorization config failed!')
95
92
 
96
93
    return {'response': 'okay'}
97
94
 
98
 
def create_group_repository(store, props, config):
 
95
def create_group_repository(store, props):
99
96
    """Creates on disk repository for the given group
100
 
    @param config: An ivle.config.Config object.
101
97
    Expected properties:
102
98
        subj_short_name, year, semester, groupnm
103
 
    @return: response (okay, failure)
 
99
    Return value:
 
100
        response (okay, failure)
104
101
    """
105
102
 
106
103
    subj_short_name = props['subj_short_name']
109
106
    groupnm = props['groupnm']
110
107
 
111
108
    namespace = "_".join([subj_short_name, year, semester, groupnm])
112
 
    repopath = os.path.join(config['paths']['svn']['repo_path'],
113
 
                            'groups', namespace)
 
109
    repopath = os.path.join(ivle.conf.svn_repo_path, 'groups', namespace)
114
110
    logging.debug("Creating Subversion repository %s"%repopath)
115
111
    try:
116
112
        ivle.makeuser.make_svn_repo(repopath)
131
127
def initializer():
132
128
    logging.basicConfig(filename="/var/log/usrmgt.log", level=logging.INFO)
133
129
    logging.info("Starting usrmgt server on port %d (pid = %d)" %
134
 
                 (config['usrmgt']['port'], pid))
 
130
                 (ivle.conf.usrmgt_port, pid))
135
131
 
136
132
    try:
137
133
        pidfile = open('/var/run/usrmgt-server.pid', 'w')
144
140
def dispatch(props):
145
141
    logging.debug(repr(props))
146
142
 
147
 
    store = ivle.database.get_store(config)
 
143
    store = ivle.database.get_store(ivle.config.Config())
148
144
    action = props.keys()[0]
149
 
    res = actions[action](store, props[action], config)
 
145
    res = actions[action](store, props[action])
150
146
 
151
147
    if res['response'] == 'okay':
152
148
        store.commit()
158
154
if __name__ == "__main__":
159
155
    pid = os.getpid()
160
156
 
161
 
    ivle.chat.start_server(config['usrmgt']['port'],config['usrmgt']['magic'],
 
157
    ivle.chat.start_server(ivle.conf.usrmgt_port, ivle.conf.usrmgt_magic,
162
158
                           True, dispatch, initializer)