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

« back to all changes in this revision

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

  • Committer: Matt Giuca
  • Date: 2010-02-25 01:53:19 UTC
  • Revision ID: matt.giuca@gmail.com-20100225015319-7j0oounlhi1bj6fp
Fixed broken console, due to function called with not enough arguments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
import urlparse
29
29
import cgi
30
30
 
31
 
from storm.locals import Desc
 
31
from storm.locals import Desc, Store
32
32
import genshi
33
33
from genshi.filters import HTMLFormFiller
34
34
from genshi.template import Context, TemplateLoader
35
35
import formencode
 
36
import formencode.validators
36
37
 
 
38
from ivle.webapp.base.forms import BaseFormView, URLNameValidator
 
39
from ivle.webapp.base.plugins import ViewPlugin, MediaPlugin
37
40
from ivle.webapp.base.xhtml import XHTMLView
38
 
from ivle.webapp.base.plugins import ViewPlugin, MediaPlugin
39
 
from ivle.webapp.errors import NotFound
 
41
from ivle.webapp.errors import BadRequest
 
42
from ivle.webapp import ApplicationRoot
40
43
 
41
44
from ivle.database import Subject, Semester, Offering, Enrolment, User,\
42
45
                          ProjectSet, Project, ProjectSubmission
43
46
from ivle import util
44
47
import ivle.date
45
48
 
46
 
from ivle.webapp.admin.projectservice import ProjectSetRESTView,\
47
 
                                             ProjectRESTView
 
49
from ivle.webapp.admin.projectservice import ProjectSetRESTView
48
50
from ivle.webapp.admin.offeringservice import OfferingRESTView
49
 
 
 
51
from ivle.webapp.admin.publishing import (root_to_subject, root_to_semester,
 
52
            subject_to_offering, offering_to_projectset, offering_to_project,
 
53
            offering_to_enrolment, subject_url, semester_url, offering_url,
 
54
            projectset_url, project_url, enrolment_url)
 
55
from ivle.webapp.admin.breadcrumbs import (SubjectBreadcrumb,
 
56
            OfferingBreadcrumb, UserBreadcrumb, ProjectBreadcrumb,
 
57
            EnrolmentBreadcrumb)
 
58
from ivle.webapp.core import Plugin as CorePlugin
 
59
from ivle.webapp.groups import GroupsView
 
60
from ivle.webapp.media import media_url
 
61
from ivle.webapp.tutorial import Plugin as TutorialPlugin
50
62
 
51
63
class SubjectsView(XHTMLView):
52
64
    '''The view of the list of subjects.'''
53
65
    template = 'templates/subjects.html'
54
66
    tab = 'subjects'
 
67
    breadcrumb_text = "Subjects"
55
68
 
56
69
    def authorize(self, req):
57
70
        return req.user is not None
58
71
 
59
72
    def populate(self, req, ctx):
 
73
        ctx['req'] = req
60
74
        ctx['user'] = req.user
61
75
        ctx['semesters'] = []
 
76
 
62
77
        for semester in req.store.find(Semester).order_by(Desc(Semester.year),
63
78
                                                     Desc(Semester.semester)):
64
 
            enrolments = semester.enrolments.find(user=req.user)
65
 
            if enrolments.count():
66
 
                ctx['semesters'].append((semester, enrolments))
 
79
            if req.user.admin:
 
80
                # For admins, show all subjects in the system
 
81
                offerings = list(semester.offerings.find())
 
82
            else:
 
83
                offerings = [enrolment.offering for enrolment in
 
84
                                    semester.enrolments.find(user=req.user)]
 
85
            if len(offerings):
 
86
                ctx['semesters'].append((semester, offerings))
 
87
 
 
88
 
 
89
class SubjectsManage(XHTMLView):
 
90
    '''Subject management view.'''
 
91
    template = 'templates/subjects-manage.html'
 
92
    tab = 'subjects'
 
93
 
 
94
    def authorize(self, req):
 
95
        return req.user is not None and req.user.admin
 
96
 
 
97
    def populate(self, req, ctx):
 
98
        ctx['req'] = req
 
99
        ctx['mediapath'] = media_url(req, CorePlugin, 'images/')
 
100
        ctx['SubjectView'] = SubjectView
 
101
        ctx['SubjectEdit'] = SubjectEdit
 
102
        ctx['SemesterEdit'] = SemesterEdit
 
