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

1080.1.2 by matt.giuca
New module: ivle.database. Classes and utilities for Storm ORM.
1
# IVLE - Informatics Virtual Learning Environment
2
# Copyright (C) 2007-2009 The University of Melbourne
3
#
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; either version 2 of the License, or
7
# (at your option) any later version.
8
#
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
# GNU General Public License for more details.
13
#
14
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
18
# Author: Matt Giuca, Will Grant
19
20
"""
21
Database Classes and Utilities for Storm ORM
22
23
This module provides all of the classes which map to database tables.
24
It also provides miscellaneous utility functions for database interaction.
25
"""
26
1080.1.13 by me at id
ivle.database.User: Add an authenticate() method, and a hash_password()
27
import md5
1080.1.15 by me at id
Give ivle.database.User {password,account}_expired attributes, and get
28
import datetime
1080.1.13 by me at id
ivle.database.User: Add an authenticate() method, and a hash_password()
29
1080.1.4 by matt.giuca
ivle.database: Added User class.
30
from storm.locals import create_database, Store, Int, Unicode, DateTime, \
1080.1.27 by me at id
ivle.database.User: Add an 'active_enrolments' property, which returns a list
31
                         Reference, ReferenceSet, Bool, Storm, Desc
1080.1.2 by matt.giuca
New module: ivle.database. Classes and utilities for Storm ORM.
32
33
import ivle.conf
1080.1.4 by matt.giuca
ivle.database: Added User class.
34
import ivle.caps
1080.1.2 by matt.giuca
New module: ivle.database. Classes and utilities for Storm ORM.
35
1080.1.39 by Matt Giuca
ivle.database: Added __all__ to the top of the file.
36
__all__ = ['get_store',
37
            'User',
38
            'Subject', 'Semester', 'Offering', 'Enrolment',
39
            'ProjectSet', 'Project', 'ProjectGroup', 'ProjectGroupMembership',
1080.1.59 by Matt Giuca
ivle.worksheet, ivle.database: Added/updated __all__.
40
            'Exercise', 'Worksheet', 'WorksheetExercise',
1080.1.61 by William Grant
ivle.database: Add an Offering.enrol(user) method, which enrols the user in
41
            'ExerciseSave', 'ExerciseAttempt',
1099.1.141 by Nick Chadwick
Updated the exercises to be loaded from the database, not a local file.
42
            'AlreadyEnrolledError', 'TestCase', 'TestSuite', 'TestSuiteVar'
1080.1.39 by Matt Giuca
ivle.database: Added __all__ to the top of the file.
43
        ]
44
1080.1.25 by me at id
ivle.database: Add Subject, Semester and Offering.
45
def _kwarg_init(self, **kwargs):
46
    for k,v in kwargs.items():
1080.1.46 by William Grant
ivle.database._kwarg_init: Check with hasattr() on the class, not the object,
47
        if k.startswith('_') or not hasattr(self.__class__, k):
1080.1.25 by me at id
ivle.database: Add Subject, Semester and Offering.
48
            raise TypeError("%s got an unexpected keyword argument '%s'"
1080.1.45 by William Grant
ivle.database._kwarg_init: Fix exception throwing.
49
                % (self.__class__.__name__, k))
1080.1.25 by me at id
ivle.database: Add Subject, Semester and Offering.
50
        setattr(self, k, v)
51
1080.1.2 by matt.giuca
New module: ivle.database. Classes and utilities for Storm ORM.
52
def get_conn_string():
53
    """
54
    Returns the Storm connection string, generated from the conf file.
55
    """
56
    return "postgres://%s:%s@%s:%d/%s" % (ivle.conf.db_user,
57
        ivle.conf.db_password, ivle.conf.db_host, ivle.conf.db_port,
58
        ivle.conf.db_dbname)
59
60
def get_store():
61
    """
62
    Open a database connection and transaction. Return a storm.store.Store
63
    instance connected to the configured IVLE database.
64
    """
65
    return Store(create_database(get_conn_string()))
1080.1.4 by matt.giuca
ivle.database: Added User class.
66
1080.1.39 by Matt Giuca
ivle.database: Added __all__ to the top of the file.
67
# USERS #
68
1080.1.26 by me at id
ivle.database: Add an Enrolment class, and reference(set)s between all of the
69
class User(Storm):
1080.1.4 by matt.giuca
ivle.database: Added User class.
70
    """
71
    Represents an IVLE user.
72
    """
