[489] | 1 | #-*- mode: python; mode: fold -*- |
---|
[805] | 2 | # $Id: ScratchCards.py 4253 2009-06-11 17:16:36Z henrik $ |
---|
[489] | 3 | from Globals import InitializeClass |
---|
| 4 | from AccessControl import ClassSecurityInfo |
---|
| 5 | from AccessControl.SecurityManagement import newSecurityManager |
---|
| 6 | from zExceptions import BadRequest |
---|
| 7 | from Products.CMFCore.utils import UniqueObject, getToolByName |
---|
| 8 | from Products.CMFCore.permissions import View |
---|
| 9 | from Products.CMFCore.permissions import ModifyPortalContent |
---|
| 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 |
---|
[502] | 13 | import DateTime |
---|
| 14 | import Globals |
---|
[947] | 15 | import logging |
---|
| 16 | import os,csv,re |
---|
| 17 | import Globals |
---|
| 18 | MAX_TRANS = 1000 |
---|
[502] | 19 | p_home = Globals.package_home(globals()) |
---|
| 20 | i_home = Globals.INSTANCE_HOME |
---|
[489] | 21 | |
---|
| 22 | class ScratchCardBatchesFolder(CPSDocument): ###( |
---|
| 23 | """ |
---|
| 24 | WAeUP Student container for the various student data |
---|
| 25 | """ |
---|
| 26 | meta_type = 'ScratchCardBatchesFolder' |
---|
| 27 | portal_type = meta_type |
---|
| 28 | security = ClassSecurityInfo() |
---|
| 29 | |
---|
| 30 | security.declareProtected(View,"Title") |
---|
| 31 | def Title(self): |
---|
| 32 | """compose title""" |
---|
| 33 | return "Pin Batches" |
---|
| 34 | |
---|
[947] | 35 | security.declareProtected(ModifyPortalContent,"importPinBatch") ###( |
---|
| 36 | def importPinBatch(self): |
---|
| 37 | """import PinBatch""" |
---|
[3417] | 38 | name = "PinsToImport" |
---|
[1571] | 39 | logger = logging.getLogger('Students.ScratchCardBatchesFolder.importPinBatch') |
---|
[947] | 40 | logger.info('Start loading from %s.csv' % name) |
---|
| 41 | pins_section = self.portal_url.getPortalObject().campus.pins |
---|
| 42 | p_pins = self.portal_pins |
---|
| 43 | base_dir = "%s/import/pins" % (i_home) |
---|
| 44 | files = os.listdir(base_dir) |
---|
| 45 | for fn in files: |
---|
[948] | 46 | pins = csv.DictReader(open("%s/%s" % (base_dir,fn),"rb")) |
---|
[947] | 47 | n = 0 |
---|
| 48 | for pin in pins: |
---|
| 49 | if n == 0: |
---|
| 50 | bid = "%(Serial)s_%(Pin)s" % pin |
---|
| 51 | pins_section.invokeFactory('ScratchCardBatch', bid) |
---|
| 52 | batch = getattr(pins_section,bid) |
---|
| 53 | dict = {} |
---|
| 54 | prefix = pin['Serial'] |
---|
[1082] | 55 | dict['prefix'] = pin['Serial'] |
---|
[947] | 56 | batch_no = pin['Pin'] |
---|
| 57 | dict['batch_no'] = int(batch_no) |
---|
| 58 | dict['cost'] = float(pin['Cost']) |
---|
| 59 | dict['sold_by'] = pin['Sold'] |
---|
| 60 | #import pdb;pdb.set_trace() |
---|
| 61 | n += 1 |
---|
| 62 | continue |
---|
[978] | 63 | puid = "".join(pin['Pin'].split('-')) |
---|
| 64 | p_pins.addRecord(pin=puid,serial=n,student="",prefix_batch="%s%s" % (prefix, batch_no)) |
---|
[947] | 65 | n += 1 |
---|
| 66 | dict['no_of_pins'] = n - 1 |
---|
| 67 | batch.getContent().edit(mapping=dict) |
---|
[1571] | 68 | logger.info('%s with %d PINs added' % (bid,n-1)) |
---|
[947] | 69 | return self.REQUEST.RESPONSE.redirect("%s" % self.REQUEST.get('URL1')) |
---|
| 70 | ###) |
---|
[489] | 71 | |
---|
| 72 | InitializeClass(ScratchCardBatchesFolder) |
---|
| 73 | |
---|
| 74 | def addScratchCardBatchesFolder(container, id, REQUEST=None, **kw): |
---|
| 75 | """Add a Students personal data.""" |
---|
| 76 | ob = ScratchCardBatchesFolder(id, **kw) |
---|
| 77 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 78 | |
---|
| 79 | ###) |
---|
| 80 | |
---|
| 81 | from Products.WAeUP_SRP.WAeUPTables import PinTable |
---|
| 82 | |
---|
| 83 | class ScratchCardBatch(CPSDocument): ###( |
---|
| 84 | """ |
---|
| 85 | WAeUP Student container for the various student data |
---|
| 86 | """ |
---|
| 87 | meta_type = 'ScratchCardBatch' |
---|
| 88 | portal_type = meta_type |
---|
| 89 | security = ClassSecurityInfo() |
---|
| 90 | |
---|
| 91 | security.declareProtected(View,"Title") |
---|
| 92 | def Title(self): |
---|
| 93 | """compose title""" |
---|
[3616] | 94 | return "Pin Batch" |
---|
[489] | 95 | |
---|
[535] | 96 | security.declareProtected(ModifyPortalContent,"makePins") ###( |
---|
[489] | 97 | def makePins(self): |
---|
| 98 | """generate Pins""" |
---|
| 99 | batch = self.getContent() |
---|
| 100 | nr = batch.no_of_pins |
---|
[502] | 101 | prefix = batch.prefix |
---|
| 102 | sold = batch.sold_by |
---|
| 103 | cost = batch.cost |
---|
[489] | 104 | import random |
---|
| 105 | r = random |
---|
| 106 | b_no = batch.batch_no |
---|
[502] | 107 | #import pdb;pdb.set_trace() |
---|
| 108 | generated = [] |
---|
| 109 | generated.append('"Serial","Pin","Sold","Cost"' % vars()) |
---|
| 110 | generated.append('"%(prefix)s","%(b_no)d","%(sold)s","%(cost)f"' % vars()) |
---|
| 111 | pins = self.portal_pins |
---|
[682] | 112 | for i in range(1,nr+1): |
---|
[502] | 113 | ri = r.randint(1000000000,9999999999) |
---|
| 114 | pin = "%s%d%d" % (prefix,b_no,ri) |
---|
| 115 | while len(pins.searchResults({'pin': pin})) > 0: |
---|
| 116 | ri = r.randint(1000000000,9999999999) |
---|
| 117 | pin = "%s%d%d" % (prefix,b_no,ri) |
---|
[2063] | 118 | pins.addRecord(pin=pin, |
---|
| 119 | serial=i, |
---|
| 120 | student="", |
---|
| 121 | cost = cost, |
---|
| 122 | prefix_batch="%s%d" % (prefix, b_no)) |
---|
[502] | 123 | generated.append('"%(i)d","%(prefix)s-%(b_no)d-%(ri)d"' % vars()) |
---|
| 124 | print '\n'.join(generated) |
---|
| 125 | current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S") |
---|
[2241] | 126 | open("%s/export/%s-%s-%s.csv" % (i_home,prefix,b_no,current),"w+").write('\n'.join(generated)) |
---|
[535] | 127 | ###) |
---|
[489] | 128 | |
---|
[3415] | 129 | security.declareProtected(ModifyPortalContent,"restorePins") ###( |
---|
| 130 | def restorePins(self): |
---|
| 131 | "restore Pins from file named pins_to_restore.csv" |
---|
| 132 | pins = self.portal_pins |
---|
[3417] | 133 | filename = "%s/import/PinsToRestore.csv" % (i_home) |
---|
| 134 | logger = logging.getLogger('ScratchCards.restorePins') |
---|
[3415] | 135 | if not os.path.exists(filename): |
---|
| 136 | logger.info('no file %s' % filename) |
---|
| 137 | return |
---|
| 138 | src = open(filename,"rb") |
---|
| 139 | records = csv.DictReader(src) |
---|
| 140 | cards = [] |
---|
| 141 | already_in = [] |
---|
| 142 | #import pdb;pdb.set_trace() |
---|
| 143 | records.next() |
---|
| 144 | for record in records: |
---|
| 145 | d = {} |
---|
| 146 | d['pin'] = record['Pin'].replace('-','') |
---|
| 147 | if pins(pin=d['pin']): |
---|
| 148 | logger.info("pin %(pin)s already in Pins" % d) |
---|
| 149 | already_in += d['pin'], |
---|
| 150 | continue |
---|
| 151 | d['serial'] = record['Serial'] |
---|
| 152 | d['cost'] = record['Cost'] |
---|
[3417] | 153 | d['student'] = '' |
---|
[3415] | 154 | d['prefix_batch'] = "".join(record['Pin'].split('-')[:2]) |
---|
| 155 | cards += d, |
---|
| 156 | if already_in: |
---|
| 157 | logger.info("found %d existing pins in %s" % (len(already_in),filename)) |
---|
| 158 | return |
---|
| 159 | anz = len(cards) |
---|
| 160 | logger.info("start restoring %d pins from %s" % (anz,filename)) |
---|
| 161 | for card in cards: |
---|
| 162 | pins.addRecord(**card) |
---|
| 163 | logger.info("sucessfully restored %d pins from %s" % (anz,filename)) |
---|
| 164 | url = self.REQUEST.get('URL1') |
---|
| 165 | return self.REQUEST.RESPONSE.redirect(url) |
---|
[3417] | 166 | |
---|
[3076] | 167 | security.declareProtected(ModifyPortalContent,"archiveBatch") ###( |
---|
| 168 | def archiveBatch(self,delete=False): |
---|
| 169 | """archive a batch""" |
---|
| 170 | #import pdb;pdb.set_trace() |
---|
| 171 | batch = self.getContent() |
---|
| 172 | member = self.portal_membership.getAuthenticatedMember() |
---|
| 173 | logger = logging.getLogger('ScratchCards.archiveBatch') |
---|
| 174 | nr = batch.no_of_pins |
---|
| 175 | prefix = batch.prefix |
---|
| 176 | sold = batch.sold_by |
---|
| 177 | cost = batch.cost |
---|
| 178 | batch_no = batch.batch_no |
---|
| 179 | current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S") |
---|
| 180 | export_file = "%s/export/%s-%s_archive_%s.csv" % (i_home,prefix,batch_no,current) |
---|
| 181 | lines = [] |
---|
[3077] | 182 | fields = ['prefix','serial','pin','student'] |
---|
[3076] | 183 | headline = ','.join(fields) |
---|
| 184 | out = open(export_file,"wb") |
---|
[3077] | 185 | out.write('%(prefix)s,%(cost)8.2f,%(batch_no)d,%(nr)d,%(sold)s\n\n' % vars()) |
---|
[3076] | 186 | out.write(headline +'\n') |
---|
| 187 | out.close() |
---|
| 188 | out = open(export_file,"a") |
---|
| 189 | csv_writer = csv.DictWriter(out,fields,) |
---|
| 190 | pins = self.portal_pins(prefix_batch = "%(prefix)s%(batch_no)d" % vars()) |
---|
| 191 | logger.info('%s starts archiving %s_%s with %s records ' % (member, |
---|
| 192 | prefix, |
---|
| 193 | batch_no, |
---|
| 194 | len(pins))) |
---|
[3077] | 195 | |
---|
[3076] | 196 | pin_list = [] |
---|
| 197 | for pin in pins: |
---|
| 198 | pin_list += pin.pin, |
---|
[4253] | 199 | lines.append(self.portal_pins.record2dict(fields,pin,'dummy')) |
---|
[3076] | 200 | total = len(lines) |
---|
| 201 | csv_writer.writerows(lines) |
---|
| 202 | msg = "wrote %(total)d records to %(export_file)s" % vars() |
---|
| 203 | logger.info(msg) |
---|
| 204 | if delete: |
---|
| 205 | for pin in pin_list: |
---|
[3077] | 206 | self.portal_pins.deleteRecord(pin) |
---|
| 207 | msg = "deleted %d pin from portal_pins" % len(pin_list) |
---|
[3076] | 208 | logger.info(msg) |
---|
[3415] | 209 | url = self.REQUEST.get('URL1') |
---|
| 210 | return self.REQUEST.RESPONSE.redirect(url) |
---|
[3076] | 211 | ###) |
---|
[947] | 212 | |
---|
[3076] | 213 | security.declareProtected(ModifyPortalContent,"getUnusedPins") ###( |
---|
[535] | 214 | def getUnusedPins(self): |
---|
| 215 | """return a list of unused Pins""" |
---|
[688] | 216 | max_pins = 10 |
---|
[535] | 217 | #import pdb;pdb.set_trace() |
---|
| 218 | pins_cat = self.portal_pins |
---|
| 219 | doc = self.getContent() |
---|
[686] | 220 | unused = [{'pin': p.pin, |
---|
[535] | 221 | 'serial': p.serial, |
---|
[612] | 222 | } for p in pins_cat.searchResults(prefix_batch = "%s%d" |
---|
| 223 | % (doc.prefix,doc.batch_no), |
---|
[1395] | 224 | ) if not p.student] |
---|
| 225 | if len(unused) > max_pins: |
---|
| 226 | return unused[-max_pins:] |
---|
[1002] | 227 | return unused |
---|
[3076] | 228 | ###) |
---|
[1571] | 229 | |
---|
[3076] | 230 | security.declareProtected(View,"getUsedPins") ###( |
---|
[1120] | 231 | def getUsedPins(self): |
---|
| 232 | """return a list of used Pins""" |
---|
| 233 | #import pdb;pdb.set_trace() |
---|
| 234 | pins_cat = self.portal_pins |
---|
| 235 | doc = self.getContent() |
---|
| 236 | used = [{'pin': p.pin, |
---|
| 237 | 'prefix_batch': p.prefix_batch, |
---|
| 238 | 'serial': p.serial, |
---|
| 239 | 'student': p.student, |
---|
| 240 | } for p in pins_cat.searchResults(prefix_batch = "%s%d" |
---|
| 241 | % (doc.prefix,doc.batch_no), |
---|
| 242 | ) if p.student] |
---|
| 243 | return used |
---|
[3076] | 244 | ###) |
---|
[1120] | 245 | |
---|
[3076] | 246 | security.declareProtected(View,"getNumberOfUsedPins") ###( |
---|
[1012] | 247 | def getNumberOfUsedPins(self): |
---|
| 248 | """return the number of used Pins""" |
---|
| 249 | #import pdb;pdb.set_trace() |
---|
| 250 | pins_cat = self.portal_pins |
---|
| 251 | doc = self.getContent() |
---|
| 252 | used = [{'pin': p.pin, |
---|
| 253 | 'serial': p.serial, |
---|
| 254 | 'student': p.student, |
---|
| 255 | } for p in pins_cat.searchResults(prefix_batch = "%s%d" |
---|
| 256 | % (doc.prefix,doc.batch_no), |
---|
| 257 | ) if p.student] |
---|
| 258 | return len(used) |
---|
[3076] | 259 | ###) |
---|
[1012] | 260 | |
---|
[489] | 261 | InitializeClass(ScratchCardBatch) |
---|
| 262 | |
---|
| 263 | def addScratchCardBatch(container, id, REQUEST=None, **kw): |
---|
| 264 | """Add a Students personal data.""" |
---|
| 265 | ob = ScratchCardBatch(id, **kw) |
---|
| 266 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 267 | |
---|
| 268 | ###) |
---|