103
 
 
104
        ctx['subjects'] = req.store.find(Subject).order_by(Subject.name)
 
105
        ctx['semesters'] = req.store.find(Semester).order_by(
 
106
            Semester.year, Semester.semester)
 
107
 
 
108
 
 
109
class SubjectShortNameUniquenessValidator(formencode.FancyValidator):
 
110
    """A FormEncode validator that checks that a subject name is unused.
 
111
 
 
112
    The subject referenced by state.existing_subject is permitted
 
113
    to hold that name. If any other object holds it, the input is rejected.
 
114
    """
 
115
    def __init__(self, matching=None):
 
116
        self.matching = matching
 
117
 
 
118
    def _to_python(self, value, state):
 
119
        if (state.store.find(
 
120
                Subject, short_name=value).one() not in
 
121
                (None, state.existing_subject)):
 
122
            raise formencode.Invalid(
 
123
                'Short name already taken', value, state)
 
124
        return value
 
125
 
 
126
 
 
127
class SubjectSchema(formencode.Schema):
 
128
    short_name = formencode.All(
 
129
        SubjectShortNameUniquenessValidator(),
 
130
        URLNameValidator(not_empty=True))
 
131
    name = formencode.validators.UnicodeString(not_empty=True)
 
132
    code = formencode.validators.UnicodeString(not_empty=True)
 
133
 
 
134
 
 
135
class SubjectFormView(BaseFormView):
 
136
    """An abstract form to add or edit a subject."""
 
137
    tab = 'subjects'
 
138
 
 
139
    def authorize(self, req):
 
140
        return req.user is not None and req.user.admin
 
141
 
 
142
    def populate_state(self, state):
 
143
        state.existing_subject = None
 
144
 
 
145
    @property
 
146
    def validator(self):
 
147
        return SubjectSchema()
 
148
 
 
149
 
 
150
class SubjectNew(SubjectFormView):
 
151
    """A form to create a subject."""
 
152
    template = 'templates/subject-new.html'
 
153
 
 
154
    def get_default_data(self, req):
 
155
        return {}
 
156
 
 
157
    def save_object(self, req, data):
 
158
        new_subject = Subject()
 
159
        new_subject.short_name = data['short_name']
 
160
        new_subject.name = data['name']
 
161
        new_subject.code = data['code']
 
162
 
 
163
        req.store.add(new_subject)
 
164
        return new_subject
 
165
 
 
166
 
 
167
class SubjectEdit(SubjectFormView):
 
168
    """A form to edit a subject."""
 
169
    template = 'templates/subject-edit.html'
 
170
 
 
171
    def populate_state(self, state):
 
172
        state.existing_subject = self.context
 
173
 
 
174
    def get_default_data(self, req):
 
175
        return {
 
176
            'short_name': self.context.short_name,
 
177
            'name': self.context.name,
 
178
            'code': self.context.code,
 
179
            }
 
180
 
 
181
    def save_object(self, req, data):
 
182
        self.context.short_name = data['short_name']
 
183
        self.context.name = data['name']
 
184
        self.context.code = data['code']
 
185
 
 
186
        return self.context
 
187
 
 
188
 
 
189
class SemesterUniquenessValidator(formencode.FancyValidator):
 
190
    """A FormEncode validator that checks that a semester is unique.
 
191
 
 
192
    There cannot be more than one semester for the same year and semester.
 
193
    """
 
194
    def _to_python(self, value, state):
 
195
        if (state.store.find(
 
196
                Semester, year=value['year'], semester=value['semester']
 
197
                ).one() not in (None, state.existing_semester)):
 
198
            raise formencode.Invalid(
 
199
                'Semester already exists', value, state)
 
200
        return value
 
201
 
 
202
 
 
203
class SemesterSchema(formencode.Schema):
 
204
    year = URLNameValidator()
 
205
    semester = URLNameValidator()
 
206
    state = formencode.All(
 
207
        formencode.validators.OneOf(["past", "current", "future"]),
 
208
        formencode.validators.UnicodeString())
 
209
    chained_validators = [SemesterUniquenessValidator()]
 
210
 
 
211
 
 
212
class SemesterFormView(BaseFormView):
 
213
    tab = 'subjects'
 
214
 
 
215
    def authorize(self, req):
 
216
        return req.user is not None and req.user.admin
 
217
 
 
218
    @property
 
219
    def validator(self):
 
