source: main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/interfaces.py @ 16508

Last change on this file since 16508 was 16508, checked in by Henrik Bettermann, 3 years ago

Add course grading system source.

  • Property svn:keywords set to Id
File size: 5.1 KB
RevLine 
[14742]1## $Id: interfaces.py 16508 2021-06-16 11:54:39Z 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##
18
[15045]19import re
[14742]20import zope.i18nmessageid
21from zope import schema
22from zc.sourcefactory.basic import BasicSourceFactory
23from waeup.kofa.interfaces import (SimpleKofaVocabulary,
[15489]24    ISessionConfiguration, academic_sessions_vocab,
25    ContextualDictSourceFactoryBase)
[14742]26from kofacustom.nigeria.utils.lgas import LGAS
27
28_ = MessageFactory = zope.i18nmessageid.MessageFactory('kofacustom.nigeria')
29
30high_qual = SimpleKofaVocabulary(
31    ('National Certificate of Education','nce'),
32    ('Pre Degree Programme','pre'),
33    ('Diploma Programme','dip'),
34    ('National Diploma','ond'),
35    ('Bachelors Degree','bd'),
36    ('Masters Degree','md'),
37    ('Professional Qualification','pq'),
38    ('Other Certification','oc'),
39    ('Higher National Diploma','hnd'),
40    ('Post Graduate Diploma','pgd'),
41    ('NCE AL OTH','nce_al_oth'),
42    ('National Defence Academy','nda'),
43    ('RMC','rmc'),
44    ('Ph.D.(Doctor of Philosophy)','phd'),
45    ('M.Phil (Master of Philosophy)','mphil'),
[14866]46    ('JUPEB','jupeb'),
[16109]47    ('IJMBE','ijmbe'),
[14836]48    (_('Awaiting Results'),'a_rslt'),
[14742]49    )
50
51high_grade = SimpleKofaVocabulary(
52    ('Upper Credit','upper_credit'),
53    ('Distinction','distinction'),
54    ('Credit','credit'),
55    ('Merit','merit'),
56    ('Lower Credit','lower_credit'),
57    ('First Class','first_class'),
58    ('Second Class Upper','second_class_upper'),
59    ('Second Class Lower','second_class_lower'),
60    ('Third Class','third_class'),
61    ('Pass','pass'),
62    ('A Levels','al'),
63    ('Unclassified Certificate', 'uc'),
[14836]64    (_('Awaiting Results'),'a_rslt'),
[14742]65    )
66
67exam_types = SimpleKofaVocabulary(
68    ('SSCE','ssce'),
69    ('WAEC','waec'),
70    ('GCE O\' LEVEL','gce_o_level'),
71    ('TC II','tc_ii'),
72    ('RSA','rsa'),
73    ('NABTEB','nabteb'),
74    ('NECO','neco'),
75    ('ACE','ace'),
76    ('GCE A\' LEVEL','gce_a_level'),
77    ('IGCSE','igcse'),
78    ('WAEC Technical Examination','wte'),
79    )
80
[15045]81# Define a validation method for JAMB reg numbers
82class NotJAMBRegNumber(schema.ValidationError):
83    __doc__ = u"Invalid JAMB registration number"
84
85#: Regular expression to check jamb_reg_number formats.
[15046]86check_jamb_reg_number = re.compile(r"^\d{8}[A-Z]{2}$").match
[15045]87
88def validate_jamb_reg_number(value):
89    if not check_jamb_reg_number(value):
90        raise NotJAMBRegNumber(value)
91    return True
92
[14742]93#lgas_vocab = SimpleKofaVocabulary(
94#    *sorted([(x[1],x[0]) for x in LGAS]))
95
96class LGASource(BasicSourceFactory):
97    """A source for school subjects used in exam documentation.
98    """
99    lga_dict = dict(LGAS)
100
101    def getValues(self):
102        return sorted(self.lga_dict.keys())
103
104    def getToken(self, value):
105        return str(value)
106
107    def getTitle(self, value):
108        return self.lga_dict.get(value,
109            _('Invalid key: ${a}', mapping = {'a':value}))
110
[15489]111class DisabilitiesSource(ContextualDictSourceFactoryBase):
112    """A source for filtering groups of students
113    """
114    #: name of dict to deliver from kofa utils.
115    DICT_NAME = 'DISABILITIES_DICT'
116
[16508]117class GradingSystemSource(ContextualDictSourceFactoryBase):
118    """A application category source delivers all special handling categories
119    provided for accommodation booking.
120    """
121    #: name of dict to deliver from kofa utils.
122    DICT_NAME = 'GRADING_SYSTEM_DICT'
[15489]123
[14742]124class ICustomSessionConfiguration(ISessionConfiguration):
125    """A session configuration object.
126    """
127
128    remita_enabled = schema.Bool(
129        title = _(u'Remita integration enabled'),
130        default = False,
131        )
132
[14755]133    interswitch_enabled = schema.Bool(
[16484]134        title = _(u'Interswitch Collegepay integration enabled'),
[14755]135        default = True,
136        )
137
[16484]138    interswitch_paydirect_enabled = schema.Bool(
139        title = _(u'Interswitch Paydirect integration enabled'),
140        default = True,
141        )
142
[15702]143    etranzact_webconnect_enabled = schema.Bool(
144        title = _(u'Etranzact Webconnect integration enabled'),
[15585]145        default = False,
146        )
147
[15702]148    etranzact_payoutlet_enabled = schema.Bool(
149        title = _(u'Etranzact Payoutlet integration enabled'),
150        default = False,
151        )
152
[14742]153class ICustomSessionConfigurationAdd(ICustomSessionConfiguration):
154    """A session configuration object in add mode.
155    """
156
157    academic_session = schema.Choice(
158        title = _(u'Academic Session'),
159        source = academic_sessions_vocab,
160        default = None,
161        required = True,
162        readonly = False,
163        )
164
165ICustomSessionConfigurationAdd[
166    'academic_session'].order =  ICustomSessionConfiguration[
167    'academic_session'].order
Note: See TracBrowser for help on using the repository browser.