[57] | 1 | #-*- mode: python; mode: fold -*- |
---|
[200] | 2 | # $Id: Students.py 488 2006-09-07 12:34:56Z joachim $ |
---|
[45] | 3 | from Globals import InitializeClass |
---|
| 4 | from AccessControl import ClassSecurityInfo |
---|
[164] | 5 | from AccessControl.SecurityManagement import newSecurityManager |
---|
[429] | 6 | from zExceptions import BadRequest |
---|
[47] | 7 | from Products.CMFCore.utils import UniqueObject, getToolByName |
---|
[45] | 8 | from Products.CMFCore.permissions import View |
---|
| 9 | from Products.CMFCore.permissions import ModifyPortalContent |
---|
[154] | 10 | from Products.CPSCore.CPSBase import CPSBase_adder, CPSBaseFolder |
---|
| 11 | #from Products.CPSCore.CPSBase import CPSBaseDocument as BaseDocument |
---|
| 12 | from Products.CPSDocument.CPSDocument import CPSDocument |
---|
| 13 | from Products.CPSCore.CPSBase import CPSBaseBTreeFolder as BaseBTreeFolder |
---|
[164] | 14 | from Products.CPSCore.CPSMembershipTool import CPSUnrestrictedUser |
---|
[361] | 15 | from Products.WAeUP_SRP.Academics import makeCertificateCode |
---|
[362] | 16 | import logging |
---|
| 17 | import csv,re |
---|
| 18 | import Globals |
---|
| 19 | p_home = Globals.package_home(globals()) |
---|
| 20 | i_home = Globals.INSTANCE_HOME |
---|
[398] | 21 | MAX_TRANS = 1000 |
---|
[154] | 22 | |
---|
[422] | 23 | def generateStudentId(): |
---|
| 24 | import random |
---|
[423] | 25 | r = random |
---|
| 26 | return "%c%d" % (r.choice('ABCDEFGHKLMNPQRSTUVWXY'),r.randint(99999,1000000)) |
---|
[422] | 27 | |
---|
[361] | 28 | class StudentsFolder(CPSDocument): ###( |
---|
| 29 | """ |
---|
| 30 | WAeUP container for the various WAeUP containers data |
---|
| 31 | """ |
---|
[362] | 32 | meta_type = 'StudentsFolder' |
---|
[361] | 33 | portal_type = meta_type |
---|
| 34 | security = ClassSecurityInfo() |
---|
[154] | 35 | |
---|
[361] | 36 | security.declareProtected(ModifyPortalContent,"loadFullTimeStudentsFromCSV")###( |
---|
| 37 | def loadFullTimeStudentsFromCSV(self): |
---|
| 38 | """load Fulltime Studentdata from CSV values""" |
---|
| 39 | #return |
---|
[398] | 40 | import transaction |
---|
| 41 | tr_count = 0 |
---|
[361] | 42 | name = 'short_full_time' |
---|
| 43 | no_import = False |
---|
[395] | 44 | if not no_import: |
---|
| 45 | no_import = open("%s/import/%s_not_imported.csv" % (i_home,name),"w") |
---|
| 46 | no_import.write('"MatricNo","EntryRegNo","CurrentSession","StudentLevel","fullname","FirstName","MiddleName","Lastname","FormerSurname","Sex","Nationality","State","LGA","PermanentAddress","PermanentAddressCity","CampusAddress","PhoneNumber","Emailaddress","Mode","CourseMajor","Faculty","Dept"\n') |
---|
[361] | 47 | logger = logging.getLogger('%s_import' % name) |
---|
| 48 | logger.info('Start loading from %s.csv' % name) |
---|
| 49 | students_folder = self.portal_catalog({'meta_type': 'StudentsFolder'})[-1].getObject() |
---|
| 50 | try: |
---|
| 51 | students = csv.DictReader(open("%s/import/%s.csv" % (i_home,name),"rb")) |
---|
| 52 | except: |
---|
| 53 | logger.error('Error reading %s.csv' % name) |
---|
| 54 | return |
---|
[422] | 55 | l = self.portal_catalog({'meta_type': "StudentClearance",}) |
---|
| 56 | matrics = [] |
---|
[361] | 57 | for s in l: |
---|
[422] | 58 | matrics.append(s.getObject().getContent().matric_no) |
---|
[423] | 59 | print matrics |
---|
[361] | 60 | l = self.portal_catalog({'meta_type': "Certificate"}) |
---|
| 61 | certs = {} |
---|
| 62 | for c in l: |
---|
[362] | 63 | certs[c.id] = c.getObject() |
---|
[361] | 64 | for student in students: |
---|
[393] | 65 | logger.info('processing "%(MatricNo)s","%(EntryRegNo)s","%(CurrentSession)s","%(StudentLevel)s","%(fullname)s","%(FirstName)s","%(MiddleName)s","%(Lastname)s","%(FormerSurname)s","%(Sex)s","%(Nationality)s","%(State)s","%(LGA)s","%(PermanentAddress)s","%(PermanentAddressCity)s","%(CampusAddress)s","%(PhoneNumber)s","%(Emailaddress)s","%(Mode)s","%(CourseMajor)s","%(Faculty)s","%(Dept)s"\n' % student) |
---|
[361] | 66 | sid = student.get('MatricNo') |
---|
[396] | 67 | if sid == "": |
---|
| 68 | em = 'Empty MatricNo\n' |
---|
| 69 | logger.info(em) |
---|
| 70 | no_import.write(em) |
---|
| 71 | no_import.write('"%(MatricNo)s","%(EntryRegNo)s","%(CurrentSession)s","%(StudentLevel)s","%(fullname)s","%(FirstName)s","%(MiddleName)s","%(Lastname)s","%(FormerSurname)s","%(Sex)s","%(Nationality)s","%(State)s","%(LGA)s","%(PermanentAddress)s","%(PermanentAddressCity)s","%(CampusAddress)s","%(PhoneNumber)s","%(Emailaddress)s","%(Mode)s","%(CourseMajor)s","%(Faculty)s","%(Dept)s"\n' % student) |
---|
| 72 | continue |
---|
[361] | 73 | certcode = makeCertificateCode(student.get('CourseMajor')) |
---|
| 74 | if certcode not in certs.keys(): |
---|
[393] | 75 | em = 'Certificate with ID %s %s not found\n' % (certcode, student.get('CourseMajor')) |
---|
[361] | 76 | logger.info(em) |
---|
[393] | 77 | no_import.write(em) |
---|
| 78 | no_import.write('"%(MatricNo)s","%(EntryRegNo)s","%(CurrentSession)s","%(StudentLevel)s","%(fullname)s","%(FirstName)s","%(MiddleName)s","%(Lastname)s","%(FormerSurname)s","%(Sex)s","%(Nationality)s","%(State)s","%(LGA)s","%(PermanentAddress)s","%(PermanentAddressCity)s","%(CampusAddress)s","%(PhoneNumber)s","%(Emailaddress)s","%(Mode)s","%(CourseMajor)s","%(Faculty)s","%(Dept)s"\n' % student) |
---|
[361] | 79 | continue |
---|
[395] | 80 | level = student.get('StudentLevel') |
---|
[426] | 81 | try: |
---|
[395] | 82 | int(level) |
---|
| 83 | except: |
---|
| 84 | em = 'Student with ID %(MatricNo)s StudentLevel is empty\n' % student |
---|
| 85 | logger.info(em) |
---|
| 86 | no_import.write(em) |
---|
| 87 | no_import.write('"%(MatricNo)s","%(EntryRegNo)s","%(CurrentSession)s","%(StudentLevel)s","%(fullname)s","%(FirstName)s","%(MiddleName)s","%(Lastname)s","%(FormerSurname)s","%(Sex)s","%(Nationality)s","%(State)s","%(LGA)s","%(PermanentAddress)s","%(PermanentAddressCity)s","%(CampusAddress)s","%(PhoneNumber)s","%(Emailaddress)s","%(Mode)s","%(CourseMajor)s","%(Faculty)s","%(Dept)s"\n' % student) |
---|
| 88 | continue |
---|
[422] | 89 | matric_no = student.get('MatricNo') |
---|
| 90 | if matric_no not in matrics: |
---|
| 91 | matrics.append(matric_no) |
---|
| 92 | sid = generateStudentId() |
---|
[361] | 93 | #self.log('Creating Faculty %(id)s = %(Title)s' % faculty) |
---|
[426] | 94 | logger.info('%(tr_count)s: Creating Student with ID %(sid)s Matric_no %(matric_no)s ' % vars()) |
---|
[429] | 95 | not_created = True |
---|
| 96 | while not_created: |
---|
| 97 | try: |
---|
| 98 | students_folder.invokeFactory('Student', sid) |
---|
| 99 | not_created = False |
---|
| 100 | except BadRequest: |
---|
| 101 | sid = generateStudentId() |
---|
| 102 | logger.info('%(tr_count)s: Creating Student with ID %(sid)s Matric_no %(matric_no)s ' % vars()) |
---|
[361] | 103 | s = getattr(self,sid) |
---|
[472] | 104 | s.invokeFactory('StudentApplication','application') |
---|
| 105 | da = {'Title': 'Application Data'} |
---|
[361] | 106 | s.invokeFactory('StudentPersonal','personal') |
---|
[446] | 107 | da['jamb_reg_no'] = student.get('EntryRegNo') |
---|
[362] | 108 | sp = s.personal |
---|
[361] | 109 | d = {'Title': 'Personal Data'} |
---|
[422] | 110 | s.invokeFactory('StudentClearance','clearance') |
---|
[427] | 111 | sc = s.clearance |
---|
[422] | 112 | dc = {'Title': 'Clearance Data'} |
---|
| 113 | dc['matric_no'] = matric_no |
---|
[472] | 114 | lga = student.get('State') + ' / ' + student.get('LGA') |
---|
[427] | 115 | dc['lga'] = lga |
---|
[422] | 116 | dc['nationality'] = student.get('Nationality') |
---|
| 117 | dc['email'] = student.get('Emailaddress') |
---|
[361] | 118 | d['firstname'] = student.get('FirstName') |
---|
| 119 | d['middlename'] = student.get('MiddleName') |
---|
[362] | 120 | d['lastname'] = student.get('Lastname') |
---|
[361] | 121 | d['former_surname'] = student.get('FormerSurname') |
---|
[362] | 122 | d['sex'] = student.get('Sex') == 'F' |
---|
[422] | 123 | d['perm_address'] = student.get('PermanentAddress') |
---|
| 124 | d['perm_city'] = student.get('PermanentAddressCity') |
---|
[361] | 125 | d['campus_address'] = student.get('CampusAddress') |
---|
| 126 | d['phone'] = student.get('PhoneNumber') |
---|
[472] | 127 | s.application.getContent().edit(mapping=da) |
---|
[362] | 128 | sp.getContent().edit(mapping=d) |
---|
[422] | 129 | sc.getContent().edit(mapping=dc) |
---|
[362] | 130 | # |
---|
| 131 | # Study Course |
---|
| 132 | # |
---|
| 133 | s.invokeFactory('StudentStudyCourse','study_course') |
---|
| 134 | sc = s.study_course |
---|
| 135 | d = {} |
---|
[422] | 136 | #d['matricel_no'] = student.get('MatricNo') |
---|
| 137 | #d['entry_reg_no'] = student.get('EntryRegNo') |
---|
| 138 | #d['faculty'] = student.get('Faculty') |
---|
| 139 | #d['department'] = student.get('Dept') |
---|
[453] | 140 | d['study_course'] = certcode |
---|
[454] | 141 | css = student.get('CurrentSession') or '2004-2005' |
---|
| 142 | cs = int(css.split('-')[0]) - 2000 |
---|
| 143 | cl = int(student.get('StudentLevel'))/100 |
---|
| 144 | d['entry_session'] = "200%s" % (cs - cl) |
---|
[362] | 145 | sc.getContent().edit(mapping=d) |
---|
[364] | 146 | # |
---|
| 147 | # Level |
---|
| 148 | # |
---|
| 149 | l = getattr(sc,level,None) |
---|
| 150 | if l is None: |
---|
| 151 | #self.log('Creating Department %(DeptCode)s = %(Description)s' % dep) |
---|
| 152 | logger.info('Creating Level %(StudentLevel)s for %(fullname)s' % student) |
---|
[454] | 153 | sc.invokeFactory('StudentStudyLevel', level) |
---|
[364] | 154 | l = getattr(sc, level) |
---|
| 155 | certificate = certs[certcode] |
---|
| 156 | cert_level = getattr(certificate,level,None) |
---|
| 157 | if cert_level is None: |
---|
| 158 | logger.info('Level %(level)s not in %(certcode)s' % vars()) |
---|
| 159 | l.getContent().edit(mapping={'Title': "Level %s" % level}) |
---|
[464] | 160 | l.invokeFactory('StudentSemester','first') |
---|
| 161 | l.invokeFactory('StudentSemester','second') |
---|
[364] | 162 | first_s = getattr(l,'first') |
---|
| 163 | first_s.getContent().edit(mapping={'Title': 'First Semester'}) |
---|
| 164 | second_s = getattr(l,'second') |
---|
| 165 | second_s.getContent().edit(mapping={'Title': 'Second Semester'}) |
---|
[361] | 166 | else: |
---|
[393] | 167 | em = 'Student with ID %(MatricNo)s %(fullname)s already exists\n' % student |
---|
[361] | 168 | logger.info(em) |
---|
[393] | 169 | no_import.write(em) |
---|
| 170 | no_import.write('"%(MatricNo)s","%(EntryRegNo)s","%(CurrentSession)s","%(StudentLevel)s","%(fullname)s","%(FirstName)s","%(MiddleName)s","%(Lastname)s","%(FormerSurname)s","%(Sex)s","%(Nationality)s","%(State)s","%(LGA)s","%(PermanentAddress)s","%(PermanentAddressCity)s","%(CampusAddress)s","%(PhoneNumber)s","%(Emailaddress)s","%(Mode)s","%(CourseMajor)s","%(Faculty)s","%(Dept)s"\n' % student) |
---|
[398] | 171 | if tr_count > MAX_TRANS: |
---|
[422] | 172 | transaction.commit() |
---|
| 173 | em = 'Transaction commited\n' % student |
---|
[398] | 174 | logger.info(em) |
---|
| 175 | tr_count = 0 |
---|
| 176 | tr_count += 1 |
---|
[423] | 177 | return self.REQUEST.RESPONSE.redirect("%s" % self.REQUEST.get('URL1')) |
---|
[393] | 178 | return self.students.academics_contents() |
---|
[361] | 179 | ###) |
---|
[382] | 180 | |
---|
[398] | 181 | security.declareProtected(ModifyPortalContent,"loadFullTimeStudentsResultsFromCSV") ###( |
---|
[396] | 182 | def loadFullTimeStudentsResultsFromCSV(self): |
---|
| 183 | """load Fulltime Studentdata from CSV values""" |
---|
| 184 | #return |
---|
[398] | 185 | import transaction |
---|
| 186 | tr_count = 0 |
---|
| 187 | name = 'short_full_time_results_2004_2005' |
---|
[396] | 188 | no_import = False |
---|
| 189 | if not no_import: |
---|
| 190 | no_import = open("%s/import/%s_not_imported.csv" % (i_home,name),"w") |
---|
| 191 | no_import.write('"Matnumber","CosCode","Ansbook","CosStuatus","Session","Mat_Cos","Score","CarryLevel","Grade","Weight","Semster","Verdict","Level","id","GPA"\n') |
---|
| 192 | logger = logging.getLogger('%s_import' % name) |
---|
| 193 | logger.info('Start loading from %s.csv' % name) |
---|
| 194 | students_folder = self.portal_catalog({'meta_type': 'StudentsFolder'})[-1].getObject() |
---|
| 195 | try: |
---|
| 196 | results = csv.DictReader(open("%s/import/%s.csv" % (i_home,name),"rb")) |
---|
| 197 | except: |
---|
| 198 | logger.error('Error reading %s.csv' % name) |
---|
| 199 | return |
---|
[398] | 200 | l = self.portal_catalog({'meta_type': "Course"}) |
---|
| 201 | courses = {} |
---|
| 202 | for c in l: |
---|
| 203 | courses[c.id] = c.getObject() |
---|
[396] | 204 | for result in results: |
---|
| 205 | sid = result.get('Matnumber') |
---|
[452] | 206 | res = self.portal_catalog({'meta_type': "StudentClearance", |
---|
| 207 | 'matric_no': sid }) |
---|
| 208 | if not res: |
---|
[398] | 209 | em = 'Student with ID %(Matnumber)s not found\n' % result |
---|
[396] | 210 | logger.info(em) |
---|
| 211 | no_import.write(em) |
---|
[398] | 212 | no_import.write('"%(Matnumber)s","%(CosCode)s","%(Ansbook)s","%(CosStuatus)s","%(Session)s","%(Mat_Cos)s","%(Score)s","%(CarryLevel)s","%(Grade)s","%(Weight)s","%(Semster)s","%(Verdict)s","%(Level)s","%(id)s","%(GPA)s"\n' % result) |
---|
[396] | 213 | continue |
---|
[452] | 214 | sf = res[0].getObject().aq_parent |
---|
[454] | 215 | result['StudentId'] = sf.getId() |
---|
[398] | 216 | course = result.get('CosCode') |
---|
| 217 | if course not in courses.keys(): |
---|
| 218 | em = 'Course with ID %(CosCode)s not found\n' % result |
---|
[396] | 219 | logger.info(em) |
---|
| 220 | no_import.write(em) |
---|
[398] | 221 | no_import.write('"%(Matnumber)s","%(CosCode)s","%(Ansbook)s","%(CosStuatus)s","%(Session)s","%(Mat_Cos)s","%(Score)s","%(CarryLevel)s","%(Grade)s","%(Weight)s","%(Semster)s","%(Verdict)s","%(Level)s","%(id)s","%(GPA)s"\n' % result) |
---|
[396] | 222 | continue |
---|
[398] | 223 | level = result.get('Level') |
---|
[426] | 224 | try: |
---|
[396] | 225 | int(level) |
---|
| 226 | except: |
---|
[398] | 227 | em = 'Result for result with ID %(Matnumber)s Course %(CosCode)s Level is empty\n' % result |
---|
[396] | 228 | logger.info(em) |
---|
| 229 | no_import.write(em) |
---|
[398] | 230 | no_import.write('"%(Matnumber)s","%(CosCode)s","%(Ansbook)s","%(CosStuatus)s","%(Session)s","%(Mat_Cos)s","%(Score)s","%(CarryLevel)s","%(Grade)s","%(Weight)s","%(Semster)s","%(Verdict)s","%(Level)s","%(id)s","%(GPA)s"\n' % result) |
---|
[396] | 231 | continue |
---|
| 232 | sc = getattr(sf,'study_course') |
---|
| 233 | l = getattr(sc,level,None) |
---|
| 234 | if l is None: |
---|
| 235 | #self.log('Creating Department %(DeptCode)s = %(Description)s' % dep) |
---|
[454] | 236 | logger.info('Creating Level %(Level)s for %(StudentId)s %(Matnumber)s' % result) |
---|
| 237 | sc.invokeFactory('StudentStudyLevel', level) |
---|
[396] | 238 | l = getattr(sc, level) |
---|
[464] | 239 | l.invokeFactory('StudentSemester','first') |
---|
| 240 | l.invokeFactory('StudentSemester','second') |
---|
[396] | 241 | first_s = getattr(l,'first') |
---|
| 242 | first_s.getContent().edit(mapping={'Title': 'First Semester'}) |
---|
| 243 | second_s = getattr(l,'second') |
---|
| 244 | second_s.getContent().edit(mapping={'Title': 'Second Semester'}) |
---|
[454] | 245 | snr = result.get('Semster') |
---|
[396] | 246 | semester = getattr(l,'first') |
---|
[398] | 247 | if snr == "2": |
---|
[396] | 248 | semester = getattr(l,'second') |
---|
[464] | 249 | logger.info('Creating StudentCourseResult %(CosCode)s in Level %(Level)s for %(StudentId)s %(Matnumber)s' % result) |
---|
| 250 | semester.invokeFactory('StudentCourseResult',course) |
---|
[398] | 251 | ct = getattr(semester,course) |
---|
| 252 | d = {} |
---|
[454] | 253 | dlev = {} |
---|
[398] | 254 | d['ansbook'] = result.get('Ansbook') |
---|
| 255 | d['status'] = result.get('CosStuatus') |
---|
| 256 | d['score'] = result.get('Score') |
---|
[454] | 257 | dlev['session'] = result.get('Session') |
---|
| 258 | dlev['carry_level'] = result.get('CarryLevel') |
---|
[398] | 259 | d['grade'] = result.get('Grade') |
---|
[454] | 260 | #d['weight'] = result.get('Weight') |
---|
| 261 | dlev['verdict'] = result.get('Verdict') |
---|
| 262 | #d['import_id'] = result.get('id') |
---|
| 263 | #gpa = result.get('GPA').replace(',','.') |
---|
| 264 | #d['gpa'] = float(gpa) |
---|
[398] | 265 | ct.getContent().edit(mapping = d) |
---|
[454] | 266 | l.getContent().edit(mapping = dlev) |
---|
[398] | 267 | if tr_count > MAX_TRANS: |
---|
| 268 | transaction.commit() |
---|
| 269 | tr_count = 0 |
---|
| 270 | tr_count += 1 |
---|
| 271 | return self.students.academics_contents() |
---|
[426] | 272 | |
---|
[398] | 273 | ###) |
---|
[396] | 274 | |
---|
[457] | 275 | security.declareProtected(ModifyPortalContent,"loadJAMBFromCSV")###( |
---|
| 276 | def loadJAMBFromCSV(self): |
---|
| 277 | """load JAMB data from CSV values""" |
---|
| 278 | #return |
---|
| 279 | students_folder = self.portal_catalog({'meta_type': 'StudentsFolder'})[-1].getObject() |
---|
| 280 | import transaction |
---|
| 281 | tr_count = 0 |
---|
| 282 | name = 'SampleJAMBDataII' |
---|
| 283 | no_import = False |
---|
| 284 | if not no_import: |
---|
| 285 | no_import = open("%s/import/%s_not_imported.csv" % (i_home,name),"w") |
---|
| 286 | no_import.write('REG-NO,NAME,SEX,STATE,LGA,ENG-SCORE,SUBJ1,SUBJ1-SCORE,SUBJ2,SUBJ2-SCORE,SUBJ3,SUBJ3-SCORE,AGGREGATE,UNIV1,FACULTY1,COURSE1,UNIV2,FACULTY2,COURSE2') |
---|
| 287 | logger = logging.getLogger('%s_import' % name) |
---|
| 288 | logger.info('Start loading from %s.csv' % name) |
---|
| 289 | try: |
---|
| 290 | result = csv.DictReader(open("%s/import/%s.csv" % (i_home,name),"rb")) |
---|
| 291 | except: |
---|
| 292 | logger.error('Error reading %s.csv' % name) |
---|
| 293 | return |
---|
| 294 | for jamb in result: |
---|
| 295 | logger.info('processing %(REG-NO)s,%(NAME)s,%(SEX)s,%(STATE)s,%(LGA)s,%(ENG-SCORE)s,%(SUBJ1)s,%(SUBJ1-SCORE)s,%(SUBJ2)s,%(SUBJ2-SCORE)s,%(SUBJ3)s,%(SUBJ3-SCORE)s,%(AGGREGATE)s,%(UNIV1)s,%(FACULTY1)s,%(COURSE1)s,%(UNIV2)s,%(FACULTY2)s,%(COURSE2)s\n' % jamb) |
---|
| 296 | jamb_reg_no = jamb.get('REG-NO') |
---|
[472] | 297 | res = self.portal_catalog({'meta_type': "StudentApplication", |
---|
[457] | 298 | 'jamb_reg_no': jamb_reg_no }) |
---|
| 299 | if res: |
---|
| 300 | em = 'Student with REG-NO %(REG-NO)s already exists\n' % jamb |
---|
| 301 | logger.info(em) |
---|
| 302 | no_import.write(em) |
---|
| 303 | no_import.write('%(REG-NO)s,%(NAME)s,%(SEX)s,%(STATE)s,%(LGA)s,%(ENG-SCORE)s,%(SUBJ1)s,%(SUBJ1-SCORE)s,%(SUBJ2)s,%(SUBJ2-SCORE)s,%(SUBJ3)s,%(SUBJ3-SCORE)s,%(AGGREGATE)s,%(UNIV1)s,%(FACULTY1)s,%(COURSE1)s,%(UNIV2)s,%(FACULTY2)s,%(COURSE2)s\n' % jamb) |
---|
| 304 | continue |
---|
| 305 | sid = generateStudentId() |
---|
| 306 | #self.log('Creating Faculty %(id)s = %(Title)s' % faculty) |
---|
| 307 | not_created = True |
---|
| 308 | while not_created: |
---|
| 309 | try: |
---|
| 310 | students_folder.invokeFactory('Student', sid) |
---|
| 311 | not_created = False |
---|
| 312 | except BadRequest: |
---|
| 313 | sid = generateStudentId() |
---|
| 314 | logger.info('%(tr_count)s: Creating Student with ID %(sid)s REG-NO %(jamb_reg_no)s ' % vars()) |
---|
| 315 | s = getattr(self,sid) |
---|
[472] | 316 | s.invokeFactory('StudentApplication','application') |
---|
| 317 | da = {'Title': 'Application Data'} |
---|
[464] | 318 | ## s.invokeFactory('StudentPersonal','personal') |
---|
| 319 | ## sp = s.personal |
---|
| 320 | ## d = {'Title': 'Personal Data'} |
---|
| 321 | ## s.invokeFactory('StudentClearance','clearance') |
---|
| 322 | ## sc = s.clearance |
---|
| 323 | ## dc = {'Title': 'Clearance Data'} |
---|
[457] | 324 | da["jamb_reg_no"] = jamb.get("REG-NO") |
---|
| 325 | da["jamb_lastname"] = jamb.get("NAME") |
---|
[464] | 326 | ## d["lastname"] = jamb.get("NAME") |
---|
[457] | 327 | da["jamb_sex"] = jamb.get("SEX") |
---|
| 328 | da["jamb_state"] = jamb.get("STATE") |
---|
| 329 | da["jamb_lga"] = jamb.get("LGA") |
---|
| 330 | da["jamb_score"] = jamb.get("AGGREGATE") |
---|
| 331 | da["jamb_first_cos"] = jamb.get("COURSE1") |
---|
| 332 | da["jamb_second_cos"] = jamb.get("COURSE2") |
---|
| 333 | da["jamb_first_uni"] = jamb.get("UNIV1") |
---|
| 334 | da["jamb_second_uni"] = jamb.get("UNIV2") |
---|
[464] | 335 | ## s.personal.getContent().edit(mapping=d) |
---|
[472] | 336 | s.application.getContent().edit(mapping=da) |
---|
[457] | 337 | return self.REQUEST.RESPONSE.redirect("%s" % self.REQUEST.get('URL1')) |
---|
| 338 | ###) |
---|
[426] | 339 | |
---|
[488] | 340 | security.declareProtected(View,"getStudentByRegNo") |
---|
| 341 | def getStudentByRegNo(self,reg_no): |
---|
| 342 | """search student by JAMB Reg No and return StudentFolder""" |
---|
| 343 | search = self.portal_catalog({'meta_type': 'StudentApplication', |
---|
| 344 | 'jamb_reg_no': reg_no, |
---|
| 345 | }) |
---|
| 346 | if len(search) < 1: |
---|
| 347 | return None |
---|
| 348 | return search[0].getObject().aq_parent |
---|
[472] | 349 | |
---|
[364] | 350 | security.declareProtected(View,"Title") |
---|
| 351 | def Title(self): |
---|
| 352 | """compose title""" |
---|
[382] | 353 | return "Student Section" |
---|
[361] | 354 | |
---|
| 355 | InitializeClass(StudentsFolder) |
---|
| 356 | |
---|
| 357 | def addStudentsFolder(container, id, REQUEST=None, **kw): |
---|
| 358 | """Add a Student.""" |
---|
| 359 | ob = StudentsFolder(id, **kw) |
---|
| 360 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 361 | ###) |
---|
| 362 | |
---|
[57] | 363 | class Student(CPSDocument): ###( |
---|
| 364 | """ |
---|
[154] | 365 | WAeUP Student container for the various student data |
---|
[57] | 366 | """ |
---|
| 367 | meta_type = 'Student' |
---|
| 368 | portal_type = meta_type |
---|
| 369 | security = ClassSecurityInfo() |
---|
[154] | 370 | |
---|
[152] | 371 | security.declareProtected(View,"Title") |
---|
| 372 | def Title(self): |
---|
| 373 | """compose title""" |
---|
[153] | 374 | reg_nr = self.getId()[1:] |
---|
[362] | 375 | data = getattr(self,'personal',None) |
---|
[152] | 376 | if data: |
---|
| 377 | content = data.getContent() |
---|
| 378 | return "%s %s" % (content.firstname,content.lastname) |
---|
[472] | 379 | data = getattr(self,'application',None) |
---|
[464] | 380 | if data: |
---|
| 381 | content = data.getContent() |
---|
| 382 | return "%s" % (content.jamb_lastname) |
---|
[152] | 383 | return self.title |
---|
[154] | 384 | |
---|
[57] | 385 | InitializeClass(Student) |
---|
| 386 | |
---|
| 387 | def addStudent(container, id, REQUEST=None, **kw): |
---|
| 388 | """Add a Student.""" |
---|
| 389 | ob = Student(id, **kw) |
---|
| 390 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 391 | |
---|
| 392 | ###) |
---|
[91] | 393 | |
---|
[89] | 394 | class StudentPersonal(CPSDocument): ###( |
---|
| 395 | """ |
---|
[154] | 396 | WAeUP Student container for the various student data |
---|
[89] | 397 | """ |
---|
| 398 | meta_type = 'StudentPersonal' |
---|
| 399 | portal_type = meta_type |
---|
| 400 | security = ClassSecurityInfo() |
---|
[152] | 401 | |
---|
| 402 | security.declareProtected(View,"Title") |
---|
| 403 | def Title(self): |
---|
| 404 | """compose title""" |
---|
| 405 | content = self.getContent() |
---|
[364] | 406 | #return "Personal Data for %s %s" % (content.firstname,content.lastname) |
---|
| 407 | return "Personal Data" |
---|
[152] | 408 | |
---|
[154] | 409 | |
---|
[89] | 410 | InitializeClass(StudentPersonal) |
---|
| 411 | |
---|
| 412 | def addStudentPersonal(container, id, REQUEST=None, **kw): |
---|
| 413 | """Add a Students personal data.""" |
---|
| 414 | ob = StudentPersonal(id, **kw) |
---|
| 415 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 416 | |
---|
| 417 | ###) |
---|
| 418 | |
---|
[423] | 419 | class StudentClearance(CPSDocument): ###( |
---|
| 420 | """ |
---|
| 421 | WAeUP Student container for the various student data |
---|
| 422 | """ |
---|
| 423 | meta_type = 'StudentClearance' |
---|
| 424 | portal_type = meta_type |
---|
| 425 | security = ClassSecurityInfo() |
---|
| 426 | |
---|
| 427 | security.declareProtected(View,"Title") |
---|
| 428 | def Title(self): |
---|
| 429 | """compose title""" |
---|
| 430 | content = self.getContent() |
---|
| 431 | #return "Clearance Data for %s %s" % (content.firstname,content.lastname) |
---|
| 432 | return "Clearance Data" |
---|
| 433 | |
---|
| 434 | |
---|
| 435 | InitializeClass(StudentClearance) |
---|
| 436 | |
---|
| 437 | def addStudentClearance(container, id, REQUEST=None, **kw): |
---|
| 438 | """Add a Students personal data.""" |
---|
| 439 | ob = StudentClearance(id, **kw) |
---|
| 440 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 441 | |
---|
| 442 | ###) |
---|
| 443 | |
---|
[458] | 444 | class StudyLevel(CPSDocument): ###( |
---|
| 445 | """ |
---|
| 446 | WAeUP StudyLevel containing the courses and students |
---|
| 447 | """ |
---|
| 448 | meta_type = 'StudyLevel' |
---|
| 449 | portal_type = meta_type |
---|
| 450 | security = ClassSecurityInfo() |
---|
| 451 | |
---|
| 452 | security.declareProtected(View,"Title") |
---|
| 453 | def Title(self): |
---|
| 454 | """compose title""" |
---|
| 455 | return "Level %s" % self.aq_parent.getId() |
---|
| 456 | |
---|
[472] | 457 | |
---|
[458] | 458 | InitializeClass(StudyLevel) |
---|
| 459 | |
---|
| 460 | def addStudyLevel(container, id, REQUEST=None, **kw): |
---|
| 461 | """Add a StudyLevel.""" |
---|
| 462 | ob = StudyLevel(id, **kw) |
---|
| 463 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 464 | |
---|
| 465 | ###) |
---|
| 466 | |
---|
[454] | 467 | class StudentStudyLevel(CPSDocument): ###( |
---|
| 468 | """ |
---|
| 469 | WAeUP Student container for the various student data |
---|
| 470 | """ |
---|
| 471 | meta_type = 'StudentStudyLevel' |
---|
| 472 | portal_type = meta_type |
---|
| 473 | security = ClassSecurityInfo() |
---|
| 474 | |
---|
| 475 | security.declareProtected(View,"Title") |
---|
| 476 | def Title(self): |
---|
| 477 | """compose title""" |
---|
| 478 | return "Level %s" % self.aq_parent.getId() |
---|
| 479 | |
---|
| 480 | security.declareProtected(View,"gpa") |
---|
| 481 | def gpa(self): |
---|
| 482 | """calculate the gpa""" |
---|
| 483 | sum = 0 |
---|
| 484 | course_count = 0 |
---|
| 485 | for semester in ('first','second'): |
---|
| 486 | sf=getattr(self,semester) |
---|
| 487 | for sc in sf.objectValues(): |
---|
| 488 | result = sc.getContent() |
---|
| 489 | res = self.portal_catalog({'meta_type': 'Course', |
---|
| 490 | 'id': sc.aq_parent.id}) |
---|
| 491 | if len(res) != 1: |
---|
| 492 | continue |
---|
| 493 | course = res[0].getObject().getContent() |
---|
| 494 | sum += course.credits * ['F','E','D','C','B','A'].index(result.grade) |
---|
| 495 | course_count += 1 |
---|
| 496 | if course_count: |
---|
| 497 | return sum/course_count |
---|
| 498 | return 0.0 |
---|
[472] | 499 | |
---|
[454] | 500 | InitializeClass(StudentStudyLevel) |
---|
| 501 | |
---|
| 502 | def addStudentStudyLevel(container, id, REQUEST=None, **kw): |
---|
| 503 | """Add a Students personal data.""" |
---|
| 504 | ob = StudentStudyLevel(id, **kw) |
---|
| 505 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 506 | |
---|
| 507 | ###) |
---|
| 508 | |
---|
[362] | 509 | class StudentStudyCourse(CPSDocument): ###( |
---|
| 510 | """ |
---|
| 511 | WAeUP Student container for the various student data |
---|
| 512 | """ |
---|
| 513 | meta_type = 'StudentStudyCourse' |
---|
| 514 | portal_type = meta_type |
---|
| 515 | security = ClassSecurityInfo() |
---|
| 516 | |
---|
[364] | 517 | security.declareProtected(View,"Title") |
---|
| 518 | def Title(self): |
---|
| 519 | """compose title""" |
---|
| 520 | content = self.getContent() |
---|
[453] | 521 | return "Study Course" |
---|
[362] | 522 | |
---|
| 523 | |
---|
| 524 | InitializeClass(StudentStudyCourse) |
---|
| 525 | |
---|
| 526 | def addStudentStudyCourse(container, id, REQUEST=None, **kw): |
---|
| 527 | """Add a Students personal data.""" |
---|
| 528 | ob = StudentStudyCourse(id, **kw) |
---|
| 529 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 530 | |
---|
| 531 | ###) |
---|
| 532 | |
---|
[472] | 533 | class StudentApplication(CPSDocument): ###( |
---|
[179] | 534 | """ |
---|
| 535 | WAeUP Student container for the various student data |
---|
| 536 | """ |
---|
[472] | 537 | meta_type = 'StudentApplication' |
---|
[179] | 538 | portal_type = meta_type |
---|
| 539 | security = ClassSecurityInfo() |
---|
| 540 | |
---|
[181] | 541 | security.declareProtected(View,"Title") |
---|
| 542 | def Title(self): |
---|
| 543 | """compose title""" |
---|
[472] | 544 | return "Application Data" |
---|
[179] | 545 | |
---|
[181] | 546 | |
---|
[472] | 547 | InitializeClass(StudentApplication) |
---|
[179] | 548 | |
---|
[472] | 549 | def addStudentApplication(container, id, REQUEST=None, **kw): |
---|
[179] | 550 | """Add a Students eligibility data.""" |
---|
[472] | 551 | ob = StudentApplication(id, **kw) |
---|
[179] | 552 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 553 | |
---|
| 554 | ###) |
---|
[181] | 555 | |
---|
[464] | 556 | class StudentSemester(CPSDocument): ###( |
---|
| 557 | """ |
---|
| 558 | WAeUP StudentSemester containing the courses and students |
---|
| 559 | """ |
---|
| 560 | meta_type = 'StudentSemester' |
---|
| 561 | portal_type = meta_type |
---|
| 562 | security = ClassSecurityInfo() |
---|
| 563 | |
---|
| 564 | InitializeClass(StudentSemester) |
---|
| 565 | |
---|
| 566 | def addStudentSemester(container, id, REQUEST=None, **kw): |
---|
| 567 | """Add a StudentSemester.""" |
---|
| 568 | ob = StudentSemester(id, **kw) |
---|
| 569 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 570 | |
---|
| 571 | ###) |
---|
| 572 | |
---|
[454] | 573 | class Semester(CPSDocument): ###( |
---|
[166] | 574 | """ |
---|
[454] | 575 | WAeUP Semester containing the courses and students |
---|
[166] | 576 | """ |
---|
[454] | 577 | meta_type = 'Semester' |
---|
[166] | 578 | portal_type = meta_type |
---|
| 579 | security = ClassSecurityInfo() |
---|
| 580 | |
---|
[454] | 581 | InitializeClass(Semester) |
---|
[166] | 582 | |
---|
[454] | 583 | def addSemester(container, id, REQUEST=None, **kw): |
---|
| 584 | """Add a Semester.""" |
---|
| 585 | ob = Semester(id, **kw) |
---|
[166] | 586 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 587 | |
---|
| 588 | ###) |
---|
| 589 | |
---|
[464] | 590 | class StudentCourseResult(CPSDocument): ###( |
---|
[89] | 591 | """ |
---|
[464] | 592 | WAeUP StudentCourseResult |
---|
[89] | 593 | """ |
---|
[464] | 594 | meta_type = 'StudentCourseResult' |
---|
[89] | 595 | portal_type = meta_type |
---|
| 596 | security = ClassSecurityInfo() |
---|
[472] | 597 | |
---|
[454] | 598 | def getCourseEntry(self,cid): |
---|
[464] | 599 | res = self.portal_catalog({'meta_type': "StudentCourse", |
---|
[454] | 600 | 'id': cid}) |
---|
| 601 | if res: |
---|
| 602 | return res[-1] |
---|
| 603 | else: |
---|
| 604 | return None |
---|
[154] | 605 | |
---|
[454] | 606 | security.declareProtected(View,"Title") |
---|
| 607 | def Title(self): |
---|
| 608 | """compose title""" |
---|
| 609 | cid = self.getId() |
---|
| 610 | ce = self.getCourseEntry(cid) |
---|
| 611 | if ce: |
---|
| 612 | return "%s" % ce.Title |
---|
| 613 | return "No course with id %s" % cid |
---|
[152] | 614 | |
---|
[464] | 615 | InitializeClass(StudentCourseResult) |
---|
[454] | 616 | |
---|
[464] | 617 | def addStudentCourseResult(container, id, REQUEST=None, **kw): |
---|
| 618 | """Add a StudentCourseResult.""" |
---|
| 619 | ob = StudentCourseResult(id, **kw) |
---|
[89] | 620 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
[139] | 621 | ###) |
---|
| 622 | |
---|