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

« back to all changes in this revision

Viewing changes to ivle/database.py

  • Committer: Matt Giuca
  • Date: 2010-03-05 07:20:43 UTC
  • Revision ID: matt.giuca@gmail.com-20100305072043-kbm4ysw08h610wod
Lecturer project page: Added link to External Subversion access to help lecturers figure out how to get their SVN password.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
import datetime
28
28
import os
29
29
import urlparse
30
 
import urllib
31
30
 
32
31
from storm.locals import create_database, Store, Int, Unicode, DateTime, \
33
32
                         Reference, ReferenceSet, Bool, Storm, Desc
150
149
            Offering.semester_id == Semester.id,
151
150
            Offering.subject_id == Subject.id).order_by(
152
151
                Desc(Semester.year),
153
 
                Desc(Semester.display_name),
 
152
                Desc(Semester.semester),
154
153
                Desc(Subject.code)
155
154
            )
156
155
 
233
232
 
234
233
    def get_svn_url(self, config):
235
234
        """Get the subversion repository URL for this user or group."""
236
 
        url = config['urls']['svn_addr']
237
235
        path = 'users/%s' % self.login
238
 
        return urlparse.urljoin(url, path)
 
236
        return urlparse.urljoin(config['urls']['svn_addr'], path)
239
237
 
240
238
    def get_permissions(self, user, config):
241
239
        """Determine privileges held by a user over this object.
298
296
        """
299
297
        return self.offerings.find(Offering.semester_id == Semester.id,
300
298
                               Semester.year == unicode(year),
301
 
                               Semester.url_name == unicode(semester)).one()
 
299
                               Semester.semester == unicode(semester)).one()
302
300
 
303
301
class Semester(Storm):
304
302
    """A semester in which subjects can be run."""
307
305
 
308
306
    id = Int(primary=True, name="semesterid")
309
307
    year = Unicode()
310
 
    code = Unicode()
311
 
    url_name = Unicode()
312
 
    display_name = Unicode()
 
308
    semester = Unicode()
313
309
    state = Unicode()
314
310
 
315
311
    offerings = ReferenceSet(id, 'Offering.semester_id')
321
317
    __init__ = _kwarg_init
322
318
 
323
319
    def __repr__(self):
324
 
        return "<%s %s/%s>" % (type(self).__name__, self.year, self.code)
 
320
        return "<%s %s/%s>" % (type(self).__name__, self.year, self.semester)
325
321
 
326
322
class Offering(Storm):
327
323
    """An offering of a subject in a particular semester."""
612
608
        return "<%s '%s' in %r>" % (type(self).__name__, self.short_name,
613
609
                                  self.project_set.offering)
614
610
 
615
 
    def can_submit(self, principal, user, late=False):
616
 
        """
617
 
        @param late: If True, does not take the deadline into account.
618
 
        """
 
611
    def can_submit(self, principal, user):
619
612
        return (self in principal.get_projects() and
620
 
                (late or not self.has_deadline_passed(user)))
 
613
                not self.has_deadline_passed(user))
621
614
 
622
 
    def submit(self, principal, path, revision, who, late=False):
 
615
    def submit(self, principal, path, revision, who):
623
616
        """Submit a Subversion path and revision to a project.
624
617
 
625
618
        @param principal: The owner of the Subversion repository, and the
627
620
        @param path: A path within that repository to submit.
628
621
        @param revision: The revision of that path to submit.
629
622
        @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.)
632
623
        """
633
624
 
634
 
        if not self.can_submit(principal, who, late=late):
 
625
        if not self.can_submit(principal, who):
635
626
            raise DeadlinePassed()
636
627
 
637
628
        a = Assessed.get(Store.of(self), principal, self)
742
733
 
743
734
    def get_svn_url(self, config):
744
735
        """Get the subversion repository URL for this user or group."""
745
 
        url = config['urls']['svn_addr']
746
736
        path = 'groups/%s_%s_%s_%s' % (
747
737
                self.project_set.offering.subject.short_name,
748
738
                self.project_set.offering.semester.year,
749
 
                self.project_set.offering.semester.url_name,
 
739
                self.project_set.offering.semester.semester,
750
740
                self.name
751
741
                )
752
 
        return urlparse.urljoin(url, path)
 
742
        return urlparse.urljoin(config['urls']['svn_addr'], path)
753
743
 
754
744
    def get_permissions(self, user, config):
755
745
        if user.admin or user in self.members:
867
857
    id = Int(name="extensionid", primary=True)
868
858
    assessed_id = Int(name="assessedid")
869
859
    assessed = Reference(assessed_id, Assessed.id)
870
 
    days = Int()
 
860
    deadline = DateTime()
871
861
    approver_id = Int(name="approver")
872
862
    approver = Reference(approver_id, User.id)
873
863
    notes = Unicode()
915
905
        return "/files/%s/%s/%s?r=%d" % (user.login,
916
906
            self.assessed.checkout_location, submitpath, self.revision)
917
907
 
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
 
 
937
908
    @staticmethod
938
909
    def test_and_normalise_path(path):
939
910
        """Test that path is valid, and normalise it. This prevents possible
953
924
            raise SubmissionError("Path must not contain '\\n', '[' or ']'")
954
925
        return os.path.normpath(path)
955
926
 
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
 
 
969
927
# WORKSHEETS AND EXERCISES #
970
928
 
971
929
class Exercise(Storm):