[13814] | 1 | # -*- coding: utf-8 -*- |
---|
[7853] | 2 | ## $Id: interfaces.py 13824 2016-04-11 05:01:57Z henrik $ |
---|
| 3 | ## |
---|
| 4 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
| 5 | ## This program is free software; you can redistribute it and/or modify |
---|
| 6 | ## it under the terms of the GNU General Public License as published by |
---|
| 7 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 8 | ## (at your option) any later version. |
---|
| 9 | ## |
---|
| 10 | ## This program is distributed in the hope that it will be useful, |
---|
| 11 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 12 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 13 | ## GNU General Public License for more details. |
---|
| 14 | ## |
---|
| 15 | ## You should have received a copy of the GNU General Public License |
---|
| 16 | ## along with this program; if not, write to the Free Software |
---|
| 17 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 18 | ## |
---|
| 19 | """Customized interfaces of the university application package. |
---|
| 20 | """ |
---|
| 21 | |
---|
[8012] | 22 | from zope import schema |
---|
[13814] | 23 | from zc.sourcefactory.basic import BasicSourceFactory |
---|
[8051] | 24 | from waeup.kofa.applicants.interfaces import ( |
---|
[8053] | 25 | IApplicantBaseData, |
---|
[8051] | 26 | AppCatCertificateSource, CertificateSource) |
---|
| 27 | from waeup.kofa.schoolgrades import ResultEntryField |
---|
[8530] | 28 | from waeup.kofa.interfaces import ( |
---|
[13814] | 29 | SimpleKofaVocabulary, academic_sessions_vocab, validate_email, |
---|
| 30 | IKofaObject, ContextualDictSourceFactoryBase) |
---|
| 31 | from waeup.kofa.schema import FormattedDate, TextLineChoice, PhoneNumber |
---|
[8530] | 32 | from waeup.kofa.students.vocabularies import nats_vocab, GenderSource |
---|
| 33 | from waeup.kofa.applicants.interfaces import contextual_reg_num_source |
---|
[8928] | 34 | from kofacustom.nigeria.applicants.interfaces import ( |
---|
| 35 | LGASource, high_qual, high_grade, exam_types, |
---|
| 36 | INigeriaUGApplicant, INigeriaPGApplicant, |
---|
| 37 | INigeriaApplicantOnlinePayment, |
---|
[9006] | 38 | INigeriaUGApplicantEdit, INigeriaPGApplicantEdit, |
---|
| 39 | INigeriaApplicantUpdateByRegNo, |
---|
| 40 | IPUTMEApplicantEdit, |
---|
[8928] | 41 | ) |
---|
[8020] | 42 | from waeup.uniben.interfaces import MessageFactory as _ |
---|
[8247] | 43 | from waeup.uniben.payments.interfaces import ICustomOnlinePayment |
---|
[7853] | 44 | |
---|
[13814] | 45 | |
---|
| 46 | REGISTRATION_CATS = { |
---|
| 47 | 'corporate': ('Corporate Registration', 250000, 1), |
---|
| 48 | 'group': ('Group Registration', 200000, 2), |
---|
| 49 | 'individual': ('Individual Registration', 45000, 3), |
---|
| 50 | 'student': ('Student Registration', 5000, 4), |
---|
[13824] | 51 | 'fullpage': ('Full Page Advert', 250000, 5), |
---|
| 52 | 'halfpage': ('Half Page Advert', 150000, 6), |
---|
| 53 | 'quarterpage': ('Quarter Page Advert', 100000, 7), |
---|
[13814] | 54 | } |
---|
| 55 | |
---|
| 56 | class RegTypesSource(BasicSourceFactory): |
---|
| 57 | """A source that delivers all kinds of registrations. |
---|
| 58 | """ |
---|
| 59 | def getValues(self): |
---|
| 60 | sorted_items = sorted(REGISTRATION_CATS.items(), |
---|
| 61 | key=lambda element: element[1][2]) |
---|
| 62 | return [item[0] for item in sorted_items] |
---|
| 63 | |
---|
| 64 | def getTitle(self, value): |
---|
| 65 | return u"%s @ ₦ %s" % ( |
---|
| 66 | REGISTRATION_CATS[value][0], |
---|
| 67 | REGISTRATION_CATS[value][1]) |
---|
| 68 | |
---|
| 69 | class IUnibenRegistration(IKofaObject): |
---|
| 70 | """A Uniben registrant. |
---|
| 71 | """ |
---|
| 72 | |
---|
| 73 | suspended = schema.Bool( |
---|
| 74 | title = _(u'Account suspended'), |
---|
| 75 | default = False, |
---|
| 76 | required = False, |
---|
| 77 | ) |
---|
| 78 | |
---|
| 79 | locked = schema.Bool( |
---|
| 80 | title = _(u'Form locked'), |
---|
| 81 | default = False, |
---|
| 82 | required = False, |
---|
| 83 | ) |
---|
| 84 | |
---|
| 85 | applicant_id = schema.TextLine( |
---|
| 86 | title = _(u'Registrant Id'), |
---|
| 87 | required = False, |
---|
| 88 | readonly = False, |
---|
| 89 | ) |
---|
| 90 | |
---|
| 91 | firstname = schema.TextLine( |
---|
| 92 | title = _(u'First Name'), |
---|
| 93 | required = True, |
---|
| 94 | ) |
---|
| 95 | |
---|
| 96 | middlename = schema.TextLine( |
---|
| 97 | title = _(u'Middle Name'), |
---|
| 98 | required = False, |
---|
| 99 | ) |
---|
| 100 | |
---|
| 101 | lastname = schema.TextLine( |
---|
| 102 | title = _(u'Last Name (Surname)'), |
---|
| 103 | required = True, |
---|
| 104 | ) |
---|
| 105 | |
---|
[13819] | 106 | sex = schema.Choice( |
---|
| 107 | title = _(u'Sex'), |
---|
| 108 | source = GenderSource(), |
---|
| 109 | required = True, |
---|
[13814] | 110 | ) |
---|
| 111 | |
---|
| 112 | nationality = schema.Choice( |
---|
| 113 | vocabulary = nats_vocab, |
---|
| 114 | title = _(u'Nationality'), |
---|
| 115 | required = False, |
---|
| 116 | ) |
---|
| 117 | |
---|
| 118 | email = schema.ASCIILine( |
---|
| 119 | title = _(u'Email Address'), |
---|
| 120 | required = True, |
---|
| 121 | constraint=validate_email, |
---|
| 122 | ) |
---|
| 123 | |
---|
| 124 | phone = PhoneNumber( |
---|
| 125 | title = _(u'Phone'), |
---|
| 126 | description = u'', |
---|
| 127 | required = False, |
---|
| 128 | ) |
---|
| 129 | |
---|
[13819] | 130 | #perm_address = schema.Text( |
---|
| 131 | # title = _(u'Current Local Address'), |
---|
| 132 | # required = False, |
---|
| 133 | # readonly = False, |
---|
| 134 | # ) |
---|
| 135 | |
---|
| 136 | institution = schema.TextLine( |
---|
| 137 | title = _(u'Institution/Organisation'), |
---|
[13814] | 138 | required = False, |
---|
| 139 | readonly = False, |
---|
| 140 | ) |
---|
| 141 | |
---|
[13819] | 142 | lga = schema.Choice( |
---|
| 143 | source = LGASource(), |
---|
| 144 | title = _(u'State/LGA'), |
---|
| 145 | required = False, |
---|
| 146 | ) |
---|
| 147 | |
---|
| 148 | city = schema.TextLine( |
---|
| 149 | title = _(u'City'), |
---|
| 150 | required = False, |
---|
| 151 | readonly = False, |
---|
| 152 | ) |
---|
| 153 | |
---|
[13814] | 154 | registration_cats = schema.List( |
---|
| 155 | title = _(u'Registration Categories'), |
---|
| 156 | value_type = schema.Choice(source=RegTypesSource()), |
---|
| 157 | required = True, |
---|
| 158 | default = [], |
---|
| 159 | ) |
---|
| 160 | |
---|
| 161 | |
---|
| 162 | |
---|
[8928] | 163 | class ICustomUGApplicant(INigeriaUGApplicant): |
---|
[8012] | 164 | """An undergraduate applicant. |
---|
| 165 | |
---|
[8519] | 166 | This interface defines the least common multiple of all fields |
---|
| 167 | in ug application forms. In customized forms, fields can be excluded by |
---|
| 168 | adding them to the UG_OMIT* tuples. |
---|
[8012] | 169 | """ |
---|
| 170 | |
---|
[8928] | 171 | class ICustomPGApplicant(INigeriaPGApplicant): |
---|
[7853] | 172 | """A postgraduate applicant. |
---|
| 173 | |
---|
[8519] | 174 | This interface defines the least common multiple of all fields |
---|
| 175 | in pg application forms. In customized forms, fields can be excluded by |
---|
| 176 | adding them to the PG_OMIT* tuples. |
---|
[7866] | 177 | """ |
---|
| 178 | |
---|
[8012] | 179 | |
---|
[13814] | 180 | class ICustomApplicant(ICustomUGApplicant, ICustomPGApplicant, |
---|
| 181 | IUnibenRegistration): |
---|
[8012] | 182 | """An interface for both types of applicants. |
---|
| 183 | |
---|
[8928] | 184 | Attention: The ICustomPGApplicant field seetings will be overwritten |
---|
| 185 | by ICustomPGApplicant field settings. If a field is defined |
---|
[8727] | 186 | in both interfaces zope.schema validates only against the |
---|
[8928] | 187 | constraints in ICustomUGApplicant. This does not affect the forms |
---|
| 188 | since they are build on either ICustomUGApplicant or ICustomPGApplicant. |
---|
[8012] | 189 | """ |
---|
| 190 | |
---|
[8743] | 191 | def writeLogMessage(view, comment): |
---|
[8053] | 192 | """Adds an INFO message to the log file |
---|
| 193 | """ |
---|
| 194 | |
---|
| 195 | def createStudent(): |
---|
[8668] | 196 | """Create a student object from applicant data |
---|
[8053] | 197 | and copy applicant object. |
---|
| 198 | """ |
---|
| 199 | |
---|
[9056] | 200 | class ICustomUGApplicantEdit(INigeriaUGApplicantEdit): |
---|
[8727] | 201 | """An undergraduate applicant interface for edit forms. |
---|
[8012] | 202 | |
---|
| 203 | Here we can repeat the fields from base data and set the |
---|
| 204 | `required` and `readonly` attributes to True to further restrict |
---|
| 205 | the data access. Or we can allow only certain certificates to be |
---|
| 206 | selected by choosing the appropriate source. |
---|
| 207 | |
---|
| 208 | We cannot omit fields here. This has to be done in the |
---|
| 209 | respective form page. |
---|
| 210 | """ |
---|
| 211 | |
---|
[9056] | 212 | class ICustomPGApplicantEdit(INigeriaPGApplicantEdit): |
---|
[7866] | 213 | """A postgraduate applicant interface for editing. |
---|
| 214 | |
---|
| 215 | Here we can repeat the fields from base data and set the |
---|
| 216 | `required` and `readonly` attributes to True to further restrict |
---|
| 217 | the data access. Or we can allow only certain certificates to be |
---|
| 218 | selected by choosing the appropriate source. |
---|
| 219 | |
---|
| 220 | We cannot omit fields here. This has to be done in the |
---|
| 221 | respective form page. |
---|
[8017] | 222 | """ |
---|
[8454] | 223 | |
---|
[13814] | 224 | |
---|
[8928] | 225 | class ICustomApplicantOnlinePayment(INigeriaApplicantOnlinePayment): |
---|
[8247] | 226 | """An applicant payment via payment gateways. |
---|
| 227 | |
---|
| 228 | """ |
---|
[8530] | 229 | |
---|
[9056] | 230 | class IPUTMEApplicantEdit(IPUTMEApplicantEdit): |
---|
[8530] | 231 | """An undergraduate applicant interface for editing. |
---|
| 232 | |
---|
| 233 | Here we can repeat the fields from base data and set the |
---|
| 234 | `required` and `readonly` attributes to True to further restrict |
---|
| 235 | the data access. Or we can allow only certain certificates to be |
---|
| 236 | selected by choosing the appropriate source. |
---|
| 237 | |
---|
| 238 | We cannot omit fields here. This has to be done in the |
---|
| 239 | respective form page. |
---|
| 240 | """ |
---|
| 241 | |
---|
[9056] | 242 | class ICustomApplicantUpdateByRegNo(INigeriaApplicantUpdateByRegNo): |
---|
[8582] | 243 | """Representation of an applicant. |
---|
| 244 | |
---|
| 245 | Skip regular reg_number validation if reg_number is used for finding |
---|
| 246 | the applicant object. |
---|
| 247 | """ |
---|