73
    __storm_table__ = "login"
74
75
    id = Int(primary=True, name="loginid")
76
    login = Unicode()
77
    passhash = Unicode()
78
    state = Unicode()
79
    rolenm = Unicode()
80
    unixid = Int()
81
    nick = Unicode()
82
    pass_exp = DateTime()
83
    acct_exp = DateTime()
84
    last_login = DateTime()
85
    svn_pass = Unicode()
86
    email = Unicode()
87
    fullname = Unicode()
88
    studentid = Unicode()
89
    settings = Unicode()
90
91
    def _get_role(self):
92
        if self.rolenm is None:
93
            return None
94
        return ivle.caps.Role(self.rolenm)
95
    def _set_role(self, value):
96
        if not isinstance(value, ivle.caps.Role):
97
            raise TypeError("role must be an ivle.caps.Role")
98
        self.rolenm = unicode(value)
99
    role = property(_get_role, _set_role)
100
1080.1.25 by me at id
ivle.database: Add Subject, Semester and Offering.
101
    __init__ = _kwarg_init
1080.1.4 by matt.giuca
ivle.database: Added User class.
102
103
    def __repr__(self):
104
        return "<%s '%s'>" % (type(self).__name__, self.login)
1080.1.5 by matt.giuca
ivle.database.User: Add the missing methods from ivle.user.User.
105
1080.1.13 by me at id
ivle.database.User: Add an authenticate() method, and a hash_password()
106
    def authenticate(self, password):
107
        """Validate a given password against this user.
108
109
        Returns True if the given password matches the password hash for this
110
        User, False if it doesn't match, and None if there is no hash for the
111
        user.
112
        """
113
        if self.passhash is None:
114
            return None
115
        return self.hash_password(password) == self.passhash
116
1080.1.7 by matt.giuca
The new ivle.database.User class is now used in Request and usrmgt, which
117
    def hasCap(self, capability):
1080.1.5 by matt.giuca
ivle.database.User: Add the missing methods from ivle.user.User.
118
        """Given a capability (which is a Role object), returns True if this
119
        User has that capability, False otherwise.
120
        """
121
        return self.role.hasCap(capability)
122
1080.1.15 by me at id
Give ivle.database.User {password,account}_expired attributes, and get
123
    @property
124
    def password_expired(self):
1080.1.5 by matt.giuca
ivle.database.User: Add the missing methods from ivle.user.User.
125
        fieldval = self.pass_exp
1080.1.15 by me at id
Give ivle.database.User {password,account}_expired attributes, and get
126
        return fieldval is not None and datetime.datetime.now() > fieldval
127
128
    @property
129
    def account_expired(self):
1080.1.5 by matt.giuca
ivle.database.User: Add the missing methods from ivle.user.User.
130
        fieldval = self.acct_exp
1080.1.15 by me at id
Give ivle.database.User {password,account}_expired attributes, and get
131
        return fieldval is not None and datetime.datetime.now() > fieldval
1080.1.6 by matt.giuca
ivle.database.User: Added get_by_login method.
132
1099.1.121 by William Grant
Don't set req.user unless the login in the session specifies a valid user.
133
    @property
134
    def valid(self):
135
        return self.state == 'enabled' and not self.account_expired
136
1080.1.29 by me at id
ivle.database.User: Order 'enrolments' the same way as 'active_enrolments'.
137
    def _get_enrolments(self, justactive):
1080.1.27 by me at id
ivle.database.User: Add an 'active_enrolments' property, which returns a list
138
        return Store.of(self).find(Enrolment,
139
            Enrolment.user_id == self.id,
1080.1.29 by me at id
ivle.database.User: Order 'enrolments' the same way as 'active_enrolments'.
140
            (Enrolment.active == True) if justactive else True,
1080.1.27 by me at id
ivle.database.User: Add an 'active_enrolments' property, which returns a list
141
            Enrolment.offering_id == Offering.id,
142
            Offering.semester_id == Semester.id,
143
            Offering.subject_id == Subject.id).order_by(
144
                Desc(Semester.year),
145
                Desc(Semester.semester),
146
                Desc(Subject.code)
147
            )