220
        return SemesterSchema()
 
221
 
 
222
    def get_return_url(self, obj):
 
223
        return '/subjects/+manage'
 
224
 
 
225
 
 
226
class SemesterNew(SemesterFormView):
 
227
    """A form to create a semester."""
 
228
    template = 'templates/semester-new.html'
 
229
    tab = 'subjects'
 
230
 
 
231
    def populate_state(self, state):
 
232
        state.existing_semester = None
 
233
 
 
234
    def get_default_data(self, req):
 
235
        return {}
 
236
 
 
237
    def save_object(self, req, data):
 
238
        new_semester = Semester()
 
239
        new_semester.year = data['year']
 
240
        new_semester.semester = data['semester']
 
241
        new_semester.state = data['state']
 
242
 
 
243
        req.store.add(new_semester)
 
244
        return new_semester
 
245
 
 
246
 
 
247
class SemesterEdit(SemesterFormView):
 
248
    """A form to edit a semester."""
 
249
    template = 'templates/semester-edit.html'
 
250
 
 
251
    def populate_state(self, state):
 
252
        state.existing_semester = self.context
 
253
 
 
254
    def get_default_data(self, req):
 
255
        return {
 
256
            'year': self.context.year,
 
257
            'semester': self.context.semester,
 
258
            'state': self.context.state,
 
259
            }
 
260
 
 
261
    def save_object(self, req, data):
 
262
        self.context.year = data['year']
 
263
        self.context.semester = data['semester']
 
264
        self.context.state = data['state']
 
265
 
 
266
        return self.context
 
267
 
 
268
class SubjectView(XHTMLView):
 
269
    '''The view of the list of offerings in a given subject.'''
 
270
    template = 'templates/subject.html'
 
271
    tab = 'subjects'
 
272
 
 
273
    def authorize(self, req):
 
274
        return req.user is not None
 
275
 
 
276
    def populate(self, req, ctx):
 
277
        ctx['context'] = self.context
 
278
        ctx['req'] = req
 
279
        ctx['user'] = req.user
 
280
        ctx['offerings'] = list(self.context.offerings)
 
281
        ctx['permissions'] = self.context.get_permissions(req.user,req.config)
 
282
        ctx['SubjectEdit'] = SubjectEdit
 
283
        ctx['SubjectOfferingNew'] = SubjectOfferingNew
 
284
 
 
285
 
 
286
class OfferingView(XHTMLView):
 
287
    """The home page of an offering."""
 
288
    template = 'templates/offering.html'
 
289
    tab = 'subjects'
 
290
    permission = 'view'
 
291
 
 
292
    def populate(self, req, ctx):
 
293
        # Need the worksheet result styles.
 
294
        self.plugin_styles[TutorialPlugin] = ['tutorial.css']
 
295
        ctx['context'] = self.context
 
296
        ctx['req'] = req
 
297
        ctx['permissions'] = self.context.get_permissions(req.user,req.config)
 
298
        ctx['format_submission_principal'] = util.format_submission_principal
 
299
        ctx['format_datetime'] = ivle.date.make_date_nice
 
300
        ctx['format_datetime_short'] = ivle.date.format_datetime_for_paragraph
 
301
        ctx['OfferingEdit'] = OfferingEdit
 
302
        ctx['OfferingCloneWorksheets'] = OfferingCloneWorksheets
 
303
        ctx['GroupsView'] = GroupsView
 
304
        ctx['EnrolmentsView'] = EnrolmentsView
 
305
 
 
306
        # As we go, calculate the total score for this subject
 
307
        # (Assessable worksheets only, mandatory problems only)
 
308
 
 
309
        ctx['worksheets'], problems_total, problems_done = (
 
310
            ivle.worksheet.utils.create_list_of_fake_worksheets_and_stats(
 
311
                req.config, req.store, req.user, self.context))
 
312
 
 
313
        ctx['exercises_total'] = problems_total
 
314
        ctx['exercises_done'] = problems_done
 
315
        if problems_total > 0:
 
316
            if problems_done >= problems_total:
 
317
                ctx['worksheets_complete_class'] = "complete"
 
318
            elif problems_done > 0:
 
319
                ctx['worksheets_complete_class'] = "semicomplete"
 
320
            else:
 
321
                ctx['worksheets_complete_class'] = "incomplete"
 
322
            # Calculate the final percentage and mark for the subject
 
