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

« back to all changes in this revision

Viewing changes to ivle/webapp/admin/user.py

  • Committer: William Grant
  • Date: 2010-02-11 05:27:24 UTC
  • Revision ID: grantw@unimelb.edu.au-20100211052724-171m0779yqzn1y1x
Add a setup.cfg with nose settings. You can now run the suite with 'IVLECONF=. nosetests'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
# Author: Matt Giuca, Will Grant
19
19
 
 
20
import formencode
 
21
import formencode.validators
 
22
from genshi.filters import HTMLFormFiller
 
23
 
 
24
from ivle.webapp import ApplicationRoot
20
25
from ivle.webapp.base.rest import JSONRESTView, require_permission
21
26
from ivle.webapp.base.xhtml import XHTMLView
22
27
from ivle.webapp.base.plugins import ViewPlugin, MediaPlugin
23
 
from ivle.webapp.errors import NotFound, Unauthorized
 
28
from ivle.webapp.admin.publishing import root_to_user, user_url
 
29
from ivle.database import User
24
30
import ivle.database
 
31
import ivle.date
25
32
import ivle.util
26
33
 
 
34
 
 
35
class UsersView(XHTMLView):
 
36
    """A list of all IVLE users."""
 
37
    template = 'templates/users.html'
 
38
    tab = 'users'
 
39
    breadcrumb_text = 'Users'
 
40
 
 
41
    def authorize(self, req):
 
42
        return req.user.admin
 
43
 
 
44
    def populate(self, req, ctx):
 
45
        ctx['req'] = req
 
46
        ctx['users'] = req.store.find(User).order_by(User.login)
 
47
 
 
48
 