148
1080.1.68 by William Grant
ivle.database.User: Add a write-only 'password' attribute. When set, it will
149
    def _set_password(self, password):
150
        if password is None:
151
            self.passhash = None
152
        else:
153
            self.passhash = unicode(User.hash_password(password))
154
    password = property(fset=_set_password)
155
1080.1.29 by me at id
ivle.database.User: Order 'enrolments' the same way as 'active_enrolments'.
156
    @property
1080.1.31 by me at id
ivle.database.User: Add 'subjects', an attribute containing currently
157
    def subjects(self):
158
        return Store.of(self).find(Subject,
159
            Enrolment.user_id == self.id,
160
            Enrolment.active == True,
161
            Offering.id == Enrolment.offering_id,
162
            Subject.id == Offering.subject_id).config(distinct=True)
163
1080.1.36 by William Grant
ivle.database: Add ProjectSet, Project, ProjectGroup, ProjectGroupMembership
164
    # TODO: Invitations should be listed too?
165
    def get_groups(self, offering=None):
166
        preds = [
167
            ProjectGroupMembership.user_id == self.id,
168
            ProjectGroup.id == ProjectGroupMembership.project_group_id,
169
        ]
170
        if offering:
171
            preds.extend([
172
                ProjectSet.offering_id == offering.id,
173
                ProjectGroup.project_set_id == ProjectSet.id,
174
            ])
175
        return Store.of(self).find(ProjectGroup, *preds)
176
177
    @property
178
    def groups(self):
179
        return self.get_groups()
180
1080.1.31 by me at id
ivle.database.User: Add 'subjects', an attribute containing currently
181
    @property
1080.1.29 by me at id
ivle.database.User: Order 'enrolments' the same way as 'active_enrolments'.
182
    def active_enrolments(self):
183
        '''A sanely ordered list of the user's active enrolments.'''
184
        return self._get_enrolments(True)
185
186
    @property
187
    def enrolments(self):
188
        '''A sanely ordered list of all of the user's enrolments.'''
189
        return self._get_enrolments(False) 
1080.1.27 by me at id
ivle.database.User: Add an 'active_enrolments' property, which returns a list
190
1080.1.13 by me at id
ivle.database.User: Add an authenticate() method, and a hash_password()
191
    @staticmethod
192
    def hash_password(password):
193
        return md5.md5(password).hexdigest()
194
1080.1.6 by matt.giuca
ivle.database.User: Added get_by_login method.
195
    @classmethod
196
    def get_by_login(cls, store, login):
197
        """
198
        Get the User from the db associated with a given store and
199
        login.
200
        """
1080.1.7 by matt.giuca
The new ivle.database.User class is now used in Request and usrmgt, which
201
        return store.find(cls, cls.login == unicode(login)).one()
1080.1.25 by me at id
ivle.database: Add Subject, Semester and Offering.
202
1099.1.110 by William Grant
Implement an authorization system in the new framework. This breaks the REST
203
    def get_permissions(self, user):
204
        if user and user.rolenm == 'admin' or user is self:
205
            return set(['view', 'edit'])
206
        else:
207
            return set()
208
1080.1.39 by Matt Giuca
ivle.database: Added __all__ to the top of the file.
209
# SUBJECTS AND ENROLMENTS #
210
1080.1.26 by me at id
ivle.database: Add an Enrolment class, and reference(set)s between all of the
211
class Subject(Storm):
1080.1.25 by me at id
ivle.database: Add Subject, Semester and Offering.
212
    __storm_table__ = "subject"
213
214
    id = Int(primary=True, name="subjectid")
215
    code = Unicode(name="subj_code")
216
    name = Unicode(name="subj_name")
217
    short_name = Unicode(name="subj_short_name")
218
    url = Unicode()
219
1080.1.26 by me at id
ivle.database: Add an Enrolment class, and reference(set)s between all of the
220
    offerings = ReferenceSet(id, 'Offering.subject_id')
221
1080.1.25 by me at id
ivle.database: Add Subject, Semester and Offering.
222
    __init__ = _kwarg_init
223
224
    def __repr__(self):
225
        return "<%s '%s'>" % (type(self).__name__, self.short_name)
226
1099.1.110 by William Grant
Implement an authorization system in the new framework. This breaks the REST
227
    def get_permissions(self, user):