323
            (ctx['exercises_pct'], ctx['worksheet_mark'],
 
324
             ctx['worksheet_max_mark']) = (
 
325
                ivle.worksheet.utils.calculate_mark(
 
326
                    problems_done, problems_total))
 
327
 
 
328
 
 
329
class SubjectValidator(formencode.FancyValidator):
 
330
    """A FormEncode validator that turns a subject name into a subject.
 
331
 
 
332
    The state must have a 'store' attribute, which is the Storm store
 
333
    to use.
 
334
    """
 
335
    def _to_python(self, value, state):
 
336
        subject = state.store.find(Subject, short_name=value).one()
 
337
        if subject:
 
338
            return subject
 
339
        else:
 
340
            raise formencode.Invalid('Subject does not exist', value, state)
 
341
 
 
342
 
 
343
class SemesterValidator(formencode.FancyValidator):
 
344
    """A FormEncode validator that turns a string into a semester.
 
345
 
 
346
    The string should be of the form 'year/semester', eg. '2009/1'.
 
347
 
 
348
    The state must have a 'store' attribute, which is the Storm store
 
349
    to use.
 
350
    """
 
351
    def _to_python(self, value, state):
 
352
        try:
 
353
            year, semester = value.split('/')
 
354
        except ValueError:
 
355
            year = semester = None
 
356
 
 
357
        semester = state.store.find(
 
358
            Semester, year=year, semester=semester).one()
 
359
        if semester:
 
360
            return semester
 
361
        else:
 
362
            raise formencode.Invalid('Semester does not exist', value, state)
 
363
 
 
364
 
 
365
class OfferingUniquenessValidator(formencode.FancyValidator):
 
366
    """A FormEncode validator that checks that an offering is unique.
 
367
 
 
368
    There cannot be more than one offering in the same year and semester.
 
369
 
 
370
    The offering referenced by state.existing_offering is permitted to
 
371
    hold that year and semester tuple. If any other object holds it, the
 
372
    input is rejected.
 
373
    """
 
374
    def _to_python(self, value, state):
 
375
        if (state.store.find(
 
376
                Offering, subject=value['subject'],
 
377
                semester=value['semester']).one() not in
 
378
                (None, state.existing_offering)):
 
379
            raise formencode.Invalid(
 
380
                'Offering already exists', value, state)
 
381
        return value
 
382
 
 
383
 
 
384
class OfferingSchema(formencode.Schema):
 
385
    description = formencode.validators.UnicodeString(
 
386
        if_missing=None, not_empty=False)
 
387
    url = formencode.validators.URL(if_missing=None, not_empty=False)
 
388
    show_worksheet_marks = formencode.validators.StringBoolean(
 
389
        if_missing=False)
 
390
 
 
391
 
 
392
class OfferingAdminSchema(OfferingSchema):
 
393
    subject = formencode.All(
 
394
        SubjectValidator(), formencode.validators.UnicodeString())
 
395
    semester = formencode.All(
 
396
        SemesterValidator(), formencode.validators.UnicodeString())
 
397
    chained_validators = [OfferingUniquenessValidator()]
 
398
 
 
399
 
 
400
class OfferingEdit(BaseFormView):
 
401
    """A form to edit an offering's details."""
 
402
    template = 'templates/offering-edit.html'
 
403
    tab = 'subjects'
 
404
    permission = 'edit'
 
405
 
 
406
    @property
 
407
    def validator(self):
 
408
        if self.req.user.admin:
 
409
            return OfferingAdminSchema()
 
410
        else:
 
411
            return OfferingSchema()
 
412
 
 
413
    def populate(self, req, ctx):
 
414
        super(OfferingEdit, self).populate(req, ctx)
 
415
        ctx['subjects'] = req.store.find(Subject).order_by(Subject.name)
 
416
        ctx['semesters'] = req.store.find(Semester).order_by(
 
417
            Semester.year, Semester.semester)
 
418
        ctx['force_subject'] = None
 
419
 
 
420
    def populate_state(self, state):
 
421
        state.existing_offering = self.context
 
422
 
 
423
    def get_default_data(self, req):
 
424
        return {
 
425
            'subject': self.context.subject.short_name,
 
426
            'semester': self.context.semester.year + '/' +
 
427
                        self.context.semester.semester,
 
428
            'url': self.context.url,
 
429
            'description': self.context.description,
 
430
            'show_worksheet_marks': self.context.show_worksheet_marks,
 
431
            }
 
