[7195] | 1 | ## $Id: hostel.py 13533 2015-12-03 20:04:17Z henrik $ |
---|
| 2 | ## |
---|
[6951] | 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 | """ |
---|
| 19 | These are the hostels. |
---|
| 20 | """ |
---|
| 21 | import grok |
---|
[7003] | 22 | from zope.event import notify |
---|
[8183] | 23 | from zope.component import getUtility |
---|
[9202] | 24 | from zope.component.interfaces import IFactory |
---|
[6951] | 25 | from datetime import datetime |
---|
[7811] | 26 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
| 27 | from waeup.kofa.hostels.vocabularies import NOT_OCCUPIED |
---|
[9414] | 28 | from waeup.kofa.hostels.interfaces import IHostel, IBed |
---|
[7811] | 29 | from waeup.kofa.students.interfaces import IBedTicket |
---|
[8183] | 30 | from waeup.kofa.interfaces import IKofaUtils |
---|
[7811] | 31 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
[8186] | 32 | from waeup.kofa.utils.helpers import now |
---|
[6951] | 33 | |
---|
| 34 | class Hostel(grok.Container): |
---|
| 35 | """This is a hostel. |
---|
| 36 | """ |
---|
| 37 | grok.implements(IHostel) |
---|
| 38 | grok.provides(IHostel) |
---|
| 39 | |
---|
[9196] | 40 | @property |
---|
| 41 | def bed_statistics(self): |
---|
| 42 | total = len(self.keys()) |
---|
| 43 | booked = 0 |
---|
| 44 | for value in self.values(): |
---|
| 45 | if value.owner != NOT_OCCUPIED: |
---|
| 46 | booked += 1 |
---|
| 47 | return {'booked':booked, 'total':total} |
---|
| 48 | |
---|
| 49 | def clearHostel(self): |
---|
[9197] | 50 | """Remove all beds |
---|
[9196] | 51 | """ |
---|
[9197] | 52 | keys = [i for i in self.keys()] # create deep copy |
---|
| 53 | for bed in keys: |
---|
| 54 | del self[bed] |
---|
| 55 | return |
---|
[9196] | 56 | |
---|
[6963] | 57 | def addBed(self, bed): |
---|
[6970] | 58 | """Add a bed. |
---|
[6963] | 59 | """ |
---|
| 60 | if not IBed.providedBy(bed): |
---|
| 61 | raise TypeError( |
---|
| 62 | 'Hostels contain only IBed instances') |
---|
[6970] | 63 | self[bed.bed_id] = bed |
---|
[6963] | 64 | return |
---|
| 65 | |
---|
[6970] | 66 | def updateBeds(self): |
---|
| 67 | """Fill hostel with beds or update beds. |
---|
| 68 | """ |
---|
| 69 | added_counter = 0 |
---|
| 70 | modified_counter = 0 |
---|
[6978] | 71 | removed_counter = 0 |
---|
[6988] | 72 | modified_beds = u'' |
---|
[6978] | 73 | |
---|
| 74 | # Remove all empty beds. Occupied beds remain in hostel! |
---|
| 75 | keys = list(self.keys()) # create list copy |
---|
| 76 | for key in keys: |
---|
| 77 | if self[key].owner == NOT_OCCUPIED: |
---|
| 78 | del self[key] |
---|
| 79 | self._p_changed = True |
---|
| 80 | removed_counter += 1 |
---|
[6998] | 81 | else: |
---|
| 82 | self[key].bed_number = 9999 |
---|
| 83 | remaining = len(keys) - removed_counter |
---|
[6978] | 84 | |
---|
[6970] | 85 | blocks_for_female = getattr(self,'blocks_for_female',[]) |
---|
| 86 | blocks_for_male = getattr(self,'blocks_for_male',[]) |
---|
| 87 | beds_for_fresh = getattr(self,'beds_for_fresh',[]) |
---|
| 88 | beds_for_pre = getattr(self,'beds_for_pre',[]) |
---|
| 89 | beds_for_returning = getattr(self,'beds_for_returning',[]) |
---|
| 90 | beds_for_final = getattr(self,'beds_for_final',[]) |
---|
[6971] | 91 | beds_for_all = getattr(self,'beds_for_all',[]) |
---|
[6970] | 92 | all_blocks = blocks_for_female + blocks_for_male |
---|
| 93 | all_beds = (beds_for_pre + beds_for_fresh + |
---|
[6971] | 94 | beds_for_returning + beds_for_final + beds_for_all) |
---|
[13352] | 95 | floor_base = 100 |
---|
| 96 | if self.rooms_per_floor > 99: |
---|
| 97 | floor_base = 1000 |
---|
[6970] | 98 | for block in all_blocks: |
---|
| 99 | sex = 'male' |
---|
| 100 | if block in blocks_for_female: |
---|
| 101 | sex = 'female' |
---|
| 102 | for floor in range(1,int(self.floors_per_block)+1): |
---|
| 103 | for room in range(1,int(self.rooms_per_floor)+1): |
---|
| 104 | for bed in all_beds: |
---|
[13352] | 105 | room_nr = floor*floor_base + room |
---|
[6970] | 106 | bt = 'all' |
---|
[13346] | 107 | if bed in beds_for_fresh: |
---|
[6970] | 108 | bt = 'fr' |
---|
| 109 | elif bed in beds_for_pre: |
---|
| 110 | bt = 'pr' |
---|
| 111 | elif bed in beds_for_final: |
---|
| 112 | bt = 'fi' |
---|
| 113 | elif bed in beds_for_returning: |
---|
| 114 | bt = 're' |
---|
[6973] | 115 | bt = u'%s_%s_%s' % (self.special_handling,sex,bt) |
---|
[13168] | 116 | uid = u'%s_%s_%d_%s' % ( |
---|
| 117 | self.hostel_id,block,room_nr,bed) |
---|
[9701] | 118 | if uid in self: |
---|
[6970] | 119 | bed = self[uid] |
---|
[13170] | 120 | # Renumber remaining bed |
---|
[6998] | 121 | bed.bed_number = len(self) + 1 - remaining |
---|
| 122 | remaining -= 1 |
---|
[6970] | 123 | if bed.bed_type != bt: |
---|
| 124 | bed.bed_type = bt |
---|
| 125 | modified_counter += 1 |
---|
[9448] | 126 | modified_beds += '%s, ' % uid |
---|
| 127 | notify(grok.ObjectModifiedEvent(bed)) |
---|
[6970] | 128 | else: |
---|
| 129 | bed = Bed() |
---|
| 130 | bed.bed_id = uid |
---|
| 131 | bed.bed_type = bt |
---|
[6998] | 132 | bed.bed_number = len(self) + 1 - remaining |
---|
[6970] | 133 | bed.owner = NOT_OCCUPIED |
---|
| 134 | self.addBed(bed) |
---|
| 135 | added_counter +=1 |
---|
[6988] | 136 | return removed_counter, added_counter, modified_counter, modified_beds |
---|
[6970] | 137 | |
---|
[13166] | 138 | def writeLogMessage(self, view, message): |
---|
| 139 | ob_class = view.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 140 | self.__parent__.logger.info( |
---|
| 141 | '%s - %s - %s' % (ob_class, self.__name__, message)) |
---|
| 142 | return |
---|
| 143 | |
---|
[6951] | 144 | Hostel = attrs_to_fields(Hostel) |
---|
[6963] | 145 | |
---|
| 146 | class Bed(grok.Container): |
---|
| 147 | """This is a bed. |
---|
| 148 | """ |
---|
[9414] | 149 | grok.implements(IBed) |
---|
[6963] | 150 | grok.provides(IBed) |
---|
| 151 | |
---|
[9199] | 152 | @property |
---|
| 153 | def coordinates(self): |
---|
[6974] | 154 | """Determine the coordinates from the bed_id. |
---|
[6963] | 155 | """ |
---|
[6974] | 156 | return self.bed_id.split('_') |
---|
[6963] | 157 | |
---|
[9199] | 158 | # The following property attributes are only needed |
---|
[13170] | 159 | # for the exporter to ease evaluation with Excel. |
---|
[9199] | 160 | |
---|
| 161 | @property |
---|
| 162 | def hall(self): |
---|
| 163 | return self.coordinates[0] |
---|
| 164 | |
---|
| 165 | @property |
---|
| 166 | def block(self): |
---|
| 167 | return self.coordinates[1] |
---|
| 168 | |
---|
| 169 | @property |
---|
| 170 | def room(self): |
---|
| 171 | return self.coordinates[2] |
---|
| 172 | |
---|
| 173 | @property |
---|
| 174 | def bed(self): |
---|
| 175 | return self.coordinates[3] |
---|
| 176 | |
---|
| 177 | @property |
---|
| 178 | def special_handling(self): |
---|
| 179 | return self.bed_type.split('_')[0] |
---|
| 180 | |
---|
| 181 | @property |
---|
| 182 | def sex(self): |
---|
| 183 | return self.bed_type.split('_')[1] |
---|
| 184 | |
---|
| 185 | @property |
---|
| 186 | def bt(self): |
---|
| 187 | return self.bed_type.split('_')[2] |
---|
| 188 | |
---|
| 189 | |
---|
[6996] | 190 | def bookBed(self, student_id): |
---|
[6998] | 191 | if self.owner == NOT_OCCUPIED: |
---|
| 192 | self.owner = student_id |
---|
[7003] | 193 | notify(grok.ObjectModifiedEvent(self)) |
---|
[6998] | 194 | return None |
---|
| 195 | else: |
---|
| 196 | return self.owner |
---|
[6996] | 197 | |
---|
[6974] | 198 | def switchReservation(self): |
---|
[7003] | 199 | """Reserves or unreserve bed respectively. |
---|
[6974] | 200 | """ |
---|
| 201 | sh, sex, bt = self.bed_type.split('_') |
---|
[9199] | 202 | hostel_id, block, room_nr, bed = self.coordinates |
---|
[6975] | 203 | hostel = self.__parent__ |
---|
[6988] | 204 | beds_for_fresh = getattr(hostel,'beds_for_fresh',[]) |
---|
| 205 | beds_for_pre = getattr(hostel,'beds_for_pre',[]) |
---|
| 206 | beds_for_returning = getattr(hostel,'beds_for_returning',[]) |
---|
| 207 | beds_for_final = getattr(hostel,'beds_for_final',[]) |
---|
[6976] | 208 | bed_string = u'%s_%s_%s' % (block, room_nr, bed) |
---|
[6974] | 209 | if bt == 'reserved': |
---|
| 210 | bt = 'all' |
---|
| 211 | if bed in beds_for_fresh: |
---|
| 212 | bt = 'fr' |
---|
| 213 | elif bed in beds_for_pre: |
---|
| 214 | bt = 'pr' |
---|
| 215 | elif bed in beds_for_final: |
---|
| 216 | bt = 'fi' |
---|
| 217 | elif bed in beds_for_returning: |
---|
| 218 | bt = 're' |
---|
| 219 | bt = u'%s_%s_%s' % (sh, sex, bt) |
---|
[7718] | 220 | message = _(u'unreserved') |
---|
| 221 | else: |
---|
| 222 | bt = u'%s_%s_reserved' % (sh, sex) |
---|
| 223 | message = _(u'reserved') |
---|
[6974] | 224 | self.bed_type = bt |
---|
[9448] | 225 | notify(grok.ObjectModifiedEvent(self)) |
---|
[6988] | 226 | return message |
---|
[6974] | 227 | |
---|
[7042] | 228 | def releaseBed(self): |
---|
[13533] | 229 | """Release bed. |
---|
| 230 | """ |
---|
[7042] | 231 | if self.owner == NOT_OCCUPIED: |
---|
[7070] | 232 | return |
---|
[13316] | 233 | old_owner = self.owner |
---|
| 234 | self.owner = NOT_OCCUPIED |
---|
| 235 | notify(grok.ObjectModifiedEvent(self)) |
---|
| 236 | accommodation_session = grok.getSite()[ |
---|
| 237 | 'hostels'].accommodation_session |
---|
| 238 | try: |
---|
| 239 | bedticket = grok.getSite()['students'][old_owner][ |
---|
| 240 | 'accommodation'][str(accommodation_session)] |
---|
| 241 | except KeyError: |
---|
| 242 | return '%s without bed ticket' % old_owner |
---|
| 243 | bedticket.bed = None |
---|
| 244 | tz = getUtility(IKofaUtils).tzinfo |
---|
| 245 | timestamp = now(tz).strftime("%Y-%m-%d %H:%M:%S %Z") |
---|
| 246 | bedticket.bed_coordinates = u'-- booking cancelled on %s --' % ( |
---|
| 247 | timestamp,) |
---|
| 248 | return old_owner |
---|
| 249 | |
---|
| 250 | def releaseBedIfMaintenanceNotPaid(self, n=7): |
---|
[13533] | 251 | """Release bed if maintenance fee has not been paid on time. |
---|
| 252 | Reserve bed so that it cannot be automatically booked by someone else. |
---|
| 253 | """ |
---|
[13316] | 254 | if self.owner == NOT_OCCUPIED: |
---|
| 255 | return |
---|
| 256 | accommodation_session = grok.getSite()[ |
---|
| 257 | 'hostels'].accommodation_session |
---|
| 258 | try: |
---|
| 259 | bedticket = grok.getSite()['students'][self.owner][ |
---|
| 260 | 'accommodation'][str(accommodation_session)] |
---|
| 261 | except KeyError: |
---|
| 262 | return |
---|
| 263 | if bedticket.maint_payment_made: |
---|
| 264 | return |
---|
| 265 | jetzt = datetime.utcnow() |
---|
| 266 | days_ago = getattr(jetzt - bedticket.booking_date, 'days') |
---|
| 267 | if days_ago > n: |
---|
[13318] | 268 | old_owner = self.owner |
---|
[7042] | 269 | self.owner = NOT_OCCUPIED |
---|
[13533] | 270 | sh, sex, bt = self.bed_type.split('_') |
---|
| 271 | bt = u'%s_%s_reserved' % (sh, sex) |
---|
| 272 | self.bed_type = bt |
---|
[7042] | 273 | notify(grok.ObjectModifiedEvent(self)) |
---|
| 274 | bedticket.bed = None |
---|
[8183] | 275 | tz = getUtility(IKofaUtils).tzinfo |
---|
[8234] | 276 | timestamp = now(tz).strftime("%Y-%m-%d %H:%M:%S %Z") |
---|
[13316] | 277 | bedticket.bed_coordinates = u'-- booking expired (%s) --' % ( |
---|
[8186] | 278 | timestamp,) |
---|
[13318] | 279 | return old_owner |
---|
[13316] | 280 | return |
---|
[7042] | 281 | |
---|
[13166] | 282 | def writeLogMessage(self, view, message): |
---|
| 283 | ob_class = view.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 284 | self.__parent__.__parent__.logger.info( |
---|
| 285 | '%s - %s - %s' % (ob_class, self.__name__, message)) |
---|
| 286 | return |
---|
[6963] | 287 | |
---|
| 288 | Bed = attrs_to_fields(Bed) |
---|
[7006] | 289 | |
---|
[9202] | 290 | class HostelFactory(grok.GlobalUtility): |
---|
| 291 | """A factory for hostels. |
---|
| 292 | |
---|
| 293 | We need this factory for the hostel processor. |
---|
| 294 | """ |
---|
| 295 | grok.implements(IFactory) |
---|
| 296 | grok.name(u'waeup.Hostel') |
---|
| 297 | title = u"Create a new hostel.", |
---|
| 298 | description = u"This factory instantiates new hostel instances." |
---|
| 299 | |
---|
| 300 | def __call__(self, *args, **kw): |
---|
| 301 | return Hostel() |
---|
| 302 | |
---|
| 303 | def getInterfaces(self): |
---|
| 304 | return implementedBy(Hostel) |
---|
| 305 | |
---|
| 306 | |
---|
[7006] | 307 | @grok.subscribe(IBedTicket, grok.IObjectRemovedEvent) |
---|
| 308 | def handle_bedticket_removed(bedticket, event): |
---|
| 309 | """If a bed ticket is deleted, we make sure that also the owner attribute |
---|
| 310 | of the bed is cleared (set to NOT_OCCUPIED). |
---|
| 311 | """ |
---|
[7068] | 312 | if bedticket.bed != None: |
---|
| 313 | bedticket.bed.owner = NOT_OCCUPIED |
---|
| 314 | notify(grok.ObjectModifiedEvent(bedticket.bed)) |
---|
[9202] | 315 | |
---|
[13440] | 316 | @grok.subscribe(IBed, grok.IObjectRemovedEvent) |
---|
| 317 | def handle_bed_removed(bed, event): |
---|
| 318 | """If a bed is deleted, we make sure that the bed object is |
---|
| 319 | removed also from the owner's bed ticket. |
---|
| 320 | """ |
---|
| 321 | if bed.owner == NOT_OCCUPIED: |
---|
| 322 | return |
---|
| 323 | accommodation_session = grok.getSite()['hostels'].accommodation_session |
---|
| 324 | try: |
---|
| 325 | bedticket = grok.getSite()['students'][bed.owner][ |
---|
| 326 | 'accommodation'][str(accommodation_session)] |
---|
| 327 | except KeyError: |
---|
| 328 | return |
---|
| 329 | bedticket.bed = None |
---|