1294.2.70
by William Grant
Split out ivle.webapp.admin's routes into annotated functions in ivle.webapp.traversal. |
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 |
||
1294.2.97
by William Grant
Fix a missing Storm import which was breaking project traversal. |
18 |
from storm.locals import Store |
19 |
||
1294.2.70
by William Grant
Split out ivle.webapp.admin's routes into annotated functions in ivle.webapp.traversal. |
20 |
from ivle.database import Offering, ProjectSet, Project, Subject, User |
21 |
||
22 |
from ivle.webapp import ApplicationRoot |
|
1294.3.2
by William Grant
Router->Publisher |
23 |
from ivle.webapp.publisher import ROOT |
24 |
from ivle.webapp.publisher.decorators import forward_route, reverse_route |
|
1294.2.70
by William Grant
Split out ivle.webapp.admin's routes into annotated functions in ivle.webapp.traversal. |
25 |
|
26 |
@forward_route(ApplicationRoot, argc=1) |
|
27 |
def root_to_user(root, segment): |
|
28 |
if not segment.startswith('~'): |
|
29 |
return None |
|
30 |
return User.get_by_login(root.store, segment[1:]) |
|
31 |
||
32 |
@forward_route(ApplicationRoot, 'subjects', argc=1) |
|
33 |
def root_to_subject(root, name): |
|
34 |
return root.store.find(Subject, short_name=name).one() |
|
35 |
||
36 |
@forward_route(Subject, argc=2) |
|
37 |
def subject_to_offering(subject, year, semester): |
|
38 |
return subject.offering_for_semester(year, semester) |
|
39 |
||
40 |
@forward_route(Offering, '+projects', argc=1) |
|
41 |
def offering_to_project(offering, name): |
|
42 |
return Store.of(offering).find(Project, |
|
1294.2.141
by William Grant
Unbreak project(set) traversals. |
43 |
Project.short_name == name, |
1294.2.70
by William Grant
Split out ivle.webapp.admin's routes into annotated functions in ivle.webapp.traversal. |
44 |
Project.project_set_id == ProjectSet.id, |
45 |
ProjectSet.offering == offering).one() |
|
46 |
||
47 |
@forward_route(Offering, '+projectsets', argc=1) |
|
48 |
def offering_to_projectset(offering, name): |
|
1294.2.141
by William Grant
Unbreak project(set) traversals. |
49 |
try: |
50 |
ps_id = int(name) |
|
51 |
except ValueError: |
|
52 |
return None |
|
1294.2.70
by William Grant
Split out ivle.webapp.admin's routes into annotated functions in ivle.webapp.traversal. |
53 |
return Store.of(offering).find(ProjectSet, |
1294.2.141
by William Grant
Unbreak project(set) traversals. |
54 |
ProjectSet.id == ps_id, |
1294.2.70
by William Grant
Split out ivle.webapp.admin's routes into annotated functions in ivle.webapp.traversal. |
55 |
ProjectSet.offering == offering).one() |
56 |
||
57 |
@reverse_route(User) |
|
58 |
def user_url(user): |
|
1294.2.95
by William Grant
Fix User URL generation. |
59 |
return (ROOT, '~' + user.login) |
1294.2.70
by William Grant
Split out ivle.webapp.admin's routes into annotated functions in ivle.webapp.traversal. |
60 |
|
61 |
@reverse_route(Subject) |
|
62 |
def subject_url(subject): |
|
1294.2.80
by William Grant
Fix subject_url to use short_name, not name. |
63 |
return (ROOT, ('subjects', subject.short_name)) |
1294.2.70
by William Grant
Split out ivle.webapp.admin's routes into annotated functions in ivle.webapp.traversal. |
64 |
|
65 |
@reverse_route(Offering) |
|
66 |
def offering_url(offering): |
|
67 |
return (offering.subject, (offering.semester.year, |
|
68 |
offering.semester.semester)) |
|
69 |
||
70 |
@reverse_route(ProjectSet) |
|
71 |
def projectset_url(project_set): |
|
1294.2.141
by William Grant
Unbreak project(set) traversals. |
72 |
return (project_set.offering, ('+projectsets', str(project_set.id))) |
1294.2.70
by William Grant
Split out ivle.webapp.admin's routes into annotated functions in ivle.webapp.traversal. |
73 |
|
74 |
@reverse_route(Project) |
|
75 |
def project_url(project): |
|
1294.2.141
by William Grant
Unbreak project(set) traversals. |
76 |
return (project.project_set.offering, ('+projects', project.short_name)) |