432
 
 
433
    def save_object(self, req, data):
 
434
        if req.user.admin:
 
435
            self.context.subject = data['subject']
 
436
            self.context.semester = data['semester']
 
437
        self.context.description = data['description']
 
438
        self.context.url = unicode(data['url']) if data['url'] else None
 
439
        self.context.show_worksheet_marks = data['show_worksheet_marks']
 
440
        return self.context
 
441
 
 
442
 
 
443
class OfferingNew(BaseFormView):
 
444
    """A form to create an offering."""
 
445
    template = 'templates/offering-new.html'
 
446
    tab = 'subjects'
 
447
 
 
448
    def authorize(self, req):
 
449
        return req.user is not None and req.user.admin
 
450
 
 
451
    @property
 
452
    def validator(self):
 
453
        return OfferingAdminSchema()
 
454
 
 
455
    def populate(self, req, ctx):
 
456
        super(OfferingNew, self).populate(req, ctx)
 
457
        ctx['subjects'] = req.store.find(Subject).order_by(Subject.name)
 
458
        ctx['semesters'] = req.store.find(Semester).order_by(
 
459
            Semester.year, Semester.semester)
 
460
        ctx['force_subject'] = None
 
461
 
 
462
    def populate_state(self, state):
 
463
        state.existing_offering = None
 
464
 
 
465
    def get_default_data(self, req):
 
466
        return {}
 
467
 
 
468
    def save_object(self, req, data):
 
469
        new_offering = Offering()
 
470
        new_offering.subject = data['subject']
 
471
        new_offering.semester = data['semester']
 
472
        new_offering.description = data['description']
 
473
        new_offering.url = unicode(data['url']) if data['url'] else None
 
474
        new_offering.show_worksheet_marks = data['show_worksheet_marks']
 
475
 
 
476
        req.store.add(new_offering)
 
477
        return new_offering
 
478
 
 
479
class SubjectOfferingNew(OfferingNew):
 
480
    """A form to create an offering for a given subject."""
 
481
    # Identical to OfferingNew, except it forces the subject to be the subject
 
482
    # in context
 
483
    def populate(self, req, ctx):
 
484
        super(SubjectOfferingNew, self).populate(req, ctx)
 
485
        ctx['force_subject'] = self.context
 
486
 
 
487
class OfferingCloneWorksheetsSchema(formencode.Schema):
 
488
    subject = formencode.All(
 
489
        SubjectValidator(), formencode.validators.UnicodeString())
 
490
    semester = formencode.All(
 
491
        SemesterValidator(), formencode.validators.UnicodeString())
 
492
 
 
493
 
 
494
class OfferingCloneWorksheets(BaseFormView):
 
495
    """A form to clone worksheets from one offering to another."""
 
496
    template = 'templates/offering-clone-worksheets.html'
 
497
    tab = 'subjects'
 
498
 
 
499
    def authorize(self, req):
 
500
        return req.user is not None and req.user.admin
 
501
 
 
502
    @property
 
503
    def validator(self):
 
504
        return OfferingCloneWorksheetsSchema()
 
505
 
 
506
    def populate(self, req, ctx):
 
507
        super(OfferingCloneWorksheets, self).populate(req, ctx)
 
508
        ctx['subjects'] = req.store.find(Subject).order_by(Subject.name)
 
509
        ctx['semesters'] = req.store.find(Semester).order_by(
 
510
            Semester.year, Semester.semester)
 
511
 
 
512
    def get_default_data(self, req):
 
513
        return {}
 
514
 
 
515
    def save_object(self, req, data):
 
516
        if self.context.worksheets.count() > 0:
 
517
            raise BadRequest(
 
518
                "Cannot clone to target with existing worksheets.")
 
519
        offering = req.store.find(
 
520
            Offering, subject=data['subject'], semester=data['semester']).one()
 
521
        if offering is None:
 
522
            raise BadRequest("No such offering.")
 
523
        if offering.worksheets.count() == 0:
 
524
            raise BadRequest("Source offering has no worksheets.")
 
525
 
 
526
        self.context.clone_worksheets(offering)
 
527
        return self.context
67
528
 
68
529
 
69
530
class UserValidator(formencode.FancyValidator):
90
551
        return value
91
552
 
92
553
 
 
554
class RoleEnrolmentValidator(formencode.FancyValidator):
 
