[103] | 1 | #-*- mode: python; mode: fold -*- |
---|
| 2 | from Globals import InitializeClass |
---|
| 3 | from AccessControl import ClassSecurityInfo |
---|
| 4 | |
---|
| 5 | from Products.CMFCore.utils import UniqueObject, getToolByName |
---|
| 6 | from Products.CMFCore.permissions import View |
---|
| 7 | from Products.CMFCore.permissions import ModifyPortalContent |
---|
[575] | 8 | from Products.CPSCore.CPSBase import CPSBase_adder, CPSBaseFolder |
---|
| 9 | #from Products.CPSCore.CPSBase import CPSBaseDocument as BaseDocument |
---|
| 10 | from Products.CPSDocument.CPSDocument import CPSDocument |
---|
| 11 | from Products.CPSCore.CPSBase import CPSBaseBTreeFolder as BaseBTreeFolder |
---|
[2845] | 12 | from Products.WAeUP_SRP.WAeUPTables import AccommodationTable,NOT_OCCUPIED |
---|
[1410] | 13 | import logging |
---|
| 14 | import csv,re,os |
---|
[623] | 15 | import Globals |
---|
| 16 | import DateTime |
---|
[638] | 17 | import re |
---|
[623] | 18 | p_home = Globals.package_home(globals()) |
---|
| 19 | i_home = Globals.INSTANCE_HOME |
---|
[103] | 20 | |
---|
[2845] | 21 | |
---|
[103] | 22 | class AccoFolder(CPSDocument): ###( |
---|
| 23 | """ |
---|
[575] | 24 | WAeUP AccoFolder containing Accommodation halls |
---|
[103] | 25 | """ |
---|
| 26 | meta_type = 'AccoFolder' |
---|
| 27 | portal_type = meta_type |
---|
| 28 | security = ClassSecurityInfo() |
---|
[630] | 29 | |
---|
[575] | 30 | security.declareProtected(View,"Title") |
---|
| 31 | def Title(self): |
---|
| 32 | """compose title""" |
---|
[630] | 33 | return "Accommodation Section" |
---|
[575] | 34 | |
---|
[404] | 35 | security.declareProtected(ModifyPortalContent,"generateFreeBedsList") ###( |
---|
| 36 | def generateFreeBedsList(self): |
---|
| 37 | """ |
---|
| 38 | generate the free Bedslist. |
---|
| 39 | """ |
---|
[3870] | 40 | logger = logging.getLogger('Accommodation.AccoFolder.generateFreeBedsList') |
---|
| 41 | member = self.portal_membership.getAuthenticatedMember() |
---|
| 42 | logger.info('%s generated bed list' % member) |
---|
[3043] | 43 | bed_list = self.portal_accommodation |
---|
[623] | 44 | l = self.portal_catalog({'meta_type': "AccoHall"}) |
---|
[404] | 45 | halls = [] |
---|
[623] | 46 | generated = [] |
---|
| 47 | generated.append('"Bed","BedType","Student"' % vars()) |
---|
[3043] | 48 | modyfied = [] |
---|
| 49 | modyfied.append('"Bed","BedType","Student"' % vars()) |
---|
[626] | 50 | beds_generated = [] |
---|
[404] | 51 | for h in l: |
---|
| 52 | halls.append(h.getObject()) |
---|
| 53 | for hall in halls: |
---|
[623] | 54 | #import pdb;pdb.set_trace() |
---|
[2845] | 55 | hall_doc = hall.getContent() |
---|
[626] | 56 | hall_gen = {} |
---|
[630] | 57 | hall_gen['name'] = hall.Title |
---|
[626] | 58 | count = 0 |
---|
[3043] | 59 | modyfied_count = 0 |
---|
[2845] | 60 | reserved = [(r.split('/')[0],int(r.split('/')[1])) for r in re.split(',|\.| ',hall_doc.reserved_rooms) |
---|
[714] | 61 | if r] |
---|
[3870] | 62 | #import pdb;pdb.set_trace() |
---|
[2845] | 63 | #for block in range(1,int(hall_doc.nr_of_blocks)+1): |
---|
| 64 | # for block in 'ABCDEFGHIJ'[:int(hall_doc.nr_of_blocks)]: |
---|
[3043] | 65 | blocks_for_female = getattr(hall_doc,'blocks_for_female',[]) |
---|
| 66 | blocks_for_male = getattr(hall_doc,'blocks_for_male',[]) |
---|
| 67 | beds_for_fresh = getattr(hall_doc,'beds_for_fresh',[]) |
---|
| 68 | beds_for_pre = getattr(hall_doc,'beds_for_pre',[]) |
---|
[3870] | 69 | beds_for_returning = getattr(hall_doc,'beds_for_returning',[]) |
---|
[3043] | 70 | beds_for_final = getattr(hall_doc,'beds_for_final',[]) |
---|
| 71 | if set(blocks_for_female).intersection(set(blocks_for_male)): |
---|
[2823] | 72 | return self.accommodation.acco_folder_view(beds_generated=beds_generated) |
---|
[3043] | 73 | for block in blocks_for_female + blocks_for_male: |
---|
[934] | 74 | sex = 'male' |
---|
[3043] | 75 | if block in blocks_for_female: |
---|
[934] | 76 | sex = 'female' |
---|
[2845] | 77 | for floor in range(1,int(hall_doc.nr_of_floors)+1): |
---|
| 78 | for room in range(1,int(hall_doc.rooms_per_floor)+1): |
---|
[3786] | 79 | for bed in 'ABCDEFGHIKLMNOPQRSTUVWXYZ'[:int(hall_doc.beds_per_room)]: |
---|
[404] | 80 | room_nr = floor*100 + room |
---|
[3784] | 81 | bt = 'all' |
---|
[714] | 82 | if (block,room_nr) in reserved: |
---|
[623] | 83 | bt = "reserved" |
---|
[2845] | 84 | elif hall_doc.special_handling and not hall_doc.special_handling.startswith("no"): |
---|
| 85 | bt = hall_doc.special_handling |
---|
[3043] | 86 | elif bed in beds_for_fresh: |
---|
[407] | 87 | bt = 'fr' |
---|
[3043] | 88 | elif bed in beds_for_pre: |
---|
[2421] | 89 | bt = 'pr' |
---|
[3043] | 90 | elif bed in beds_for_final: |
---|
[407] | 91 | bt = 'fi' |
---|
[3870] | 92 | elif bed in beds_for_returning: |
---|
| 93 | bt = 're' |
---|
[2845] | 94 | if hall_doc.special_handling.startswith("no_"): |
---|
| 95 | bt += "_" + hall_doc.special_handling[3:] |
---|
[575] | 96 | bt = "%(sex)s_%(bt)s" % vars() |
---|
[926] | 97 | uid = '%s_%s_%d_%s' % (hall.getId(),block,room_nr,bed) |
---|
[2845] | 98 | d = {} |
---|
| 99 | d['bed'] = uid |
---|
| 100 | d['bed_type'] = bt |
---|
[2867] | 101 | d['sort_id'] = getattr(hall_doc,'sort_id',0) |
---|
[2845] | 102 | d['hall'] = hall.getId() |
---|
[3043] | 103 | bed_record = bed_list.getRecordByKey(uid) |
---|
| 104 | if bed_record is None: |
---|
| 105 | d['student'] = NOT_OCCUPIED |
---|
| 106 | bed_list.addRecord(**d) |
---|
[626] | 107 | count +=1 |
---|
| 108 | generated.append('"%(uid)s","%(bt)s"' % vars()) |
---|
[3043] | 109 | elif bed_record.bed_type != bt: |
---|
| 110 | bed_list.modifyRecord(**d) |
---|
| 111 | modyfied.append('"%(uid)s","%(bt)s"' % vars()) |
---|
| 112 | modyfied_count += 1 |
---|
[626] | 113 | pass |
---|
| 114 | hall_gen['count']= count |
---|
[3043] | 115 | hall_gen['modyfied_count']= modyfied_count |
---|
[626] | 116 | beds_generated.append(hall_gen) |
---|
[623] | 117 | current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S") |
---|
[3870] | 118 | open("%s/export/bedlist_%s.csv" % (i_home,current),"w+").write('\n'.join(generated)) |
---|
| 119 | open("%s/export/bedlist_modyfied_%s.csv" % (i_home,current),"w+").write('\n'.join(modyfied)) |
---|
[650] | 120 | return self.accommodation.acco_folder_view(beds_generated=beds_generated) |
---|
[3043] | 121 | ###) |
---|
[152] | 122 | |
---|
[1410] | 123 | security.declareProtected(ModifyPortalContent,"importReservedBeds")###( |
---|
| 124 | def importReservedBeds(self): |
---|
| 125 | """load Reserved Beds from CSV""" |
---|
| 126 | import transaction |
---|
| 127 | import random |
---|
| 128 | current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S") |
---|
| 129 | students_folder = self.portal_url.getPortalObject().campus.students |
---|
| 130 | acco_folder = self.portal_url.getPortalObject().campus.accommodation |
---|
| 131 | tr_count = 1 |
---|
| 132 | total = 0 |
---|
| 133 | name = 'ReservedBeds' |
---|
| 134 | accommodation = self.portal_accommodation |
---|
| 135 | students_cat = self.students_catalog |
---|
| 136 | no_import = [] |
---|
| 137 | imported = [] |
---|
[1571] | 138 | logger = logging.getLogger('Accommodation.AccoFolder.importReservedBeds') |
---|
[1410] | 139 | try: |
---|
| 140 | beds = csv.DictReader(open("%s/import/%s.csv" % (i_home,name),"rb")) |
---|
| 141 | except: |
---|
| 142 | logger.error('Error reading %s.csv' % name) |
---|
| 143 | return |
---|
| 144 | halls = {} |
---|
| 145 | start = True |
---|
| 146 | for bed in beds: |
---|
| 147 | if start: |
---|
| 148 | start = False |
---|
| 149 | logger.info('start loading from %s.csv' % name) |
---|
| 150 | s = ','.join(['"%s"' % fn for fn in bed.keys()]) |
---|
| 151 | imported.append(s) |
---|
| 152 | no_import.append('%s,"Error"' % s) |
---|
| 153 | format = ','.join(['"%%(%s)s"' % fn for fn in bed.keys()]) |
---|
| 154 | format_error = format + ',"%(Error)s"' |
---|
| 155 | no_certificate = "no certificate %s" % format |
---|
| 156 | matric_no = bed.get('matric_no') |
---|
| 157 | jamb_reg_no = bed.get('jamb_reg_no') |
---|
| 158 | if matric_no != '': |
---|
| 159 | res = students_cat(matric_no = matric_no) |
---|
| 160 | if not res: |
---|
| 161 | bed['Error'] = "No such student" |
---|
| 162 | no_import.append( format_error % bed) |
---|
| 163 | continue |
---|
| 164 | student = res[0] |
---|
| 165 | elif jamb_reg_no != '': |
---|
| 166 | res = students_cat(jamb_reg_no = jamb_reg_no) |
---|
| 167 | if not res: |
---|
| 168 | bed['Error'] = "No such student" |
---|
| 169 | no_import.append( format_error % bed) |
---|
| 170 | continue |
---|
| 171 | student = res[0] |
---|
| 172 | else: |
---|
| 173 | bed['Error'] = "No such student" |
---|
| 174 | no_import.append( format_error % bed) |
---|
| 175 | continue |
---|
| 176 | sid = student.id |
---|
| 177 | names = bed.get('name').split() |
---|
| 178 | n = 0 |
---|
| 179 | for na in names: |
---|
| 180 | if na.endswith(','): |
---|
| 181 | names[n] = na[:-1] |
---|
| 182 | n += 1 |
---|
| 183 | s_names = student.name.split() |
---|
| 184 | found = False |
---|
| 185 | for sn in s_names: |
---|
| 186 | if sn.upper() in names: |
---|
| 187 | found = True |
---|
| 188 | break |
---|
| 189 | if not found: |
---|
| 190 | bed['Error'] = "Name mismatch %s %s" % (str(names),str(s_names)) |
---|
| 191 | no_import.append( format_error % bed) |
---|
| 192 | continue |
---|
| 193 | hall = bed.get('hall') |
---|
| 194 | if hall not in halls.keys(): |
---|
| 195 | hall_object = getattr(acco_folder,hall, None) |
---|
| 196 | if hall_object is None: |
---|
| 197 | bed['Error'] = "No such hall" |
---|
| 198 | no_import.append( format_error % bed) |
---|
| 199 | continue |
---|
[1571] | 200 | halls[hall] = hall_doc = hall_object.getContent() |
---|
[1410] | 201 | bid = "%(hall)s_%(block)s_%(room)s_%(bed)s" % bed |
---|
| 202 | res = accommodation(bed = bid) |
---|
| 203 | psm = '' |
---|
| 204 | while True: |
---|
| 205 | if not res: |
---|
| 206 | psm = "No bed with this id" |
---|
| 207 | break |
---|
| 208 | bed_brain = res[0] |
---|
| 209 | if not bed_brain.bed_type.endswith("reserved"): |
---|
| 210 | psm = "Not a reserved bed" |
---|
| 211 | break |
---|
[3406] | 212 | if bed_brain.student and bed_brain.student != NOT_OCCUPIED: |
---|
[1410] | 213 | psm = "Bed %s already reserved for %s" % (bid,bed_brain.student) |
---|
| 214 | break |
---|
| 215 | if student.sex and not bed.get('block') in hall_doc.blocks_for_female: |
---|
| 216 | psm = "Sex does not match %s" % bid |
---|
| 217 | break |
---|
| 218 | break |
---|
| 219 | if psm != '': |
---|
| 220 | bed['Error'] = psm |
---|
| 221 | no_import.append( format_error % bed) |
---|
| 222 | continue |
---|
[1449] | 223 | already = accommodation(student=sid) |
---|
| 224 | if already: |
---|
[3422] | 225 | accommodation.modifyRecord(bed=already[0].bed,student=NOT_OCCUPIED) |
---|
[1449] | 226 | student_obj = getattr(students_folder, student.id) |
---|
[2454] | 227 | acco_id = "accommodation_%s" % self.getSessionId()[0] |
---|
[1449] | 228 | if acco_id in student_obj.objectIds(): |
---|
| 229 | acco_doc = getattr(student_obj, acco_id).getContent() |
---|
[3423] | 230 | info = self.getAccommodationInfo(sid) |
---|
[3422] | 231 | status = info['student_status'] |
---|
[3424] | 232 | acco_doc.edit(mapping={'bed': bid,'student_status' : status}) |
---|
[1449] | 233 | member = self.portal_membership.getAuthenticatedMember() |
---|
[1571] | 234 | logger.info('%s changed reserved bed %s for %s' % (member,bid,sid)) |
---|
[1410] | 235 | accommodation.modifyRecord(bed = bid, student = sid) |
---|
| 236 | imported.append( format % bed) |
---|
| 237 | tr_count += 1 |
---|
| 238 | if tr_count > 1000: |
---|
| 239 | if len(no_import) > 0: |
---|
| 240 | open("%s/import/%s_not_imported%s.csv" % (i_home,name,current),"a").write( |
---|
| 241 | '\n'.join(no_import) + '\n') |
---|
| 242 | no_import = [] |
---|
| 243 | open("%s/import/%simported%s.csv" % (i_home,name,current),"a").write( |
---|
| 244 | '\n'.join(no_import) + "\n") |
---|
| 245 | imported = [] |
---|
| 246 | em = '%d transactions commited total %s\n' % (tr_count,total) |
---|
| 247 | transaction.commit() |
---|
| 248 | regs = [] |
---|
| 249 | logger.info(em) |
---|
| 250 | total += tr_count |
---|
| 251 | tr_count = 0 |
---|
| 252 | #from pdb import set_trace;set_trace() |
---|
| 253 | open("%s/import/%simported%s.csv" % (i_home,name,current),"a").write( |
---|
| 254 | '\n'.join(imported)) |
---|
| 255 | open("%s/import/%s_not_imported%s.csv" % (i_home,name,current),"a").write( |
---|
| 256 | '\n'.join(no_import)) |
---|
[1449] | 257 | logger.info('finished loading from %s.csv' % name) |
---|
[1410] | 258 | return self.REQUEST.RESPONSE.redirect("%s" % self.REQUEST.get('URL1')) |
---|
| 259 | |
---|
[1571] | 260 | |
---|
[103] | 261 | InitializeClass(AccoFolder) |
---|
| 262 | |
---|
| 263 | def addAccoFolder(container, id, REQUEST=None, **kw): |
---|
| 264 | """Add a AccoFolder.""" |
---|
| 265 | ob = AccoFolder(id, **kw) |
---|
| 266 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 267 | ###) |
---|
| 268 | |
---|
[2845] | 269 | ###) |
---|
| 270 | |
---|
[622] | 271 | class AccoHall(CPSDocument): ###( |
---|
[103] | 272 | """ |
---|
[2845] | 273 | WAeUP AccoHall |
---|
[103] | 274 | """ |
---|
[622] | 275 | meta_type = 'AccoHall' |
---|
[103] | 276 | portal_type = meta_type |
---|
| 277 | security = ClassSecurityInfo() |
---|
[575] | 278 | |
---|
[404] | 279 | security.declareProtected(View,"Title") ###( |
---|
[152] | 280 | def Title(self): |
---|
| 281 | """compose title""" |
---|
| 282 | content = self.getContent() |
---|
| 283 | heading = getattr(content,'heading',None) |
---|
| 284 | if heading is None: |
---|
| 285 | return self.title |
---|
| 286 | return heading |
---|
[1393] | 287 | ###) |
---|
[404] | 288 | |
---|
[622] | 289 | InitializeClass(AccoHall) |
---|
[103] | 290 | |
---|
[1571] | 291 | |
---|
[622] | 292 | def addAccoHall(container, id, REQUEST=None, **kw): |
---|
| 293 | """Add a AccoHall.""" |
---|
| 294 | ob = AccoHall(id, **kw) |
---|
[103] | 295 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 296 | ###) |
---|