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

« back to all changes in this revision

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

  • Committer: David Coles
  • Date: 2010-06-01 13:50:33 UTC
  • mto: This revision was merged to the branch mainline in revision 1830.
  • Revision ID: coles.david@gmail.com-20100601135033-syup3gfzd5qrw22b
File Browser: Don't show actions2_file for anything but text editor and 
disable the "unsaved content" warning.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
import formencode.validators
22
22
from genshi.filters import HTMLFormFiller
23
23
 
 
24
from ivle.database import User
 
25
import ivle.date
 
26
from ivle.pulldown_subj import enrol_user
24
27
from ivle.webapp import ApplicationRoot
25
 
from ivle.webapp.base.rest import JSONRESTView, require_permission
 
28
from ivle.webapp.base.forms import BaseFormView, URLNameValidator
26
29
from ivle.webapp.base.xhtml import XHTMLView
27
30
from ivle.webapp.base.plugins import ViewPlugin, MediaPlugin
28
31
from ivle.webapp.admin.publishing import root_to_user, user_url
29
 
from ivle.database import User
30
 
import ivle.database
31
 
import ivle.date
32
 
import ivle.util
33
32
 
34
33
 
35
34
class UsersView(XHTMLView):
36
35
    """A list of all IVLE users."""
37
36
    template = 'templates/users.html'
 
37
    tab = 'users'
 
38
    breadcrumb_text = 'Users'
38
39
 
39
40
    def authorize(self, req):
40
 
        return req.user.admin
 
41
        return req.user and req.user.admin
41
42
 
42
43
    def populate(self, req, ctx):
43
44
        ctx['req'] = req
44
45
        ctx['users'] = req.store.find(User).order_by(User.login)
45
46
 
46
47
 
47
 
# List of fields returned as part of the user JSON dictionary
48
 
# (as returned by the get_user action)
49
 
user_fields_list = (
50
 
    "login", "state", "unixid", "email", "nick", "fullname",
51
 
    "admin", "studentid", "acct_exp", "pass_exp", "last_login",
52
 
    "svn_pass"
53
 
)
54
 
 
55
 
class UserRESTView(JSONRESTView):
56
 
    """
57
 
    A REST interface to the user object.
58
 
    """
59
 
 
60
 
    @require_permission('view')
61
 
    def GET(self, req):
62
 
        # XXX Check Caps
63
 
        user = ivle.util.object_to_dict(user_fields_list, self.context)
64
 
        # Convert time stamps to nice strings
65
 
        for k in 'pass_exp', 'acct_exp', 'last_login':
66
 
            if user[k] is not None:
67
 
                user[k] = unicode(user[k])
68
 
 
69
 
        user['local_password'] = self.context.passhash is not None
70
 
        return user
71
 
 
72
48
class UserEditSchema(formencode.Schema):
73
49
    nick = formencode.validators.UnicodeString(not_empty=True)
74
50
    email = formencode.validators.Email(not_empty=False,
75
51
                                        if_missing=None)
76
52
 
77
 
class UserEditView(XHTMLView):
 
53
class UserEditView(BaseFormView):
78
54
    """A form to change a user's details."""
79
55
    template = 'templates/user-edit.html'
80
 
    tab = 'settings'
 
56
    tab = 'users'
81
57
    permission = 'edit'
82
58
 
83
 
    def filter(self, stream, ctx):
84
 
        return stream | HTMLFormFiller(data=ctx['data'])
 
59
    @property
 
60
    def validator(self):
 
61
        return UserEditSchema()
 
62
 
 
63
    def get_default_data(self, req):
 
64
        return {'nick': self.context.nick,
 
65
                'email': self.context.email
 
66
                }
 
67
 
 
68
    def save_object(self, req, data):
 
69
        self.context.nick = data['nick']
 
70
        self.context.email = unicode(data['email']) if data['email'] \
 
71
                             else None
 
72
        return self.context
85
73
 
86
74
    def populate(self, req, ctx):
87
 
        if req.method == 'POST':
88
 
            data = dict(req.get_fieldstorage())
89
 
            try:
90
 
                validator = UserEditSchema()
91
 
                data = validator.to_python(data, state=req)