555
    """A FormEncode validator that checks permission to enrol users with a
 
556
    particular role.
 
557
 
 
558
    The state must have an 'offering' attribute.
 
559
    """
 
560
    def _to_python(self, value, state):
 
561
        if (("enrol_" + value) not in
 
562
                state.offering.get_permissions(state.user, state.config)):
 
563
            raise formencode.Invalid('Not allowed to assign users that role',
 
564
                                     value, state)
 
565
        return value
 
566
 
 
567
 
93
568
class EnrolSchema(formencode.Schema):
94
569
    user = formencode.All(NoEnrolmentValidator(), UserValidator())
 
570
    role = formencode.All(formencode.validators.OneOf(
 
571
                                ["lecturer", "tutor", "student"]),
 
572
                          RoleEnrolmentValidator(),
 
573
                          formencode.validators.UnicodeString())
 
574
 
 
575
 
 
576
class EnrolmentsView(XHTMLView):
 
577
    """A page which displays all users enrolled in an offering."""
 
578
    template = 'templates/enrolments.html'
 
579
    tab = 'subjects'
 
580
    permission = 'edit'
 
581
    breadcrumb_text = 'Enrolments'
 
582
 
 
583
    def populate(self, req, ctx):
 
584
        ctx['req'] = req
 
585
        ctx['offering'] = self.context
 
586
        ctx['mediapath'] = media_url(req, CorePlugin, 'images/')
 
587
        ctx['offering_perms'] = self.context.get_permissions(
 
588
            req.user, req.config)
 
589
        ctx['EnrolView'] = EnrolView
 
590
        ctx['EnrolmentEdit'] = EnrolmentEdit
 
591
        ctx['EnrolmentDelete'] = EnrolmentDelete
95
592
 
96
593
 
97
594
class EnrolView(XHTMLView):
98
595
    """A form to enrol a user in an offering."""
99
596
    template = 'templates/enrol.html'
100
597
    tab = 'subjects'
101
 
    permission = 'edit'
102
 
 
103
 
    def __init__(self, req, subject, year, semester):
104
 
        """Find the given offering by subject, year and semester."""
105
 
        self.context = req.store.find(Offering,
106
 
            Offering.subject_id == Subject.id,
107
 
            Subject.short_name == subject,
108
 
            Offering.semester_id == Semester.id,
109
 
            Semester.year == year,
110
 
            Semester.semester == semester).one()
111
 
 
112
 
        if not self.context:
113
 
            raise NotFound()
 
598
    permission = 'enrol'
114
599
 
115
600
    def filter(self, stream, ctx):
116
601
        return stream | HTMLFormFiller(data=ctx['data'])
122
607
                validator = EnrolSchema()
123
608
                req.offering = self.context # XXX: Getting into state.
124
609
                data = validator.to_python(data, state=req)
125
 
                self.context.enrol(data['user'])
 
610
                self.context.enrol(data['user'], data['role'])
126
611
                req.store.commit()
127
612
                req.throw_redirect(req.uri)
128
613
            except formencode.Invalid, e:
133
618
 
134
619
        ctx['data'] = data or {}
135
620
        ctx['offering'] = self.context
 
621
        ctx['roles_auth'] = self.context.get_permissions(req.user, req.config)
136
622
        ctx['errors'] = errors
 
623
        # If all of the fields validated, set the global form error.
 
624
        if isinstance(errors, basestring):
 
625
            ctx['error_value'] = errors
 
626
 
 
627
 
 
628
class EnrolmentEditSchema(formencode.Schema):
 
629
    role = formencode.All(formencode.validators.OneOf(
 
630
                                ["lecturer", "tutor", "student"]),
 
631
                          RoleEnrolmentValidator(),
 
632
                          formencode.validators.UnicodeString())
 
633
 
 
634
 
 
635
class EnrolmentEdit(BaseFormView):
 
636
    """A form to alter an enrolment's role."""
 
637
    template = 'templates/enrolment-edit.html'
 
638
    tab = 'subjects'
 
639
    permission = 'edit'
 
640
 
 
641
    def populate_state(self, state):
 
642
        state.offering = self.context.offering
 
643
 
 
644
    def get_default_data(self, req):
 
645
        return {'role': self.context.role}
 
646
 
 
647
    @property
 
648
    def validator(self):
 
649
        return EnrolmentEditSchema()
 
650
 
 
651
    def save_object(self, req, data):
 
