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

« back to all changes in this revision

Viewing changes to ivle/database.py

  • Committer: William Grant
  • Date: 2010-07-28 04:13:05 UTC
  • mfrom: (1801.1.2 die-cjson-die)
  • Revision ID: grantw@unimelb.edu.au-20100728041305-xwypm3cn1l1mnki1
Port from cjson to (simple)json.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
import hashlib
27
27
import datetime
28
28
import os
 
29
import urlparse
 
30
import urllib
29
31
 
30
32
from storm.locals import create_database, Store, Int, Unicode, DateTime, \
31
33
                         Reference, ReferenceSet, Bool, Storm, Desc
148
150
            Offering.semester_id == Semester.id,
149
151
            Offering.subject_id == Subject.id).order_by(
150
152
                Desc(Semester.year),
151
 
                Desc(Semester.semester),
 
153
                Desc(Semester.display_name),
152
154
                Desc(Subject.code)
153
155
            )
154
156
 
229
231
        """Find a user in a store by login name."""
230
232
        return store.find(cls, cls.login == unicode(login)).one()
231
233
 
 
234
    def get_svn_url(self, config):
 
235
        """Get the subversion repository URL for this user or group."""
 
236
        url = config['urls']['svn_addr']
 
237
        path = 'users/%s' % self.login
 
238
        return urlparse.urljoin(url, path)
 
239
 
232
240
    def get_permissions(self, user, config):
233
241
        """Determine privileges held by a user over this object.
234
242
 
290
298
        """
291
299
        return self.offerings.find(Offering.semester_id == Semester.id,
292
300
                               Semester.year == unicode(year),
293
 
                               Semester.semester == unicode(semester)).one()
 
301
                               Semester.url_name == unicode(semester)).one()
294
302
 
295
303
class Semester(Storm):
296
304
    """A semester in which subjects can be run."""
299
307
 
300
308
    id = Int(primary=True, name="semesterid")
301
309
    year = Unicode()
302
 
    semester = Unicode()
 
310
    code = Unicode()
 
311
    url_name = Unicode()
 
312
    display_name = Unicode()
303
313
    state = Unicode()
304
314
 
305
315
    offerings = ReferenceSet(id, 'Offering.semester_id')
311
321
    __init__ = _kwarg_init
312
322
 
313
323
    def __repr__(self):
314
 
        return "<%s %s/%s>" % (type(self).__name__, self.year, self.semester)
 
324
        return "<%s %s/%s>" % (type(self).__name__, self.year, self.code)
315
325
 
316
326
class Offering(Storm):
317
327
    """An offering of a subject in a particular semester."""
429
439
        # XXX: Respect extensions.
430
440
        return self.projects.find(Project.deadline > datetime.datetime.now())
431
441
 
 
442
    def has_worksheet_cutoff_passed(self, user):
 
443
        """Check whether the worksheet cutoff has passed.
 
444
        A user is required, in case we support extensions.
 
445
        """
 
446
        if self.worksheet_cutoff is None:
 
447
            return False
 
448
        else:
 
449
            return self.worksheet_cutoff < datetime.datetime.now()
 
450
 
432
451
    def clone_worksheets(self, source):
433
452
        """Clone all worksheets from the specified source to this offering."""
434
453
        import ivle.worksheet.utils
593
612
        return "<%s '%s' in %r>" % (type(self).__name__, self.short_name,
594
613
                                  self.project_set.offering)
595
614
 
596
 
    def can_submit(self, principal, user):
 
615
    def can_submit(self, principal, user, late=False):
 
616
        """
 
617
        @param late: If True, does not take the deadline into account.
 
618
        """
597
619
        return (self in principal.get_projects() and
598
 
                not self.has_deadline_passed(user))
 
620
                (late or not self.has_deadline_passed(user)))
599
621
 
600
 
    def submit(self, principal, path, revision, who):
 
622
    def submit(self, principal, path, revision, who, late=False):
601
623
        """Submit a Subversion path and revision to a project.
602
624
 
603
625
        @param principal: The owner of the Subversion repository, and the
605
627
        @param path: A path within that repository to submit.
606
628
        @param revision: The revision of that path to submit.
607
629
        @param who: The user who is actually making the submission.
 
630
        @param late: If True, will not raise a DeadlinePassed exception even
 
631
            after the deadline. (Default False.)
608
632
        """
609
633
 
610
 
        if not self.can_submit(principal, who):
 
634
        if not self.can_submit(principal, who, late=late):
611
635
            raise DeadlinePassed()
612
636
 
613
637
        a = Assessed.get(Store.of(self), principal, self)
716
740
            Semester.id == Offering.semester_id,
717
741
            (not active_only) or (Semester.state == u'current'))
718
742
 
 
743
    def get_svn_url(self, config):
 
744
        """Get the subversion repository URL for this user or group."""
 
745
        url = config['urls']['svn_addr']
 
746
        path = 'groups/%s_%s_%s_%s' % (
 
747
                self.project_set.offering.subject.short_name,
 
748
                self.project_set.offering.semester.year,
 
749
                self.project_set.offering.semester.url_name,
 
750
                self.name
 
751
                )
 
752
        return urlparse.urljoin(url, path)
719
753
 
720
754
    def get_permissions(self, user, config):
721
755
        if user.admin or user in self.members:
833
867
    id = Int(name="extensionid", primary=True)
834
868
    assessed_id = Int(name="assessedid")
835
869
    assessed = Reference(assessed_id, Assessed.id)
836
 
    deadline = DateTime()
 
870
    days = Int()
837
871
    approver_id = Int(name="approver")
838
872
    approver = Reference(approver_id, User.id)
839
873
    notes = Unicode()
881
915
        return "/files/%s/%s/%s?r=%d" % (user.login,
882
916
            self.assessed.checkout_location, submitpath, self.revision)
883
917
 
 
918
    def get_svn_url(self, config):
 
919
        """Get subversion URL for this submission"""
 
920
        princ = self.assessed.principal
 
921
        base = princ.get_svn_url(config)
 
922
        if self.path.startswith(os.sep):
 
923
            return os.path.join(base,
 
924
                    urllib.quote(self.path[1:].encode('utf-8')))
 
925
        else:
 
926
            return os.path.join(base, urllib.quote(self.path.encode('utf-8')))
 
927
 
 
928
    def get_svn_export_command(self, req):
 
929
        """Returns a Unix shell command to export a submission"""
 
930
        svn_url = self.get_svn_url(req.config)
 
931
        username = (req.user.login if req.user.login.isalnum() else
 
932
                "'%s'"%req.user.login)
 
933
        export_dir = self.assessed.principal.short_name
 
934
        return "svn export --username %s -r%d '%s' %s"%(req.user.login,
 
935
                self.revision, svn_url, export_dir)
 
936
 
884
937
    @staticmethod
885
938
    def test_and_normalise_path(path):
886
939
        """Test that path is valid, and normalise it. This prevents possible
900
953
            raise SubmissionError("Path must not contain '\\n', '[' or ']'")
901
954
        return os.path.normpath(path)
902
955
 
 
956
    @property
 
957
    def late(self):
 
958
        """True if the project was submitted late."""
 
959
        return self.days_late > 0
 
960
 
 
961
    @property
 
962
    def days_late(self):
 
963
        """The number of days the project was submitted late (rounded up), or
 
964
        0 if on-time."""
 
965
        # XXX: Need to respect extensions.
 
966
        return max(0,
 
967
            (self.date_submitted - self.assessed.project.deadline).days + 1)
 
968
 
903
969
# WORKSHEETS AND EXERCISES #
904
970
 
905
971
class Exercise(Storm):