92
 
                self.context.nick = data['nick']
93
 
                self.context.email = unicode(data['email']) if data['email'] \
94
 
                                     else None
95
 
                req.store.commit()
96
 
                req.throw_redirect(req.uri)
97
 
            except formencode.Invalid, e:
98
 
                errors = e.unpack_errors()
99
 
        else:
100
 
            data = {'nick': self.context.nick,
101
 
                    'email': self.context.email
102
 
                   }
103
 
            errors = {}
104
 
 
 
75
        super(UserEditView, self).populate(req, ctx)
105
76
        ctx['format_datetime'] = ivle.date.make_date_nice
106
77
        ctx['format_datetime_short'] = ivle.date.format_datetime_for_paragraph
 
78
        ctx['svn_url'] = req.user.get_svn_url(req.config, req)
 
79
        ctx['svn_pass'] = req.user.svn_pass
107
80
 
108
 
        ctx['req'] = req
109
 
        ctx['user'] = self.context
110
 
        ctx['data'] = data
111
 
        ctx['errors'] = errors
112
81
 
113
82
class UserAdminSchema(formencode.Schema):
114
83
    admin = formencode.validators.StringBoolean(if_missing=False)
 
84
    disabled = formencode.validators.StringBoolean(if_missing=False)
115
85
    fullname = formencode.validators.UnicodeString(not_empty=True)
116
86
    studentid = formencode.validators.UnicodeString(not_empty=False,
117
87
                                                    if_missing=None
118
88
                                                    )
119
89
 
120
 
class UserAdminView(XHTMLView):
 
90
class UserAdminView(BaseFormView):
121
91
    """A form for admins to change more of a user's details."""
122
92
    template = 'templates/user-admin.html'
123
 
    tab = 'settings'
 
93
    tab = 'users'
124
94
 
125
95
    def authorize(self, req):
126
96
        """Only allow access if the requesting user is an admin."""
127
 
        return req.user.admin
128
 
 
129
 
    def filter(self, stream, ctx):
130
 
        return stream | HTMLFormFiller(data=ctx['data'])
 
97
        return req.user and req.user.admin
 
98
 
 
99
    @property
 
100
    def validator(self):
 
101
        return UserAdminSchema()
 
102
 
 
103
    def get_default_data(self, req):
 
104
        return {'admin': self.context.admin,
 
105
                'disabled': self.context.state == u'disabled',
 
106
                'fullname': self.context.fullname,
 
107
                'studentid': self.context.studentid,
 
108
                }
 
109
 
 
110
    def save_object(self, req, data):
 
111
        if self.context is req.user:
 
112
            # Admin checkbox is disabled -- assume unchanged
 
113
            data['admin'] = self.context.admin
 
114
            data['disabled'] = self.context.state == u'disabled'
 
115
        else:
 
116
            self.context.admin = data['admin']
 
117
            if self.context.state in (u'enabled', u'disabled'):
 
118
                self.context.state = (u'disabled' if data['disabled']
 
119
                        else u'enabled')
 
120
        self.context.fullname = data['fullname'] \
 
121
                                if data['fullname'] else None
 
122
        self.context.studentid = data['studentid'] \
 
123
                                 if data['studentid'] else None
 
124
        return self.context
131
125
 
132
126
    def populate(self, req, ctx):
133
 
        if req.method == 'POST':
134
 
            data = dict(req.get_fieldstorage())
135
 
            try:
136
 
                validator = UserAdminSchema()
137
 
                data = validator.to_python(data, state=req)
138
 
 
139
 
                self.context.admin = data['admin']
140
 
                self.context.fullname = data['fullname'] \
141
 
                                        if data['fullname'] else None
142
 
                self.context.studentid = data['studentid'] \
143
 
                                         if data['studentid'] else None
144
 
                req.store.commit()
145
 
                req.throw_redirect(req.uri)
146
 
            except formencode.Invalid, e:
147
 
                errors = e.unpack_errors()
148
 
        else:
149
 
            data = {'admin': self.context.admin,
150
 
                    'fullname': self.context.fullname,
151
 
                    'studentid': self.context.studentid,
152
 
                   }
153
 
            errors = {}
154
 
 
155
 
        ctx['req'] = req