652
        self.context.role = data['role']
 
653
 
 
654
    def get_return_url(self, obj):
 
655
        return self.req.publisher.generate(
 
656
            self.context.offering, EnrolmentsView)
 
657
 
 
658
    def populate(self, req, ctx):
 
659
        super(EnrolmentEdit, self).populate(req, ctx)
 
660
        ctx['offering_perms'] = self.context.offering.get_permissions(
 
661
            req.user, req.config)
 
662
 
 
663
 
 
664
class EnrolmentDelete(XHTMLView):
 
665
    """A form to alter an enrolment's role."""
 
666
    template = 'templates/enrolment-delete.html'
 
667
    tab = 'subjects'
 
668
    permission = 'edit'
 
669
 
 
670
    def populate(self, req, ctx):
 
671
        # If POSTing, delete delete delete.
 
672
        if req.method == 'POST':
 
673
            self.context.delete()
 
674
            req.store.commit()
 
675
            req.throw_redirect(req.publisher.generate(
 
676
                self.context.offering, EnrolmentsView))
 
677
 
 
678
        ctx['enrolment'] = self.context
 
679
 
137
680
 
138
681
class OfferingProjectsView(XHTMLView):
139
682
    """View the projects for an offering."""
140
683
    template = 'templates/offering_projects.html'
141
684
    permission = 'edit'
142
685
    tab = 'subjects'
143
 
    
144
 
    def __init__(self, req, subject, year, semester):
145
 
        self.context = req.store.find(Offering,
146
 
            Offering.subject_id == Subject.id,
147
 
            Subject.short_name == subject,
148
 
            Offering.semester_id == Semester.id,
149
 
            Semester.year == year,
150
 
            Semester.semester == semester).one()
151
 
 
152
 
        if not self.context:
153
 
            raise NotFound()
154
 
 
155
 
    def project_url(self, projectset, project):
156
 
        return "/subjects/%s/%s/%s/+projects/%s" % (
157
 
                    self.context.subject.short_name,
158
 
                    self.context.semester.year,
159
 
                    self.context.semester.semester,
160
 
                    project.short_name
161
 
                    )
162
 
 
163
 
    def new_project_url(self, projectset):
164
 
        return "/api/subjects/" + self.context.subject.short_name + "/" +\
165
 
                self.context.semester.year + "/" + \
166
 
                self.context.semester.semester + "/+projectsets/" +\
167
 
                str(projectset.id) + "/+projects/+new"
168
 
    
 
686
    breadcrumb_text = 'Projects'
 
687
 
169
688
    def populate(self, req, ctx):
170
689
        self.plugin_styles[Plugin] = ["project.css"]
171
690
        self.plugin_scripts[Plugin] = ["project.js"]
 
691
        ctx['req'] = req
172
692
        ctx['offering'] = self.context
173
693
        ctx['projectsets'] = []
 
694
        ctx['OfferingRESTView'] = OfferingRESTView
174
695
 
175
696
        #Open the projectset Fragment, and render it for inclusion
176
697
        #into the ProjectSets page
185
706
        for projectset in self.context.project_sets:
186
707
            settmpl = loader.load(set_fragment)
187
708
            setCtx = Context()
 
709
            setCtx['req'] = req
188
710
            setCtx['projectset'] = projectset
189
 
            setCtx['new_project_url'] = self.new_project_url(projectset)
190
711
            setCtx['projects'] = []
 
712
            setCtx['GroupsView'] = GroupsView
 
713
            setCtx['ProjectSetRESTView'] = ProjectSetRESTView
191
714
 
192
715
            for project in projectset.projects:
193
716
                projecttmpl = loader.load(project_fragment)
194
717
                projectCtx = Context()
 
718
                projectCtx['req'] = req
195
719
                projectCtx['project'] = project
196
 
                projectCtx['project_url'] = self.project_url(projectset, project)
197
720
 
198
721
                setCtx['projects'].append(
199
722
                        projecttmpl.generate(projectCtx))
204
727
class ProjectView(XHTMLView):
205
728
    """View the submissions for a ProjectSet"""
206
729
    template = "templates/project.html"
207
 
    permission = "edit"
 
730
    permission = "view_project_submissions"
208
731
    tab = 'subjects'
209
732
 
210
 
    def __init__(self, req, subject, year, semester, project):