228
        perms = set()
229
        if user is not None:
230
            perms.add('view')
1099.1.141 by Nick Chadwick
Updated the exercises to be loaded from the database, not a local file.
231
            if user.rolenm == 'admin':
232
                perms.add('edit')
1099.1.110 by William Grant
Implement an authorization system in the new framework. This breaks the REST
233
        return perms
234
1080.1.26 by me at id
ivle.database: Add an Enrolment class, and reference(set)s between all of the
235
class Semester(Storm):
1080.1.25 by me at id
ivle.database: Add Subject, Semester and Offering.
236
    __storm_table__ = "semester"
237
238
    id = Int(primary=True, name="semesterid")
239
    year = Unicode()
240
    semester = Unicode()
241
    active = Bool()
242
1080.1.26 by me at id
ivle.database: Add an Enrolment class, and reference(set)s between all of the
243
    offerings = ReferenceSet(id, 'Offering.semester_id')
244
1080.1.25 by me at id
ivle.database: Add Subject, Semester and Offering.
245
    __init__ = _kwarg_init
246
247
    def __repr__(self):
248
        return "<%s %s/%s>" % (type(self).__name__, self.year, self.semester)
249
1080.1.26 by me at id
ivle.database: Add an Enrolment class, and reference(set)s between all of the
250
class Offering(Storm):
1080.1.25 by me at id
ivle.database: Add Subject, Semester and Offering.
251
    __storm_table__ = "offering"
252
253
    id = Int(primary=True, name="offeringid")
254
    subject_id = Int(name="subject")
255
    subject = Reference(subject_id, Subject.id)
256
    semester_id = Int(name="semesterid")
257
    semester = Reference(semester_id, Semester.id)
258
    groups_student_permissions = Unicode()
259
1080.1.26 by me at id
ivle.database: Add an Enrolment class, and reference(set)s between all of the
260
    enrolments = ReferenceSet(id, 'Enrolment.offering_id')
1080.1.79 by William Grant
ivle.database.Offering: Add a members ReferenceSet.
261
    members = ReferenceSet(id,
262
                           'Enrolment.offering_id',
263
                           'Enrolment.user_id',
264
                           'User.id')
1080.1.76 by William Grant
ivle.database.Offering: Add project_sets referenceset.
265
    project_sets = ReferenceSet(id, 'ProjectSet.offering_id')
1080.1.26 by me at id
ivle.database: Add an Enrolment class, and reference(set)s between all of the
266
1099.1.114 by Nick Chadwick
Modified the database so that exercises are now stored in the database, rather
267
    worksheets = ReferenceSet(id, 'Worksheet.offering_id')
268
1080.1.25 by me at id
ivle.database: Add Subject, Semester and Offering.
269
    __init__ = _kwarg_init
270
271
    def __repr__(self):
272
        return "<%s %r in %r>" % (type(self).__name__, self.subject,
273
                                  self.semester)
1080.1.26 by me at id
ivle.database: Add an Enrolment class, and reference(set)s between all of the
274
1080.1.61 by William Grant
ivle.database: Add an Offering.enrol(user) method, which enrols the user in
275
    def enrol(self, user):
276
        '''Enrol a user in this offering.'''
277
        # We'll get a horrible database constraint violation error if we try
278
        # to add a second enrolment.
279
        if Store.of(self).find(Enrolment,
280
                               Enrolment.user_id == user.id,
281
                               Enrolment.offering_id == self.id).count() == 1:
282
            raise AlreadyEnrolledError()
283
284
        e = Enrolment(user=user, offering=self, active=True)
285
        self.enrolments.add(e)
286
1099.1.141 by Nick Chadwick
Updated the exercises to be loaded from the database, not a local file.
287
    def get_permissions(self, user):
288
        perms = set()
289
        if user is not None:
290
            perms.add('view')
291
            if user.rolenm == 'admin':
292
                perms.add('edit')
293
        return perms
294
1080.1.26 by me at id
ivle.database: Add an Enrolment class, and reference(set)s between all of the
295
class Enrolment(Storm):
296
    __storm_table__ = "enrolment"
297
    __storm_primary__ = "user_id", "offering_id"
298
299
    user_id = Int(name="loginid")
300
    user = Reference(user_id, User.id)
301
    offering_id = Int(name="offeringid")