156
 
        ctx['user'] = self.context
157
 
        ctx['data'] = data
158
 
        ctx['errors'] = errors
 
127
        super(UserAdminView, self).populate(req, ctx)
 
128
 
 
129
        # Disable the admin checkbox if editing oneself
 
130
        ctx['disable_admin'] = self.context is req.user
159
131
 
160
132
class PasswordChangeView(XHTMLView):
161
133
    """A form to change a user's password, with knowledge of the old one."""
162
134
    template = 'templates/user-password-change.html'
163
 
    tab = 'settings'
 
135
    tab = 'users'
164
136
    permission = 'edit'
165
137
 
166
138
    def authorize(self, req):
194
166
class PasswordResetView(XHTMLView):
195
167
    """A form to reset a user's password, without knowledge of the old one."""
196
168
    template = 'templates/user-password-reset.html'
197
 
    tab = 'settings'
 
169
    tab = 'users'
198
170
 
199
171
    def authorize(self, req):
200
172
        """Only allow access if the requesting user is an admin."""
201
 
        return req.user.admin
 
173
        return req.user and req.user.admin
202
174
 
203
175
    def populate(self, req, ctx):
204
176
        error = None
216
188
        ctx['user'] = self.context
217
189
        ctx['error'] = error
218
190
 
 
191
 
 
192
class UserNewSchema(formencode.Schema):
 
193
    login = URLNameValidator() # XXX: Validate uniqueness.
 
194
    admin = formencode.validators.StringBoolean(if_missing=False)
 
195
    fullname = formencode.validators.UnicodeString(not_empty=True)
 
196
    studentid = formencode.validators.UnicodeString(not_empty=False,
 
197
                                                    if_missing=None
 
198
                                                    )
 
199
    email = formencode.validators.Email(not_empty=False,
 
200
                                        if_missing=None)
 
201
 
 
202
 
 
203
class UserNewView(BaseFormView):
 
204
    """A form for admins to create new users."""
 
205
    template = 'templates/user-new.html'
 
206
    tab = 'users'
 
207
 
 
208
    def authorize(self, req):
 
209
        """Only allow access if the requesting user is an admin."""
 
210
        return req.user and req.user.admin
 
211
 
 
212
    @property
 
213
    def validator(self):
 
214
        return UserNewSchema()
 
215
 
 
216
    def get_default_data(self, req):
 
217
        return {}
 
218
 
 
219
    def save_object(self, req, data):
 
220
        data['nick'] = data['fullname']
 
221
        data['email'] = unicode(data['email']) if data['email'] else None
 
222
        userobj = User(**data)
 
223
        req.store.add(userobj)
 
224
        enrol_user(req.config, req.store, userobj)
 
225
 
 
226
        return userobj
 
227
 
 
228
 
219
229
class Plugin(ViewPlugin, MediaPlugin):
220
230
    """
221
231
    The Plugin class for the user plugin.
223
233
 
224
234
    forward_routes = (root_to_user,)
225
235
    reverse_routes = (user_url,)
226
 
    views = [(ApplicationRoot, 'users', UsersView),
227
 
             (ivle.database.User, '+index', UserEditView),
228
 
             (ivle.database.User, '+admin', UserAdminView),
229
 
             (ivle.database.User, '+changepassword', PasswordChangeView),
230
 
             (ivle.database.User, '+resetpassword', PasswordResetView),
231
 
             (ivle.database.User, '+index', UserRESTView, 'api'),
 
236
    views = [(ApplicationRoot, ('users', '+index'), UsersView),
 
237
             (ApplicationRoot, ('users', '+new'), UserNewView),
 
238
             (User, '+index', UserEditView),
 
239
             (User, '+admin', UserAdminView),
 
240
             (User, '+changepassword', PasswordChangeView),
 
241
             (User, '+resetpassword', PasswordResetView),
232
242
             ]
233
243
 
 
244
    tabs = [
 
245
        ('users', 'Users', 'Display and edit all users',
 
246
         'users.png', 'users', 90, True)
 
247
    ]
 
248
 
234
249
    public_forward_routes = forward_routes
235
250
    public_reverse_routes = reverse_routes
236
251