[7191] | 1 | ## $Id: vocabularies.py 7625 2012-02-10 20:05:55Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
| 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 17 | ## |
---|
[6648] | 18 | """Vocabularies and sources for the student section. |
---|
| 19 | """ |
---|
[6787] | 20 | from zope.component import getUtility, queryUtility |
---|
[6648] | 21 | from zope.catalog.interfaces import ICatalog |
---|
[6787] | 22 | from zope.interface import implements, directlyProvides |
---|
| 23 | from zope.schema.interfaces import ISource, IContextSourceBinder |
---|
| 24 | from zope.schema.interfaces import ValidationError |
---|
[6648] | 25 | from zc.sourcefactory.basic import BasicSourceFactory |
---|
| 26 | from zc.sourcefactory.contextual import BasicContextualSourceFactory |
---|
[7620] | 27 | from waeup.sirp.interfaces import SimpleSIRPVocabulary |
---|
[6648] | 28 | from waeup.sirp.students.lgas import LGAS |
---|
[7523] | 29 | from waeup.sirp.students.nats import NATS |
---|
[6725] | 30 | from waeup.sirp.university.vocabularies import course_levels |
---|
[6648] | 31 | |
---|
[7321] | 32 | lgas_vocab = SimpleSIRPVocabulary( |
---|
[6648] | 33 | *sorted([(x[1],x[0]) for x in LGAS])) |
---|
| 34 | |
---|
[7523] | 35 | nats_vocab = SimpleSIRPVocabulary( |
---|
| 36 | *sorted([(x[1],x[0]) for x in NATS])) |
---|
| 37 | |
---|
[6725] | 38 | def study_levels(studycourse): |
---|
[7532] | 39 | if studycourse.certificate is not None: |
---|
[6725] | 40 | start_level = int(studycourse.certificate.start_level) |
---|
| 41 | end_level = int(studycourse.certificate.end_level) |
---|
[7625] | 42 | if start_level == 10: |
---|
| 43 | levels = [10,] + [level for level in range(100,end_level+200,10) |
---|
| 44 | if level % 100 < 30] |
---|
| 45 | else: |
---|
| 46 | levels = [level for level in range(start_level,end_level+200,10) |
---|
| 47 | if level % 100 < 30] |
---|
[7532] | 48 | else: |
---|
[7625] | 49 | # default level range |
---|
| 50 | levels = [level for level in range(100,800,10) if level % 100 < 30] |
---|
[7532] | 51 | return levels |
---|
[6787] | 52 | |
---|
[7532] | 53 | |
---|
[6725] | 54 | class StudyLevelSource(BasicContextualSourceFactory): |
---|
| 55 | """The StudyLevelSource is based on and extends the |
---|
| 56 | course_levels vocabulary defined in the university package. |
---|
| 57 | Repeating study levels are denoted by increments of 10, the |
---|
| 58 | first spillover level by the certificate's end level plus 100 |
---|
| 59 | and the second spillover level by the end level plus 110. |
---|
| 60 | """ |
---|
| 61 | def getValues(self, context): |
---|
| 62 | return study_levels(context) |
---|
[6724] | 63 | |
---|
[6725] | 64 | def getToken(self, context, value): |
---|
| 65 | return str(value) |
---|
| 66 | |
---|
| 67 | def getTitle(self, context, value): |
---|
[7532] | 68 | if context.certificate is not None: |
---|
[7617] | 69 | start_level = int(context.certificate.start_level) |
---|
[7532] | 70 | end_level = int(context.certificate.end_level) |
---|
| 71 | else: |
---|
[7625] | 72 | # default level range |
---|
| 73 | start_level = 100 |
---|
| 74 | end_level = 600 |
---|
| 75 | if value < start_level or value > end_level + 120: |
---|
[7617] | 76 | return "Error: level id %s out of range" % value |
---|
[7625] | 77 | # Special treatment for pre-studies level |
---|
[7617] | 78 | if value == 10: |
---|
| 79 | return course_levels.by_value[value].title |
---|
[6725] | 80 | level,repeat = divmod(value, 100) |
---|
| 81 | level = level * 100 |
---|
| 82 | repeat = repeat//10 |
---|
| 83 | title = course_levels.by_value[level].title |
---|
[7625] | 84 | if level > end_level and repeat == 1: |
---|
[7617] | 85 | title = course_levels.by_value[level - 100].title |
---|
| 86 | return "%s 2nd spillover" % title |
---|
[7625] | 87 | if level > end_level and repeat == 2: |
---|
| 88 | title = course_levels.by_value[level - 100].title |
---|
| 89 | return "%s 3rd spillover" % title |
---|
[7617] | 90 | if level > end_level: |
---|
| 91 | title = course_levels.by_value[level - 100].title |
---|
[7625] | 92 | return "%s 1st spillover" % title |
---|
| 93 | if repeat == 1: |
---|
| 94 | return "%s on 1st probation" % title |
---|
| 95 | if repeat == 2: |
---|
| 96 | return "%s on 2nd probation" % title |
---|
[6725] | 97 | return title |
---|
| 98 | |
---|
[6648] | 99 | class CertificateSource(BasicContextualSourceFactory): |
---|
| 100 | """A certificate source delivers all certificates provided |
---|
| 101 | in the portal. |
---|
| 102 | """ |
---|
| 103 | def getValues(self, context): |
---|
| 104 | catalog = getUtility(ICatalog, name='certificates_catalog') |
---|
| 105 | return sorted(list( |
---|
| 106 | catalog.searchResults( |
---|
| 107 | code=('', 'z*'))), |
---|
| 108 | key=lambda value: value.code) |
---|
| 109 | |
---|
| 110 | def getToken(self, context, value): |
---|
| 111 | return value.code |
---|
| 112 | |
---|
| 113 | def getTitle(self, context, value): |
---|
| 114 | return "%s - %s" % (value.code, value.title[:64]) |
---|
| 115 | |
---|
| 116 | |
---|
| 117 | class GenderSource(BasicSourceFactory): |
---|
| 118 | """A gender source delivers basically a mapping |
---|
| 119 | ``{'m': 'Male', 'f': 'Female'}`` |
---|
| 120 | |
---|
| 121 | Using a source, we make sure that the tokens (which are |
---|
| 122 | stored/expected for instance from CSV files) are something one |
---|
| 123 | can expect and not cryptic IntIDs. |
---|
| 124 | """ |
---|
| 125 | def getValues(self): |
---|
| 126 | return ['m', 'f'] |
---|
| 127 | |
---|
| 128 | def getToken(self, value): |
---|
| 129 | return value[0].lower() |
---|
| 130 | |
---|
| 131 | def getTitle(self, value): |
---|
| 132 | if value == 'm': |
---|
| 133 | return 'Male' |
---|
| 134 | if value == 'f': |
---|
| 135 | return 'Female' |
---|
[6787] | 136 | |
---|
| 137 | class RegNumNotInSource(ValidationError): |
---|
| 138 | """Registration number exists already |
---|
| 139 | """ |
---|
| 140 | # The docstring of ValidationErrors is used as error description |
---|
| 141 | # by zope.formlib. |
---|
| 142 | pass |
---|
| 143 | |
---|
| 144 | class MatNumNotInSource(ValidationError): |
---|
| 145 | """Matriculation number exists already |
---|
| 146 | """ |
---|
| 147 | # The docstring of ValidationErrors is used as error description |
---|
| 148 | # by zope.formlib. |
---|
| 149 | pass |
---|
| 150 | |
---|
| 151 | class RegNumberSource(object): |
---|
| 152 | implements(ISource) |
---|
| 153 | cat_name = 'students_catalog' |
---|
| 154 | field_name = 'reg_number' |
---|
| 155 | validation_error = RegNumNotInSource |
---|
| 156 | def __init__(self, context): |
---|
| 157 | self.context = context |
---|
| 158 | return |
---|
| 159 | |
---|
| 160 | def __contains__(self, value): |
---|
| 161 | cat = queryUtility(ICatalog, self.cat_name) |
---|
| 162 | if cat is None: |
---|
| 163 | return True |
---|
| 164 | kw = {self.field_name: (value, value)} |
---|
| 165 | results = cat.searchResults(**kw) |
---|
| 166 | for entry in results: |
---|
| 167 | if entry.student_id != self.context.student_id: |
---|
| 168 | # XXX: sources should simply return False. |
---|
| 169 | # But then we get some stupid error message in forms |
---|
| 170 | # when validation fails. |
---|
| 171 | raise self.validation_error(value) |
---|
| 172 | #return False |
---|
| 173 | return True |
---|
| 174 | |
---|
| 175 | def contextual_reg_num_source(context): |
---|
| 176 | source = RegNumberSource(context) |
---|
| 177 | return source |
---|
| 178 | directlyProvides(contextual_reg_num_source, IContextSourceBinder) |
---|
| 179 | |
---|
| 180 | class MatNumberSource(RegNumberSource): |
---|
| 181 | field_name = 'matric_number' |
---|
| 182 | validation_error = MatNumNotInSource |
---|
| 183 | |
---|
| 184 | def contextual_mat_num_source(context): |
---|
| 185 | source = MatNumberSource(context) |
---|
| 186 | return source |
---|
| 187 | directlyProvides(contextual_mat_num_source, IContextSourceBinder) |
---|