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

« back to all changes in this revision

Viewing changes to services/usrmgt-server

  • Committer: me at id
  • Date: 2009-01-15 00:37:10 UTC
  • mto: This revision was merged to the branch mainline in revision 1090.
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:branches%2Fstorm:1141
ivle.database.User: Add an authenticate() method, and a hash_password()
     staticmethod to replace the auth functions in ivle.db.

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