27
49
# List of fields returned as part of the user JSON dictionary
28
50
# (as returned by the get_user action)
29
51
user_fields_list = (
36
58
    """
37
59
    A REST interface to the user object.
38
60
    """
39
 
    def __init__(self, req, login):
40
 
        super(UserRESTView, self).__init__(self, req, login)
41
 
        self.context = ivle.database.User.get_by_login(req.store, login)
42
 
        if self.context is None:
43
 
            raise NotFound()
44
61
 
45
62
    @require_permission('view')
46
63
    def GET(self, req):
54
71
        user['local_password'] = self.context.passhash is not None
55
72
        return user
56
73
 
57
 
class UserSettingsView(XHTMLView):
58
 
    template = 'templates/user-settings.html'
59
 
    tab = 'settings'
60
 
    permission = 'edit'
61
 
 
62
 
    def __init__(self, req, login):
63
 
        self.context = ivle.database.User.get_by_login(req.store, login)
64
 
        if self.context is None:
65
 
            raise NotFound()
66
 
 
67
 
    def populate(self, req, ctx):
68
 
        self.plugin_scripts[Plugin] = ['settings.js']
69
 
        self.scripts_init = ['revert_settings']
70
 
 
71
 
        ctx['login'] = self.context.login
 
74
class UserEditSchema(formencode.Schema):
 
75
    nick = formencode.validators.UnicodeString(not_empty=True)
 
76
    email = formencode.validators.Email(not_empty=False,
 
77
                                        if_missing=None)
 
78
 
 
79
class UserEditView(XHTMLView):
 
80
    """A form to change a user's details."""
 
81
    template = 'templates/user-edit.html'
 
82
    tab = 'users'
 
83
    permission = 'edit'
 
84
 
 
85
    def filter(self, stream, ctx):
 
86
        return stream | HTMLFormFiller(data=ctx['data'])
 
87
 
 
88
    def populate(self, req, ctx):
 
89
        if req.method == 'POST':
 
90
            data = dict(req.get_fieldstorage())
 
91
            try:
 
92
                validator = UserEditSchema()
 
93
                data = validator.to_python(data, state=req)
 
94
                self.context.nick = data['nick']
 
95
                self.context.email = unicode(data['email']) if data['email'] \
 
96
                                     else None
 
97
                req.store.commit()
 
98
                req.throw_redirect(req.uri)
 
99
            except formencode.Invalid, e:
 
100
                errors = e.unpack_errors()
 
101
        else:
 
102
            data = {'nick': self.context.nick,
 
103
                    'email': self.context.email
 
104
                   }
 
105
            errors = {}
 
106
 
 
107
        ctx['format_datetime'] = ivle.date.make_date_nice
 
108
        ctx['format_datetime_short'] = ivle.date.format_datetime_for_paragraph
 
109
 
 
110
        ctx['req'] = req
 
111
        ctx['user'] = self.context
 
112
        ctx['data'] = data
 
113
        ctx['errors'] = errors
 
114
 
 
115
class UserAdminSchema(formencode.Schema):
 
116
    admin = formencode.validators.StringBoolean(if_missing=False)
 
117
    fullname = formencode.validators.UnicodeString(not_empty=True)
 
118
    studentid = formencode.validators.UnicodeString(not_empty=False,
 
119
                                                    if_missing=None
 
120
                                                    )
 
121
 
 
122
class UserAdminView(XHTMLView):
 
123
    """A form for admins to change more of a user's details."""
 
124
    template = 'templates/user-admin.html'
 
125
    tab = 'users'
 
126
 
 
127
    def authorize(self, req):
 
128
        """Only allow access if the requesting user is an admin."""
 
129
        return req.user.admin
 
130
 
 
131
    def filter(self, stream, ctx):
 
132
        return stream | HTMLFormFiller(data=ctx['data'])
 
133
 
 
134
    def populate(self, req, ctx):
 
135
        if req.method == 'POST':
 
136
            data = dict(req.get_fieldstorage())
 
137
            try:
 
138
                validator = UserAdminSchema()
 
139
                data = validator.to_python(data, state=req)
 
140
 
 
141
                if self.context is req.user:
 
142
                    # Admin checkbox is disabled -- assume unchanged
 
143
                    data['admin'] = self.context.admin
 
144
                else:
 
145
                    self.context.admin = data['admin']
 
146
                self.context.fullname = data['fullname'] \
 
147
                                        if data['fullname'] else None
 
148
                self.context.studentid = data['studentid'] \
 
149
                                         if data['studentid'] else None
 
150
                req.store.commit()
 
151
                req.throw_redirect(req.uri)
 
152
            except formencode.Invalid, e:
 
153
                errors = e.unpack_errors()
 
154
        else:
 
155
            data = {'admin': self.context.admin,
 
156
                    'fullname': self.context.fullname,
 
157
                    'studentid': self.context.studentid,
 
158
                   }
 
159
            errors = {}
 
160
 
 
161
        ctx['req'] = req
 
162
        ctx['user'] = self.context
 
163
        # Disable the Admin checkbox if editing oneself
 
164
        ctx['disable_admin'] = self.context is req.user
 
165
        ctx['data'] = data
 
166
        ctx['errors'] = errors
 
167
 
 
168
class PasswordChangeView(XHTMLView):
 
169
    """A form to change a user's password, with knowledge of the old one."""
 
170
    template = 'templates/user-password-change.html'
 
171
    tab = 'users'
 
172
    permission = 'edit'
 
173
 
 
174
    def authorize(self, req):
 
175
        """Only allow access if the requesting user holds the permission,
 
176
           and the target user has a password set. Otherwise we might be
 
177
           clobbering external authn.
 
178
        """
 
179
        return super(PasswordChangeView, self).authorize(req) and \
 
180
               self.context.passhash is not None
 
181
 
 
182
    def populate(self, req, ctx):
 
183
        error = None
 
184
        if req.method == 'POST':
 
185
            data = dict(req.get_fieldstorage())
 
186
            if data.get('old_password') is None or \
 
187
               not self.context.authenticate(data.get('old_password')):
 
188
                error = 'Incorrect password.'
 
189
            elif data.get('new_password') != data.get('new_password_again'):
 
190
                error = 'New passwords do not match.'
 
191
            elif not data.get('new_password'):
 
192
                error = 'New password cannot be empty.'
 
193
            else:
 
194
                self.context.password = data['new_password']
 
195
                req.store.commit()
 
196
                req.throw_redirect(req.uri)
 
197
 
 
198
        ctx['req'] = req
 
199
        ctx['user'] = self.context
 
200
        ctx['error'] = error
 
201
 
 
202
class PasswordResetView(XHTMLView):
 
203
    """A form to reset a user's password, without knowledge of the old one."""
 
204
    template = 'templates/user-password-reset.html'
 
205
    tab = 'users'
 
206
 
 
207
    def authorize(self, req):
 
208
        """Only allow access if the requesting user is an admin."""
 
209
        return req.user.admin
 
210
 
 
211
    def populate(self, req, ctx):
 
212
        error = None
 
213
        if req.method == 'POST':
 
214
            data = dict(req.get_fieldstorage())
 
215
            if data.get('new_password') != data.get('new_password_again'):
 
216
                error = 'New passwords do not match.'
 
217
            elif not data.get('new_password'):
 
218
                error = 'New password cannot be empty.'
 
219
            else:
 
220
                self.context.password = data['new_password']
 
221
                req.store.commit()
 
222
                req.throw_redirect(req.uri)
 
223
 
 
224
        ctx['user'] = self.context
 
225
        ctx['error'] = error
72
226
 
73
227
class Plugin(ViewPlugin, MediaPlugin):
74
228
    """
75
229
    The Plugin class for the user plugin.
76
230
    """
77
 
    # Magic attribute: urls
78
 
    # Sequence of pairs/triples of
79
 
    # (regex str, handler class, kwargs dict)
80
 
    # The kwargs dict is passed to the __init__ of the view object
81
 
    urls = [
82
 
        ('~:login/+settings', UserSettingsView),
83
 
        ('api/~:login', UserRESTView),
 
231
 
 
232
    forward_routes = (root_to_user,)
 
233
    reverse_routes = (user_url,)
 
234
    views = [(ApplicationRoot, 'users', UsersView),
 
235
             (ivle.database.User, '+index', UserEditView),
 
236
             (ivle.database.User, '+admin', UserAdminView),
 
237
             (ivle.database.User, '+changepassword', PasswordChangeView),
 
238
             (ivle.database.User, '+resetpassword', PasswordResetView),
 
239
             (ivle.database.User, '+index', UserRESTView, 'api'),
 
240
             ]
 
241
 
 
242
    tabs = [
 
243
        ('users', 'Users', 'Display and edit all users',
 
244
         'users.png', 'users', 0, True)
84
245
    ]
85
246
 
 
247
    public_forward_routes = forward_routes
 
248
    public_reverse_routes = reverse_routes
 
249
 
86
250
    media = 'user-media'