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