211
 
        self.context = req.store.find(Project,
212
 
                Project.short_name == project,
213
 
                Project.project_set_id == ProjectSet.id,
214
 
                ProjectSet.offering_id == Offering.id,
215
 
                Offering.semester_id == Semester.id,
216
 
                Semester.year == year,
217
 
                Semester.semester == semester,
218
 
                Offering.subject_id == Subject.id,
219
 
                Subject.short_name == subject).one()
220
 
        if self.context is None:
221
 
            raise NotFound()
222
 
 
223
733
    def build_subversion_url(self, svnroot, submission):
224
734
        princ = submission.assessed.principal
225
735
 
241
751
    def populate(self, req, ctx):
242
752
        self.plugin_styles[Plugin] = ["project.css"]
243
753
 
 
754
        ctx['req'] = req
 
755
        ctx['GroupsView'] = GroupsView
 
756
        ctx['EnrolView'] = EnrolView
244
757
        ctx['format_datetime_short'] = ivle.date.format_datetime_for_paragraph
245
758
        ctx['build_subversion_url'] = self.build_subversion_url
246
759
        ctx['svn_addr'] = req.config['urls']['svn_addr']
248
761
        ctx['user'] = req.user
249
762
 
250
763
class Plugin(ViewPlugin, MediaPlugin):
251
 
    urls = [
252
 
        ('subjects/', SubjectsView),
253
 
        ('subjects/:subject/:year/:semester/+enrolments/+new', EnrolView),
254
 
        ('subjects/:subject/:year/:semester/+projects', OfferingProjectsView),
255
 
        ('subjects/:subject/:year/:semester/+projects/:project', ProjectView),
256
 
        #API Views
257
 
        ('api/subjects/:subject/:year/:semester/+projectsets/+new',
258
 
            OfferingRESTView),
259
 
        ('api/subjects/:subject/:year/:semester/+projectsets/:projectset/+projects/+new',
260
 
            ProjectSetRESTView),
261
 
        ('api/subjects/:subject/:year/:semester/+projects/:project', 
262
 
            ProjectRESTView),
263
 
 
264
 
    ]
 
764
    forward_routes = (root_to_subject, root_to_semester, subject_to_offering,
 
765
                      offering_to_project, offering_to_projectset,
 
766
                      offering_to_enrolment)
 
767
    reverse_routes = (
 
768
        subject_url, semester_url, offering_url, projectset_url, project_url,
 
769
        enrolment_url)
 
770
 
 
771
    views = [(ApplicationRoot, ('subjects', '+index'), SubjectsView),
 
772
             (ApplicationRoot, ('subjects', '+manage'), SubjectsManage),
 
773
             (ApplicationRoot, ('subjects', '+new'), SubjectNew),
 
774
             (ApplicationRoot, ('subjects', '+new-offering'), OfferingNew),
 
775
             (ApplicationRoot, ('+semesters', '+new'), SemesterNew),
 
776
             (Subject, '+index', SubjectView),
 
777
             (Subject, '+edit', SubjectEdit),
 
778
             (Subject, '+new-offering', SubjectOfferingNew),
 
779
             (Semester, '+edit', SemesterEdit),
 
780
             (Offering, '+index', OfferingView),
 
781
             (Offering, '+edit', OfferingEdit),
 
782
             (Offering, '+clone-worksheets', OfferingCloneWorksheets),
 
783
             (Offering, ('+enrolments', '+index'), EnrolmentsView),
 
784
             (Offering, ('+enrolments', '+new'), EnrolView),
 
785
             (Enrolment, '+edit', EnrolmentEdit),
 
786
             (Enrolment, '+delete', EnrolmentDelete),
 
787
             (Offering, ('+projects', '+index'), OfferingProjectsView),
 
788
             (Project, '+index', ProjectView),
 
789
 
 
790
             (Offering, ('+projectsets', '+new'), OfferingRESTView, 'api'),
 
791
             (ProjectSet, ('+projects', '+new'), ProjectSetRESTView, 'api'),
 
792
             ]
 
793
 
 
794
    breadcrumbs = {Subject: SubjectBreadcrumb,
 
795
                   Offering: OfferingBreadcrumb,
 
796
                   User: UserBreadcrumb,
 
797
                   Project: ProjectBreadcrumb,
 
798
                   Enrolment: EnrolmentBreadcrumb,
 
799
                   }
265
800
 
266
801
    tabs = [
267
802
        ('subjects', 'Subjects',