[7191] | 1 | ## $Id: vocabularies.py 8098 2012-04-11 07:40:48Z 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 |
---|
[7819] | 27 | from waeup.kofa.interfaces import SimpleKofaVocabulary |
---|
[7811] | 28 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
[8069] | 29 | from waeup.kofa.utils.helpers import get_sorted_preferred |
---|
| 30 | from waeup.kofa.utils.countries import COUNTRIES |
---|
[7811] | 31 | from waeup.kofa.university.vocabularies import course_levels |
---|
[6648] | 32 | |
---|
| 33 | |
---|
[8069] | 34 | #: a tuple of tuples (<COUNTRY-NAME>, <ISO-CODE>) with Nigeria first. |
---|
| 35 | COUNTRIES = get_sorted_preferred(COUNTRIES, ['NG']) |
---|
| 36 | nats_vocab = SimpleKofaVocabulary(*COUNTRIES) |
---|
[7523] | 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 |
---|
[8098] | 50 | levels = [level for level in range(100,1000,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 |
---|
[8098] | 74 | end_level = 1000 |
---|
[7625] | 75 | if value < start_level or value > end_level + 120: |
---|
[7691] | 76 | return _('Error: level id ${value} out of range', |
---|
| 77 | mapping={'value': value}) |
---|
[7625] | 78 | # Special treatment for pre-studies level |
---|
[7617] | 79 | if value == 10: |
---|
| 80 | return course_levels.by_value[value].title |
---|
[6725] | 81 | level,repeat = divmod(value, 100) |
---|
| 82 | level = level * 100 |
---|
| 83 | repeat = repeat//10 |
---|
| 84 | title = course_levels.by_value[level].title |
---|
[7625] | 85 | if level > end_level and repeat == 1: |
---|
[7617] | 86 | title = course_levels.by_value[level - 100].title |
---|
[7691] | 87 | return _('${title} 2nd spillover', mapping={'title': title}) |
---|
[7625] | 88 | if level > end_level and repeat == 2: |
---|
| 89 | title = course_levels.by_value[level - 100].title |
---|
[7691] | 90 | return _('${title} 3rd spillover', mapping={'title': title}) |
---|
[7617] | 91 | if level > end_level: |
---|
| 92 | title = course_levels.by_value[level - 100].title |
---|
[7691] | 93 | return _('${title} 1st spillover', mapping={'title': title}) |
---|
[7625] | 94 | if repeat == 1: |
---|
[7691] | 95 | return _('${title} on 1st probation', mapping={'title': title}) |
---|
[7625] | 96 | if repeat == 2: |
---|
[7691] | 97 | return _('${title} on 2nd probation', mapping={'title': title}) |
---|
[6725] | 98 | return title |
---|
| 99 | |
---|
[6648] | 100 | class GenderSource(BasicSourceFactory): |
---|
| 101 | """A gender source delivers basically a mapping |
---|
| 102 | ``{'m': 'Male', 'f': 'Female'}`` |
---|
| 103 | |
---|
| 104 | Using a source, we make sure that the tokens (which are |
---|
| 105 | stored/expected for instance from CSV files) are something one |
---|
| 106 | can expect and not cryptic IntIDs. |
---|
| 107 | """ |
---|
| 108 | def getValues(self): |
---|
| 109 | return ['m', 'f'] |
---|
| 110 | |
---|
| 111 | def getToken(self, value): |
---|
| 112 | return value[0].lower() |
---|
| 113 | |
---|
| 114 | def getTitle(self, value): |
---|
| 115 | if value == 'm': |
---|
[7872] | 116 | return _('male') |
---|
[6648] | 117 | if value == 'f': |
---|
[7872] | 118 | return _('female') |
---|
[6787] | 119 | |
---|
| 120 | class RegNumNotInSource(ValidationError): |
---|
| 121 | """Registration number exists already |
---|
| 122 | """ |
---|
| 123 | # The docstring of ValidationErrors is used as error description |
---|
| 124 | # by zope.formlib. |
---|
| 125 | pass |
---|
| 126 | |
---|
| 127 | class MatNumNotInSource(ValidationError): |
---|
| 128 | """Matriculation number exists already |
---|
| 129 | """ |
---|
| 130 | # The docstring of ValidationErrors is used as error description |
---|
| 131 | # by zope.formlib. |
---|
| 132 | pass |
---|
| 133 | |
---|
| 134 | class RegNumberSource(object): |
---|
| 135 | implements(ISource) |
---|
| 136 | cat_name = 'students_catalog' |
---|
| 137 | field_name = 'reg_number' |
---|
| 138 | validation_error = RegNumNotInSource |
---|
| 139 | def __init__(self, context): |
---|
| 140 | self.context = context |
---|
| 141 | return |
---|
| 142 | |
---|
| 143 | def __contains__(self, value): |
---|
| 144 | cat = queryUtility(ICatalog, self.cat_name) |
---|
| 145 | if cat is None: |
---|
| 146 | return True |
---|
| 147 | kw = {self.field_name: (value, value)} |
---|
| 148 | results = cat.searchResults(**kw) |
---|
| 149 | for entry in results: |
---|
| 150 | if entry.student_id != self.context.student_id: |
---|
| 151 | # XXX: sources should simply return False. |
---|
| 152 | # But then we get some stupid error message in forms |
---|
| 153 | # when validation fails. |
---|
| 154 | raise self.validation_error(value) |
---|
| 155 | #return False |
---|
| 156 | return True |
---|
| 157 | |
---|
| 158 | def contextual_reg_num_source(context): |
---|
| 159 | source = RegNumberSource(context) |
---|
| 160 | return source |
---|
| 161 | directlyProvides(contextual_reg_num_source, IContextSourceBinder) |
---|
| 162 | |
---|
| 163 | class MatNumberSource(RegNumberSource): |
---|
| 164 | field_name = 'matric_number' |
---|
| 165 | validation_error = MatNumNotInSource |
---|
| 166 | |
---|
| 167 | def contextual_mat_num_source(context): |
---|
| 168 | source = MatNumberSource(context) |
---|
| 169 | return source |
---|
| 170 | directlyProvides(contextual_mat_num_source, IContextSourceBinder) |
---|