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

« back to all changes in this revision

Viewing changes to services/usrmgt-server

  • Committer: William Grant
  • Date: 2010-02-15 05:37:50 UTC
  • Revision ID: grantw@unimelb.edu.au-20100215053750-hihmegnp8e7dshc2
Ignore test coverage files.

Show diffs side-by-side

added added

removed removed

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