302
    offering = Reference(offering_id, Offering.id)
303
    notes = Unicode()
304
    active = Bool()
305
1080.1.81 by William Grant
ivle.database.Enrolment: Add a groups attribute, containing groups of which
306
    @property
307
    def groups(self):
308
        return Store.of(self).find(ProjectGroup,
309
                ProjectSet.offering_id == self.offering.id,
310
                ProjectGroup.project_set_id == ProjectSet.id,
311
                ProjectGroupMembership.project_group_id == ProjectGroup.id,
312
                ProjectGroupMembership.user_id == self.user.id)
313
1080.1.26 by me at id
ivle.database: Add an Enrolment class, and reference(set)s between all of the
314
    __init__ = _kwarg_init
315
316
    def __repr__(self):
317
        return "<%s %r in %r>" % (type(self).__name__, self.user,
318
                                  self.offering)
1080.1.36 by William Grant
ivle.database: Add ProjectSet, Project, ProjectGroup, ProjectGroupMembership
319
1080.1.61 by William Grant
ivle.database: Add an Offering.enrol(user) method, which enrols the user in
320
class AlreadyEnrolledError(Exception):
321
    pass
322
1080.1.39 by Matt Giuca
ivle.database: Added __all__ to the top of the file.
323
# PROJECTS #
324
1080.1.36 by William Grant
ivle.database: Add ProjectSet, Project, ProjectGroup, ProjectGroupMembership
325
class ProjectSet(Storm):
326
    __storm_table__ = "project_set"
327
328
    id = Int(name="projectsetid", primary=True)
329
    offering_id = Int(name="offeringid")
330
    offering = Reference(offering_id, Offering.id)
331
    max_students_per_group = Int()
332
1080.1.77 by William Grant
ivle.database.ProjectSet: Add projects and project_groups referencesets.
333
    projects = ReferenceSet(id, 'Project.project_set_id')
334
    project_groups = ReferenceSet(id, 'ProjectGroup.project_set_id')
335
1080.1.36 by William Grant
ivle.database: Add ProjectSet, Project, ProjectGroup, ProjectGroupMembership
336
    __init__ = _kwarg_init
337
338
    def __repr__(self):
339
        return "<%s %d in %r>" % (type(self).__name__, self.id,
340
                                  self.offering)
341
342
class Project(Storm):
343
    __storm_table__ = "project"
344
345
    id = Int(name="projectid", primary=True)
346
    synopsis = Unicode()
347
    url = Unicode()
348
    project_set_id = Int(name="projectsetid")
349
    project_set = Reference(project_set_id, ProjectSet.id)
350
    deadline = DateTime()
351
352
    __init__ = _kwarg_init
353
354
    def __repr__(self):
355
        return "<%s '%s' in %r>" % (type(self).__name__, self.synopsis,
356
                                  self.project_set.offering)
357
358
class ProjectGroup(Storm):
359
    __storm_table__ = "project_group"
360
361
    id = Int(name="groupid", primary=True)
362
    name = Unicode(name="groupnm")
363
    project_set_id = Int(name="projectsetid")
364
    project_set = Reference(project_set_id, ProjectSet.id)
365
    nick = Unicode()
366
    created_by_id = Int(name="createdby")
367
    created_by = Reference(created_by_id, User.id)
368
    epoch = DateTime()
369
1080.1.78 by William Grant
ivle.database.ProjectGroup.members: Use a ReferenceSet.
370
    members = ReferenceSet(id,
371
                           "ProjectGroupMembership.project_group_id",
372
                           "ProjectGroupMembership.user_id",
373
                           "User.id")
374
1080.1.36 by William Grant
ivle.database: Add ProjectSet, Project, ProjectGroup, ProjectGroupMembership
375
    __init__ = _kwarg_init
376
377
    def __repr__(self):
378
        return "<%s %s in %r>" % (type(self).__name__, self.name,
379
                                  self.project_set.offering)
380
381
class ProjectGroupMembership(Storm):
382
    __storm_table__ = "group_member"
383
    __storm_primary__ = "user_id", "project_group_id"
384
385
    user_id = Int(name="loginid")
386
    user = Reference(user_id, User.id)
387
    project_group_id = Int(name="groupid")
388
    project_group = Reference(project_group_id, ProjectGroup.id)
