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

« back to all changes in this revision

Viewing changes to www/apps/userservice/__init__.py

  • Committer: mattgiuca
  • Date: 2008-02-18 23:48:04 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:497
userservice: activate_me is now database enabled. It checks the state from the
DB instead of session, and it writes pending to the DB.

Show diffs side-by-side

added added

removed removed

Lines of Context:
131
131
    "accepting" the terms - at least this way requires them to acknowledge
132
132
    their acceptance). It must only be called through a POST request.
133
133
    """
134
 
    if req.method != "POST":
135
 
        req.throw_error(req.HTTP_BAD_REQUEST)
 
134
    db = common.db.DB()
136
135
    try:
137
 
        declaration = fields.getfirst('declaration')
138
 
    except AttributeError:
139
 
        req.throw_error(req.HTTP_BAD_REQUEST)
140
 
    if declaration != USER_DECLARATION:
141
 
        req.throw_error(req.HTTP_BAD_REQUEST)
142
 
 
143
 
    session = req.get_session()
144
 
    # Check that the user's status is "no_agreement".
145
 
    # (Both to avoid redundant calls, and to stop disabled users from
146
 
    # re-enabling their accounts).
147
 
    if session['state'] != "no_agreement":
148
 
        req.throw_error(req.HTTP_BAD_REQUEST)
149
 
 
150
 
    # Get the arguments for usermgt.activate_user from the session
151
 
    # (The user must have already logged in to use this app)
152
 
    args = {
153
 
        "login": req.username,
154
 
    }
155
 
    msg = {'activate_user': args}
156
 
 
157
 
    response = chat.chat(usrmgt_host, usrmgt_port, msg, usrmgt_magic,
158
 
        decode = False)
159
 
    # TODO: Figure out a way to let the user be "enabled" in this session.
160
 
    # (Would require a write to the session?)
161
 
    req.content_type = "text/plain"
162
 
    req.write(response)
 
136
        if req.method != "POST":
 
137
            req.throw_error(req.HTTP_BAD_REQUEST)
 
138
        try:
 
139
            declaration = fields.getfirst('declaration')
 
140
        except AttributeError:
 
141
            req.throw_error(req.HTTP_BAD_REQUEST)
 
142
        if declaration != USER_DECLARATION:
 
143
            req.throw_error(req.HTTP_BAD_REQUEST)
 
144
 
 
145
        # Make sure the user's status is "no_agreement", and set status to
 
146
        # pending, within the one transaction. This ensures we only do this
 
147
        # one time.
 
148
        db.start_transaction()
 
149
        try:
 
150
 
 
151
            user_details = db.get_user(req.username)
 
152
            # Check that the user's status is "no_agreement".
 
153
            # (Both to avoid redundant calls, and to stop disabled users from
 
154
            # re-enabling their accounts).
 
155
            if user_details['state'] != "no_agreement":
 
156
                req.throw_error(req.HTTP_BAD_REQUEST)
 
157
            # Write state "pending" to ensure we don't try this again
 
158
            db.update_user(req.username, state="pending")
 
159
        except:
 
160
            db.rollback()
 
161
            raise
 
162
        db.commit()
 
163
 
 
164
        # Get the arguments for usermgt.activate_user from the session
 
165
        # (The user must have already logged in to use this app)
 
166
        args = {
 
167
            "login": req.username,
 
168
        }
 
169
        msg = {'activate_user': args}
 
170
 
 
171
        response = chat.chat(usrmgt_host, usrmgt_port, msg, usrmgt_magic,
 
172
            decode = False)
 
173
        # Write to the user's session to allow them to be activated
 
174
        # Write the response
 
175
        req.content_type = "text/plain"
 
176
        req.write(response)
 
177
    finally:
 
178
        db.close()
163
179
 
164
180
create_user_fields_required = [
165
181
    'login', 'fullname', 'rolenm'