389
390
    __init__ = _kwarg_init
391
392
    def __repr__(self):
393
        return "<%s %r in %r>" % (type(self).__name__, self.user,
394
                                  self.project_group)
395
1080.1.40 by Matt Giuca
ivle.database: Added Worksheet and Exercise classes (more to come in this
396
# WORKSHEETS AND EXERCISES #
397
398
class Exercise(Storm):
399
    # Note: Table "problem" is called "Exercise" in the Object layer, since
400
    # it's called that everywhere else.
401
    __storm_table__ = "problem"
1099.1.114 by Nick Chadwick
Modified the database so that exercises are now stored in the database, rather
402
#TODO: Add in a field for the user-friendly identifier
403
    id = Unicode(primary=True, name="identifier")
404
    name = Unicode()
405
    description = Unicode()
406
    partial = Unicode()
407
    solution = Unicode()
408
    include = Unicode()
409
    num_rows = Int()
1080.1.40 by Matt Giuca
ivle.database: Added Worksheet and Exercise classes (more to come in this
410
1080.1.50 by Matt Giuca
ivle.database: Added WorksheetExercise (relates worksheets to exercises), and
411
    worksheets = ReferenceSet(id,
412
        'WorksheetExercise.exercise_id',
413
        'WorksheetExercise.worksheet_id',
414
        'Worksheet.id'
415
    )
1099.1.114 by Nick Chadwick
Modified the database so that exercises are now stored in the database, rather
416
    
417
    test_suites = ReferenceSet(id, 'TestSuite.exercise_id')
1080.1.50 by Matt Giuca
ivle.database: Added WorksheetExercise (relates worksheets to exercises), and
418
1080.1.40 by Matt Giuca
ivle.database: Added Worksheet and Exercise classes (more to come in this
419
    __init__ = _kwarg_init
420
421
    def __repr__(self):
422
        return "<%s %s>" % (type(self).__name__, self.name)
423
1080.1.51 by Matt Giuca
tutorial: Replaced call to ivle.db.create_worksheet with local code (roughly
424
1080.1.40 by Matt Giuca
ivle.database: Added Worksheet and Exercise classes (more to come in this
425
class Worksheet(Storm):
426
    __storm_table__ = "worksheet"
427
428
    id = Int(primary=True, name="worksheetid")
429
    # XXX subject is not linked to a Subject object. This is a property of
430
    # the database, and will be refactored.
1099.1.114 by Nick Chadwick
Modified the database so that exercises are now stored in the database, rather
431
    offering_id = Int(name="offeringid")
1080.1.40 by Matt Giuca
ivle.database: Added Worksheet and Exercise classes (more to come in this
432
    name = Unicode(name="identifier")
433
    assessable = Bool()
434
    mtime = DateTime()
435
1099.1.141 by Nick Chadwick
Updated the exercises to be loaded from the database, not a local file.
436
    attempts = ReferenceSet(id, "ExerciseAttempt.worksheetid")
1099.1.118 by William Grant
Fix a bad reference introduced with the worksheet changes.
437
    offering = Reference(offering_id, 'Offering.id')
1099.1.114 by Nick Chadwick
Modified the database so that exercises are now stored in the database, rather
438
1080.1.50 by Matt Giuca
ivle.database: Added WorksheetExercise (relates worksheets to exercises), and
439
    exercises = ReferenceSet(id,
440
        'WorksheetExercise.worksheet_id',
441
        'WorksheetExercise.exercise_id',
442
        Exercise.id)
443
    # Use worksheet_exercises to get access to the WorksheetExercise objects
444
    # binding worksheets to exercises. This is required to access the
445
    # "optional" field.
446
    worksheet_exercises = ReferenceSet(id,
447
        'WorksheetExercise.worksheet_id')
1099.1.114 by Nick Chadwick
Modified the database so that exercises are now stored in the database, rather
448
        
1080.1.50 by Matt Giuca
ivle.database: Added WorksheetExercise (relates worksheets to exercises), and
449
1080.1.40 by Matt Giuca
ivle.database: Added Worksheet and Exercise classes (more to come in this
450
    __init__ = _kwarg_init
451
452
    def __repr__(self):
453
        return "<%s %s>" % (type(self).__name__, self.name)
1080.1.47 by Matt Giuca
ivle.database: Added Worksheet.get_by_name method.
454
455
    # XXX Refactor this - make it an instance method of Subject rather than a
456
    # class method of Worksheet. Can't do that now because Subject isn't
457
    # linked referentially to the Worksheet.
458
    @classmethod
459
    def get_by_name(cls, store, subjectname, worksheetname):
460
        """
461
        Get the Worksheet from the db associated with a given store, subject
462
        name and worksheet name.
463
        """
464
        return store.find(cls, cls.subject == unicode(subjectname),
465
            cls.name == unicode(worksheetname)).one()
1080.1.50 by Matt Giuca
ivle.database: Added WorksheetExercise (relates worksheets to exercises), and
466
1080.1.51 by Matt Giuca
tutorial: Replaced call to ivle.db.create_worksheet with local code (roughly
467
    def remove_all_exercises(self, store):
468
        """
469
        Remove all exercises from this worksheet.
470
        This does not delete the exercises themselves. It just removes them
471
        from the worksheet.
472
        """
473
        store.find(WorksheetExercise,
474
            WorksheetExercise.worksheet == self).remove()
1099.1.141 by Nick Chadwick
Updated the exercises to be loaded from the database, not a local file.
475
            
476
    def get_permissions(self, user):
477
        return self.offering.get_permissions(user)
1080.1.51 by Matt Giuca
tutorial: Replaced call to ivle.db.create_worksheet with local code (roughly
478
1080.1.50 by Matt Giuca
ivle.database: Added WorksheetExercise (relates worksheets to exercises), and
479
class WorksheetExercise(Storm):
480
    __storm_table__ = "worksheet_problem"
481
    __storm_primary__ = "worksheet_id", "exercise_id"
482
483
    worksheet_id = Int(name="worksheetid")
484
    worksheet = Reference(worksheet_id, Worksheet.id)
1099.1.114 by Nick Chadwick
Modified the database so that exercises are now stored in the database, rather
485
    exercise_id = Unicode(name="problemid")
1080.1.50 by Matt Giuca
ivle.database: Added WorksheetExercise (relates worksheets to exercises), and
486
    exercise = Reference(exercise_id, Exercise.id)
487
    optional = Bool()
488
489
    __init__ = _kwarg_init
490
491
    def __repr__(self):
492
        return "<%s %s in %s>" % (type(self).__name__, self.exercise.name,
493
                                  self.worksheet.name)
1080.1.55 by Matt Giuca
ivle.database: Added ExerciseAttempt and ExerciseSave classes.
494
495
class ExerciseSave(Storm):
496
    """
497
    Represents a potential solution to an exercise that a user has submitted
498
    to the server for storage.
499
    A basic ExerciseSave is just the current saved text for this exercise for
500
    this user (doesn't count towards their attempts).
501
    ExerciseSave may be extended with additional semantics (such as
502
    ExerciseAttempt).
503
    """
504
    __storm_table__ = "problem_save"
505
    __storm_primary__ = "exercise_id", "user_id", "date"
506
1099.1.114 by Nick Chadwick
Modified the database so that exercises are now stored in the database, rather
507
    exercise_id = Unicode(name="problemid")
1080.1.55 by Matt Giuca
ivle.database: Added ExerciseAttempt and ExerciseSave classes.
508
    exercise = Reference(exercise_id, Exercise.id)
509
    user_id = Int(name="loginid")
510
    user = Reference(user_id, User.id)
511
    date = DateTime()
512
    text = Unicode()
1099.1.114 by Nick Chadwick
Modified the database so that exercises are now stored in the database, rather
513
    worksheetid = Int()
514
    worksheet = Reference(worksheetid, Worksheet.id)
1080.1.55 by Matt Giuca
ivle.database: Added ExerciseAttempt and ExerciseSave classes.
515
516
    __init__ = _kwarg_init
517
518
    def __repr__(self):
519
        return "<%s %s by %s at %s>" % (type(self).__name__,
520
            self.exercise.name, self.user.login, self.date.strftime("%c"))
521
522
class ExerciseAttempt(ExerciseSave):
523
    """
524
    An ExerciseAttempt is a special case of an ExerciseSave. Like an
525
    ExerciseSave, it constitutes exercise solution data that the user has
526
    submitted to the server for storage.
527
    In addition, it contains additional information about the submission.
528
    complete - True if this submission was successful, rendering this exercise
529
        complete for this user.
530
    active - True if this submission is "active" (usually true). Submissions
531
        may be de-activated by privileged users for special reasons, and then
532
        they won't count (either as a penalty or success), but will still be
533
        stored.
534
    """
535
    __storm_table__ = "problem_attempt"
536
    __storm_primary__ = "exercise_id", "user_id", "date"
537
538
    # The "text" field is the same but has a different name in the DB table
539
    # for some reason.
540
    text = Unicode(name="attempt")
541
    complete = Bool()
542
    active = Bool()
1099.1.114 by Nick Chadwick
Modified the database so that exercises are now stored in the database, rather
543
    
1099.1.113 by William Grant
Give console and tutorial services security declarations.
544
    def get_permissions(self, user):
545
        return set(['view']) if user is self.user else set()
1099.1.114 by Nick Chadwick
Modified the database so that exercises are now stored in the database, rather
546
  
547
class TestSuite(Storm):
548
    """A Testsuite acts as a container for the test cases of an exercise."""
549
    __storm_table__ = "test_suite"
550
    __storm_primary__ = "exercise_id", "suiteid"
551
    
552
    suiteid = Int()
553
    exercise_id = Unicode(name="problemid")
1099.1.141 by Nick Chadwick
Updated the exercises to be loaded from the database, not a local file.
554
    description = Unicode()
555
    seq_no = Int()
556
    function = Unicode()
557
    stdin = Unicode()
1099.1.114 by Nick Chadwick
Modified the database so that exercises are now stored in the database, rather
558
    exercise = Reference(exercise_id, Exercise.id)
559
    test_cases = ReferenceSet(suiteid, 'TestCase.suiteid')
1099.1.141 by Nick Chadwick
Updated the exercises to be loaded from the database, not a local file.
560
    variables = ReferenceSet(suiteid, 'TestSuiteVar.suiteid')
1099.1.114 by Nick Chadwick
Modified the database so that exercises are now stored in the database, rather
561
562
class TestCase(Storm):
563
    """A TestCase is a member of a TestSuite.
564
    
565
    It contains the data necessary to check if an exercise is correct"""
566
    __storm_table__ = "test_case"
567
    __storm_primary__ = "testid", "suiteid"
568
    
569
    testid = Int()
570
    suiteid = Int()
1099.1.141 by Nick Chadwick
Updated the exercises to be loaded from the database, not a local file.
571
    suite = Reference(suiteid, "TestSuite.suiteid")
1099.1.114 by Nick Chadwick
Modified the database so that exercises are now stored in the database, rather
572
    passmsg = Unicode()
573
    failmsg = Unicode()
1099.1.141 by Nick Chadwick
Updated the exercises to be loaded from the database, not a local file.
574
    test_default = Unicode()
1099.1.114 by Nick Chadwick
Modified the database so that exercises are now stored in the database, rather
575
    seq_no = Int()
576
    
1099.1.141 by Nick Chadwick
Updated the exercises to be loaded from the database, not a local file.
577
    parts = ReferenceSet(testid, "TestCasePart.testid")
578
    
579
    __init__ = _kwarg_init
580
581
class TestSuiteVar(Storm):
582
    """A container for the arguments of a Test Suite"""
583
    __storm_table__ = "suite_variables"
584
    __storm_primary__ = "varid"
585
    
586
    varid = Int()
587
    suiteid = Int()
588
    var_name = Unicode()
589
    var_value = Unicode()
590
    var_type = Unicode()
591
    arg_no = Int()
592
    
593
    suite = Reference(suiteid, "TestSuite.suiteid")
594
    
595
    __init__ = _kwarg_init
596
    
597
class TestCasePart(Storm):
598
    """A container for the test elements of a Test Case"""
599
    __storm_table__ = "test_case_parts"
600
    __storm_primary__ = "partid"
601
    
602
    partid = Int()
603
    testid = Int()
604
    
605
    part_type = Unicode()
606
    test_type = Unicode()
607
    data = Unicode()
608
    filename = Unicode()
609
    
610
    test = Reference(testid, "TestCase.testid")
611
    
1099.1.114 by Nick Chadwick
Modified the database so that exercises are now stored in the database, rather
612
    __init__ = _kwarg_init