[966] | 1 | #-*- mode: python; mode: fold -*- |
---|
[363] | 2 | # (C) Copyright 2005 AixtraWare <http://aixtraware.de> |
---|
| 3 | # Author: Joachim Schmitz <js@aixtraware.de> |
---|
| 4 | # |
---|
| 5 | # This program is free software; you can redistribute it and/or modify |
---|
| 6 | # it under the terms of the GNU General Public License version 2 as published |
---|
| 7 | # by the Free Software Foundation. |
---|
| 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 |
---|
| 17 | # 02111-1307, USA. |
---|
| 18 | # |
---|
| 19 | # $Id: WAeUPTables.py 2973 2008-01-03 15:27:58Z joachim $ |
---|
| 20 | |
---|
| 21 | from zope.interface import implements |
---|
| 22 | from Globals import InitializeClass |
---|
| 23 | from Products.ZCatalog.ZCatalog import ZCatalog |
---|
[1620] | 24 | from Products.ZCatalog.ProgressHandler import ZLogHandler |
---|
[780] | 25 | from AccessControl import ClassSecurityInfo |
---|
| 26 | from Products.CMFCore.permissions import ModifyPortalContent |
---|
[2094] | 27 | from Products.CMFCore.utils import getToolByName |
---|
| 28 | from Products.CMFCore.CatalogTool import CatalogTool |
---|
| 29 | from Products.CPSSchemas.StorageAdapter import MappingStorageAdapter |
---|
| 30 | from Products.CPSSchemas.DataStructure import DataStructure |
---|
| 31 | from Products.CPSSchemas.DataModel import DataModel |
---|
| 32 | from Products.AdvancedQuery import Eq, Between, Le,In |
---|
[1700] | 33 | import urllib |
---|
[1620] | 34 | import DateTime,time |
---|
[780] | 35 | import csv,re |
---|
| 36 | import logging |
---|
| 37 | import Globals |
---|
| 38 | p_home = Globals.package_home(globals()) |
---|
| 39 | i_home = Globals.INSTANCE_HOME |
---|
| 40 | |
---|
[2084] | 41 | ADDING_SHEDULED = "adding_sheduled" |
---|
| 42 | OBJECT_CREATED = "object_created" |
---|
[2845] | 43 | NOT_OCCUPIED = 'not_occupied' |
---|
[2084] | 44 | |
---|
[363] | 45 | from interfaces import IWAeUPTable |
---|
| 46 | |
---|
| 47 | class AttributeHolder(object): |
---|
| 48 | pass |
---|
| 49 | |
---|
| 50 | def dict2ob(dict): |
---|
| 51 | ob = AttributeHolder() |
---|
| 52 | for key, value in dict.items(): |
---|
| 53 | setattr(ob, key, value) |
---|
| 54 | return ob |
---|
| 55 | |
---|
[1146] | 56 | class WAeUPTable(ZCatalog): ###( |
---|
[834] | 57 | |
---|
[363] | 58 | implements(IWAeUPTable) |
---|
[780] | 59 | security = ClassSecurityInfo() |
---|
[2094] | 60 | meta_type = None |
---|
[2099] | 61 | |
---|
[2094] | 62 | def __init__(self,name=None): |
---|
| 63 | if name == None: |
---|
| 64 | name = self.name |
---|
| 65 | ZCatalog.__init__(self,name) |
---|
[2099] | 66 | |
---|
[2094] | 67 | def refreshCatalog(self, clear=0, pghandler=None): ###( |
---|
[1620] | 68 | """ don't refresh for a normal table """ |
---|
| 69 | |
---|
| 70 | if self.REQUEST and self.REQUEST.RESPONSE: |
---|
| 71 | self.REQUEST.RESPONSE.redirect( |
---|
| 72 | URL1 + |
---|
| 73 | '/manage_catalogAdvanced?manage_tabs_message=Catalog%20refresh%20not%20implemented') |
---|
| 74 | |
---|
[2094] | 75 | ###) |
---|
| 76 | |
---|
| 77 | def manage_catalogClear(self, REQUEST=None, RESPONSE=None, URL1=None): ###( |
---|
[1620] | 78 | """ clears the whole enchilada """ |
---|
[1986] | 79 | |
---|
[1916] | 80 | #if REQUEST and RESPONSE: |
---|
| 81 | # RESPONSE.redirect( |
---|
| 82 | # URL1 + |
---|
| 83 | # '/manage_catalogAdvanced?manage_tabs_message=Catalog%20Clearing%20disabled') |
---|
[1620] | 84 | |
---|
[1916] | 85 | self._catalog.clear() |
---|
[1620] | 86 | if REQUEST and RESPONSE: |
---|
| 87 | RESPONSE.redirect( |
---|
| 88 | URL1 + |
---|
[1916] | 89 | '/manage_catalogAdvanced?manage_tabs_message=Catalog%20cleared') |
---|
[1620] | 90 | |
---|
[2094] | 91 | ###) |
---|
| 92 | |
---|
[2632] | 93 | def record2dict(self,fields,record): ###( |
---|
[2189] | 94 | d = {} |
---|
| 95 | for key in fields: |
---|
| 96 | v = getattr(record, key, None) |
---|
[2192] | 97 | if key == 'sex': |
---|
| 98 | if v: |
---|
| 99 | v = 'F' |
---|
| 100 | else: |
---|
| 101 | v = 'M' |
---|
| 102 | d[key] = v |
---|
| 103 | elif v: |
---|
[2189] | 104 | if key == 'lga': |
---|
| 105 | v = self.portal_vocabularies.local_gov_areas.get(v) |
---|
[2627] | 106 | elif key == 'aos': |
---|
| 107 | v = self.portal_vocabularies.aos.get(v) |
---|
[2189] | 108 | d[key] = v |
---|
| 109 | else: |
---|
| 110 | d[key] = '' |
---|
| 111 | return d |
---|
[2191] | 112 | |
---|
[2632] | 113 | ###) |
---|
| 114 | |
---|
[2094] | 115 | def addRecord(self, **data): ###( |
---|
[502] | 116 | # The uid is the same as "bed". |
---|
| 117 | uid = data[self.key] |
---|
| 118 | res = self.searchResults({"%s" % self.key : uid}) |
---|
| 119 | if len(res) > 0: |
---|
| 120 | raise ValueError("More than one record with uid %s" % uid) |
---|
| 121 | self.catalog_object(dict2ob(data), uid=uid) |
---|
| 122 | return uid |
---|
[834] | 123 | |
---|
[2094] | 124 | ###) |
---|
| 125 | |
---|
[363] | 126 | def deleteRecord(self, uid): |
---|
| 127 | self.uncatalog_object(uid) |
---|
[834] | 128 | |
---|
[2738] | 129 | def getRecordByKey(self,key): |
---|
| 130 | if not key: |
---|
| 131 | return None |
---|
| 132 | res = self.evalAdvancedQuery(Eq(self.key,key)) |
---|
| 133 | if res: |
---|
| 134 | return res[0] |
---|
| 135 | return None |
---|
| 136 | |
---|
[502] | 137 | def searchAndSetRecord(self, **data): |
---|
| 138 | raise NotImplemented |
---|
| 139 | |
---|
[2094] | 140 | def modifyRecord(self, record=None, **data): ###( |
---|
[502] | 141 | #records = self.searchResults(uid=uid) |
---|
| 142 | uid = data[self.key] |
---|
[2069] | 143 | if record is None: |
---|
| 144 | records = self.searchResults({"%s" % self.key : uid}) |
---|
| 145 | if len(records) > 1: |
---|
| 146 | # Can not happen, but anyway... |
---|
| 147 | raise ValueError("More than one record with uid %s" % uid) |
---|
| 148 | if len(records) == 0: |
---|
| 149 | raise KeyError("No record for uid %s" % uid) |
---|
| 150 | record = records[0] |
---|
[363] | 151 | record_data = {} |
---|
| 152 | for field in self.schema() + self.indexes(): |
---|
| 153 | record_data[field] = getattr(record, field) |
---|
| 154 | # Add the updated data: |
---|
| 155 | record_data.update(data) |
---|
| 156 | self.catalog_object(dict2ob(record_data), uid) |
---|
| 157 | |
---|
[2094] | 158 | ###) |
---|
| 159 | |
---|
| 160 | def reindexIndex(self, name, REQUEST,pghandler=None): ###( |
---|
[1062] | 161 | if isinstance(name, str): |
---|
[2094] | 162 | name = (name,) |
---|
[1062] | 163 | paths = self._catalog.uids.items() |
---|
| 164 | i = 0 |
---|
| 165 | #import pdb;pdb.set_trace() |
---|
| 166 | for p,rid in paths: |
---|
| 167 | i += 1 |
---|
| 168 | metadata = self.getMetadataForRID(rid) |
---|
| 169 | record_data = {} |
---|
| 170 | for field in name: |
---|
| 171 | record_data[field] = metadata.get(field) |
---|
| 172 | uid = metadata.get(self.key) |
---|
| 173 | self.catalog_object(dict2ob(record_data), uid, idxs=name, |
---|
| 174 | update_metadata=0) |
---|
[1082] | 175 | |
---|
[2094] | 176 | ###) |
---|
| 177 | |
---|
| 178 | security.declareProtected(ModifyPortalContent,"exportAllRecords") ###( |
---|
[780] | 179 | def exportAllRecords(self): |
---|
| 180 | "export a WAeUPTable" |
---|
| 181 | #import pdb;pdb.set_trace() |
---|
| 182 | fields = [field for field in self.schema()] |
---|
| 183 | format = ','.join(['"%%(%s)s"' % fn for fn in fields]) |
---|
| 184 | csv = [] |
---|
| 185 | csv.append(','.join(['"%s"' % fn for fn in fields])) |
---|
| 186 | for uid in self._catalog.uids: |
---|
| 187 | records = self.searchResults({"%s" % self.key : uid}) |
---|
| 188 | if len(records) > 1: |
---|
| 189 | # Can not happen, but anyway... |
---|
| 190 | raise ValueError("More than one record with uid %s" % uid) |
---|
| 191 | if len(records) == 0: |
---|
| 192 | raise KeyError("No record for uid %s" % uid) |
---|
| 193 | rec = records[0] |
---|
| 194 | csv.append(format % rec) |
---|
| 195 | current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S") |
---|
| 196 | open("%s/import/%s-%s.csv" % (i_home,self.getId(),current),"w+").write('\n'.join(csv)) |
---|
[2094] | 197 | |
---|
| 198 | ###) |
---|
| 199 | |
---|
[2189] | 200 | security.declareProtected(ModifyPortalContent,"dumpAll")###( |
---|
| 201 | def dumpAll(self): |
---|
| 202 | """dump all data in the table to a csv""" |
---|
| 203 | member = self.portal_membership.getAuthenticatedMember() |
---|
| 204 | logger = logging.getLogger('WAeUPTables.dump_%s' % self.__name__) |
---|
| 205 | current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S") |
---|
| 206 | export_file = "%s/export/%s_%s.csv" % (i_home,self.__name__,current,) |
---|
| 207 | res_list = [] |
---|
| 208 | lines = [] |
---|
| 209 | if hasattr(self,"export_keys"): |
---|
| 210 | fields = self.export_keys |
---|
| 211 | else: |
---|
| 212 | fields = [] |
---|
| 213 | for f in self.schema(): |
---|
| 214 | fields.append(f) |
---|
| 215 | headline = ','.join(fields) |
---|
| 216 | out = open(export_file,"wb") |
---|
| 217 | out.write(headline +'\n') |
---|
| 218 | out.close() |
---|
| 219 | out = open(export_file,"a") |
---|
| 220 | csv_writer = csv.DictWriter(out,fields,) |
---|
| 221 | records = self() |
---|
| 222 | nr2export = len(records) |
---|
| 223 | logger.info('%s starts dumping, %s records to export' % (member,nr2export)) |
---|
| 224 | chunk = 2000 |
---|
| 225 | total = 0 |
---|
| 226 | start = DateTime.DateTime().timeTime() |
---|
| 227 | start_chunk = DateTime.DateTime().timeTime() |
---|
| 228 | for record in records: |
---|
| 229 | not_all = False |
---|
| 230 | d = self.record2dict(fields,record) |
---|
| 231 | lines.append(d) |
---|
| 232 | total += 1 |
---|
| 233 | if total and not total % chunk or total == len(records): |
---|
| 234 | csv_writer.writerows(lines) |
---|
| 235 | anz = len(lines) |
---|
| 236 | logger.info("wrote %(anz)d total written %(total)d" % vars()) |
---|
| 237 | end_chunk = DateTime.DateTime().timeTime() |
---|
| 238 | duration = end_chunk-start_chunk |
---|
| 239 | per_record = duration/anz |
---|
| 240 | till_now = end_chunk - start |
---|
| 241 | avarage_per_record = till_now/total |
---|
| 242 | estimated_end = DateTime.DateTime(start + avarage_per_record * nr2export) |
---|
| 243 | estimated_end = estimated_end.strftime("%H:%M:%S") |
---|
| 244 | logger.info('%(duration)4.1f, %(per_record)4.3f,end %(estimated_end)s' % vars()) |
---|
| 245 | start_chunk = DateTime.DateTime().timeTime() |
---|
| 246 | lines = [] |
---|
| 247 | end = DateTime.DateTime().timeTime() |
---|
| 248 | logger.info('total time %6.2f m' % ((end-start)/60)) |
---|
| 249 | import os |
---|
| 250 | filename, extension = os.path.splitext(export_file) |
---|
| 251 | from subprocess import call |
---|
| 252 | msg = "wrote %(total)d records to %(export_file)s" % vars() |
---|
[2561] | 253 | #try: |
---|
| 254 | # retcode = call('gzip %s' % (export_file),shell=True) |
---|
| 255 | # if retcode == 0: |
---|
| 256 | # msg = "wrote %(total)d records to %(export_file)s.gz" % vars() |
---|
| 257 | #except OSError, e: |
---|
| 258 | # retcode = -99 |
---|
| 259 | # logger.info("zip failed with %s" % e) |
---|
[2189] | 260 | logger.info(msg) |
---|
| 261 | args = {'portal_status_message': msg} |
---|
| 262 | #url = self.REQUEST.get('URL1') + '?' + urlencode(args) |
---|
| 263 | url = self.REQUEST.get('URL2') |
---|
| 264 | return self.REQUEST.RESPONSE.redirect(url) |
---|
| 265 | ###) |
---|
| 266 | |
---|
[2185] | 267 | security.declarePrivate("_import_old") ###( |
---|
| 268 | def _import_old(self,filename,schema,layout, mode,logger): |
---|
[2094] | 269 | "import data from csv" |
---|
| 270 | import transaction |
---|
| 271 | import random |
---|
| 272 | pm = self.portal_membership |
---|
| 273 | member = pm.getAuthenticatedMember() |
---|
| 274 | current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S") |
---|
| 275 | import_fn = "%s/import/%s.csv" % (i_home,filename) |
---|
| 276 | imported_fn = "%s/import/%s_imported%s.csv" % (i_home,filename,current) |
---|
| 277 | not_imported_fn = "%s/import/%s_not_imported%s.csv" % (i_home,filename,current) |
---|
| 278 | start = True |
---|
| 279 | tr_count = 1 |
---|
| 280 | total_imported = 0 |
---|
| 281 | total_not_imported = 0 |
---|
| 282 | total = 0 |
---|
| 283 | iname = "%s" % filename |
---|
[2112] | 284 | not_imported = [] |
---|
| 285 | imported = [] |
---|
| 286 | valid_records = [] |
---|
| 287 | invalid_records = [] |
---|
| 288 | d = {} |
---|
| 289 | d['mode'] = mode |
---|
| 290 | d['imported'] = total_imported |
---|
| 291 | d['not_imported'] = total_not_imported |
---|
| 292 | d['valid_records'] = valid_records |
---|
| 293 | d['invalid_records'] = invalid_records |
---|
| 294 | d['import_fn'] = import_fn |
---|
| 295 | d['imported_fn'] = imported_fn |
---|
| 296 | d['not_imported_fn'] = not_imported_fn |
---|
[2094] | 297 | if schema is None: |
---|
| 298 | em = 'No schema specified' |
---|
| 299 | logger.error(em) |
---|
[2112] | 300 | return d |
---|
[2094] | 301 | if layout is None: |
---|
| 302 | em = 'No layout specified' |
---|
| 303 | logger.error(em) |
---|
[2112] | 304 | return d |
---|
[2094] | 305 | validators = {} |
---|
| 306 | for widget in layout.keys(): |
---|
[2112] | 307 | try: |
---|
| 308 | validators[widget] = layout[widget].validate |
---|
| 309 | except AttributeError: |
---|
| 310 | logger.info('%s has no validate attribute' % widget) |
---|
| 311 | return d |
---|
[2094] | 312 | # if mode == 'edit': |
---|
| 313 | # importer = self.importEdit |
---|
| 314 | # elif mode == 'add': |
---|
| 315 | # importer = self.importAdd |
---|
| 316 | # else: |
---|
| 317 | # importer = None |
---|
| 318 | try: |
---|
[2185] | 319 | items = csv.DictReader(open(import_fn,"rb"), |
---|
| 320 | dialect="excel", |
---|
| 321 | skipinitialspace=True) |
---|
[2094] | 322 | except: |
---|
| 323 | em = 'Error reading %s.csv' % filename |
---|
| 324 | logger.error(em) |
---|
| 325 | return d |
---|
[2185] | 326 | #import pdb;pdb.set_trace() |
---|
[2094] | 327 | for item in items: |
---|
| 328 | if start: |
---|
| 329 | start = False |
---|
| 330 | logger.info('%s starts import from %s.csv' % (member,filename)) |
---|
| 331 | #import_keys = [k for k in item.keys() if not k.startswith('ignore')] |
---|
[2185] | 332 | attrs = csv.reader(open("%s/import/%s.csv" % (i_home,filename),"rb"), |
---|
| 333 | dialect="excel", |
---|
| 334 | skipinitialspace=True).next() |
---|
[2094] | 335 | import_keys = [k for k in attrs if not (k.startswith('ignore') or k.isupper())] |
---|
| 336 | diff2schema = set(import_keys).difference(set(schema.keys())) |
---|
| 337 | diff2layout = set(import_keys).difference(set(layout.keys())) |
---|
| 338 | if diff2layout: |
---|
| 339 | em = "not ignorable key(s) %s found in heading" % diff2layout |
---|
| 340 | logger.info(em) |
---|
| 341 | return d |
---|
| 342 | s = ','.join(['"%s"' % fn for fn in import_keys]) |
---|
| 343 | open(not_imported_fn,"a").write(s + ',"Error"'+ '\n') |
---|
| 344 | #s = '"id",' + s |
---|
| 345 | open(imported_fn,"a").write(s + '\n') |
---|
| 346 | format = ','.join(['"%%(%s)s"' % fn for fn in import_keys]) |
---|
| 347 | format_error = format + ',"%(Error)s"' |
---|
| 348 | #format = '"%(id)s",'+ format |
---|
| 349 | adapters = [MappingStorageAdapter(schema, item)] |
---|
| 350 | dm = DataModel(item, adapters,context=self) |
---|
| 351 | ds = DataStructure(data=item,datamodel=dm) |
---|
| 352 | error_string = "" |
---|
[2503] | 353 | #import pdb;pdb.set_trace() |
---|
[2094] | 354 | for k in import_keys: |
---|
| 355 | if not validators[k](ds,mode=mode): |
---|
| 356 | error_string += " %s : %s" % (k,ds.getError(k)) |
---|
| 357 | # if not error_string and importer: |
---|
| 358 | # item.update(dm) |
---|
| 359 | # item['id'],error = importer(item) |
---|
| 360 | # if error: |
---|
| 361 | # error_string += error |
---|
| 362 | if error_string: |
---|
| 363 | item['Error'] = error_string |
---|
| 364 | invalid_records.append(dm) |
---|
| 365 | not_imported.append(format_error % item) |
---|
| 366 | total_not_imported += 1 |
---|
| 367 | else: |
---|
| 368 | em = format % item |
---|
| 369 | valid_records.append(dm) |
---|
| 370 | imported.append(em) |
---|
| 371 | #logger.info("%(total_imported)d of %(total)d %(em)s" % vars()) |
---|
| 372 | tr_count += 1 |
---|
| 373 | total_imported += 1 |
---|
| 374 | total += 1 |
---|
| 375 | if len(imported) > 0: |
---|
| 376 | open(imported_fn,"a").write('\n'.join(imported)) |
---|
| 377 | if len(not_imported) > 0: |
---|
| 378 | open(not_imported_fn,"a").write('\n'.join(not_imported)) |
---|
| 379 | #em = "Imported: %d, not imported: %d of total %d" % (total_imported,total_not_imported,total) |
---|
| 380 | d['imported'] = total_imported |
---|
| 381 | d['not_imported'] = total_not_imported |
---|
| 382 | d['valid_records'] = valid_records |
---|
| 383 | d['invalid_records'] = invalid_records |
---|
| 384 | d['imported_fn'] = imported_fn |
---|
| 385 | d['not_imported_fn'] = not_imported_fn |
---|
| 386 | #logger.info(em) |
---|
| 387 | return d |
---|
[1935] | 388 | ###) |
---|
[2185] | 389 | |
---|
| 390 | security.declarePrivate("_import") ###( |
---|
| 391 | def _import_new(self,csv_items,schema, layout, mode,logger): |
---|
| 392 | "import data from csv.Dictreader Instance" |
---|
| 393 | start = True |
---|
| 394 | tr_count = 1 |
---|
| 395 | total_imported = 0 |
---|
| 396 | total_not_imported = 0 |
---|
| 397 | total = 0 |
---|
| 398 | iname = "%s" % filename |
---|
| 399 | not_imported = [] |
---|
| 400 | valid_records = [] |
---|
| 401 | invalid_records = [] |
---|
| 402 | duplicate_records = [] |
---|
| 403 | d = {} |
---|
| 404 | d['mode'] = mode |
---|
| 405 | d['valid_records'] = valid_records |
---|
| 406 | d['invalid_records'] = invalid_records |
---|
| 407 | d['invalid_records'] = duplicate_records |
---|
| 408 | # d['import_fn'] = import_fn |
---|
| 409 | # d['imported_fn'] = imported_fn |
---|
| 410 | # d['not_imported_fn'] = not_imported_fn |
---|
| 411 | validators = {} |
---|
| 412 | for widget in layout.keys(): |
---|
| 413 | try: |
---|
| 414 | validators[widget] = layout[widget].validate |
---|
| 415 | except AttributeError: |
---|
| 416 | logger.info('%s has no validate attribute' % widget) |
---|
| 417 | return d |
---|
| 418 | for item in csv_items: |
---|
| 419 | if start: |
---|
| 420 | start = False |
---|
| 421 | logger.info('%s starts import from %s.csv' % (member,filename)) |
---|
| 422 | #import_keys = [k for k in item.keys() if not k.startswith('ignore')] |
---|
| 423 | attrs = csv.reader(open("%s/import/%s.csv" % (i_home,filename),"rb")).next() |
---|
| 424 | import_keys = [k for k in attrs if not (k.startswith('ignore') or k.isupper())] |
---|
| 425 | diff2schema = set(import_keys).difference(set(schema.keys())) |
---|
| 426 | diff2layout = set(import_keys).difference(set(layout.keys())) |
---|
| 427 | if diff2layout: |
---|
| 428 | em = "not ignorable key(s) %s found in heading" % diff2layout |
---|
| 429 | logger.info(em) |
---|
| 430 | return d |
---|
| 431 | # s = ','.join(['"%s"' % fn for fn in import_keys]) |
---|
| 432 | # open(not_imported_fn,"a").write(s + ',"Error"'+ '\n') |
---|
| 433 | # #s = '"id",' + s |
---|
| 434 | # open(imported_fn,"a").write(s + '\n') |
---|
| 435 | # format = ','.join(['"%%(%s)s"' % fn for fn in import_keys]) |
---|
| 436 | # format_error = format + ',"%(Error)s"' |
---|
| 437 | # #format = '"%(id)s",'+ format |
---|
| 438 | adapters = [MappingStorageAdapter(schema, item)] |
---|
| 439 | dm = DataModel(item, adapters,context=self) |
---|
| 440 | ds = DataStructure(data=item,datamodel=dm) |
---|
| 441 | error_string = "" |
---|
| 442 | for k in import_keys: |
---|
| 443 | if not validators[k](ds,mode=mode): |
---|
| 444 | error_string += " %s : %s" % (k,ds.getError(k)) |
---|
| 445 | if error_string: |
---|
| 446 | item['Error'] = error_string |
---|
| 447 | #invalid_records.append(dm) |
---|
| 448 | invalid_records.append(item) |
---|
| 449 | total_not_imported += 1 |
---|
| 450 | else: |
---|
| 451 | em = format % item |
---|
| 452 | valid_records.append(dm) |
---|
| 453 | #logger.info("%(total_imported)d of %(total)d %(em)s" % vars()) |
---|
| 454 | tr_count += 1 |
---|
| 455 | total_imported += 1 |
---|
| 456 | total += 1 |
---|
| 457 | # if len(imported) > 0: |
---|
| 458 | # open(imported_fn,"a").write('\n'.join(imported)) |
---|
| 459 | # if len(not_imported) > 0: |
---|
| 460 | # open(not_imported_fn,"a").write('\n'.join(not_imported)) |
---|
| 461 | #em = "Imported: %d, not imported: %d of total %d" % (total_imported,total_not_imported,total) |
---|
| 462 | d['imported'] = total_imported |
---|
| 463 | d['not_imported'] = total_not_imported |
---|
| 464 | d['valid_records'] = valid_records |
---|
| 465 | d['invalid_records'] = invalid_records |
---|
| 466 | return d |
---|
| 467 | ###) |
---|
| 468 | |
---|
[2396] | 469 | security.declarePublic("missingValue")###( |
---|
| 470 | def missingValue(self): |
---|
| 471 | from Missing import MV |
---|
| 472 | return MV |
---|
| 473 | ###) |
---|
[2094] | 474 | ###) |
---|
[834] | 475 | |
---|
[1146] | 476 | class AccommodationTable(WAeUPTable): ###( |
---|
[834] | 477 | |
---|
[404] | 478 | meta_type = 'WAeUP Accommodation Tool' |
---|
[2094] | 479 | name = "portal_accommodation" |
---|
[502] | 480 | key = "bed" |
---|
[2094] | 481 | def __init__(self,name=None): |
---|
| 482 | if name == None: |
---|
| 483 | name = self.name |
---|
| 484 | WAeUPTable.__init__(self, name) |
---|
[2866] | 485 | |
---|
[635] | 486 | def searchAndReserveBed(self, student_id,bed_type): |
---|
[2845] | 487 | #records = self.searchResults({'student' : student_id}) |
---|
[2857] | 488 | #import pdb;pdb.set_trace() |
---|
[2845] | 489 | records = self.evalAdvancedQuery(Eq('student',student_id)) |
---|
[635] | 490 | if len(records) > 0: |
---|
[1293] | 491 | return -1,"Student with Id %s already booked bed %s." % (student_id,records[0].bed) |
---|
[834] | 492 | |
---|
[2845] | 493 | #records = [r for r in self.searchResults({'bed_type' : bed_type}) if not r.student] |
---|
| 494 | query = Eq('bed_type',bed_type) & Eq('student',NOT_OCCUPIED) |
---|
| 495 | records = self.evalAdvancedQuery(query,sortSpecs=('sort_id','bed')) |
---|
[635] | 496 | if len(records) == 0: |
---|
[1306] | 497 | return -2,"No bed available" |
---|
[635] | 498 | rec = records[0] |
---|
| 499 | self.modifyRecord(bed=rec.bed,student=student_id) |
---|
[1571] | 500 | s_logger = logging.getLogger('WAeUPTables.AccommodationTable.searchAndReserveBed') |
---|
| 501 | s_logger.info('%s reserved bed %s' % (student_id,rec.bed)) |
---|
[635] | 502 | return 1,rec.bed |
---|
[363] | 503 | |
---|
[834] | 504 | |
---|
[404] | 505 | InitializeClass(AccommodationTable) |
---|
[411] | 506 | |
---|
[1146] | 507 | ###) |
---|
| 508 | |
---|
| 509 | class PinTable(WAeUPTable): ###( |
---|
[1030] | 510 | from ZODB.POSException import ConflictError |
---|
[2973] | 511 | security = ClassSecurityInfo() |
---|
[440] | 512 | meta_type = 'WAeUP Pin Tool' |
---|
[2094] | 513 | name = "portal_pins" |
---|
[502] | 514 | key = 'pin' |
---|
[2859] | 515 | |
---|
[2094] | 516 | def __init__(self,name=None): |
---|
| 517 | if name == None: |
---|
| 518 | name = self.name |
---|
| 519 | WAeUPTable.__init__(self, name) |
---|
[1082] | 520 | |
---|
[2973] | 521 | security.declareProtected(ModifyPortalContent,"dumpAll")###( |
---|
| 522 | def dumpAll(self,include_unused=None): |
---|
| 523 | """dump all data in the table to a csv""" |
---|
| 524 | member = self.portal_membership.getAuthenticatedMember() |
---|
| 525 | logger = logging.getLogger('PinTable.dumpAll') |
---|
| 526 | current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S") |
---|
| 527 | export_file = "%s/export/%s_%s.csv" % (i_home,self.__name__,current,) |
---|
| 528 | res_list = [] |
---|
| 529 | lines = [] |
---|
| 530 | if hasattr(self,"export_keys"): |
---|
| 531 | fields = self.export_keys |
---|
| 532 | else: |
---|
| 533 | fields = [] |
---|
| 534 | for f in self.schema(): |
---|
| 535 | fields.append(f) |
---|
| 536 | headline = ','.join(fields) |
---|
| 537 | out = open(export_file,"wb") |
---|
| 538 | out.write(headline +'\n') |
---|
| 539 | out.close() |
---|
| 540 | out = open(export_file,"a") |
---|
| 541 | csv_writer = csv.DictWriter(out,fields,) |
---|
| 542 | if include_unused is not None and str(member) not in ('admin','joachim'): |
---|
| 543 | logger.info('%s tries to dump pintable with unused pins' % (member)) |
---|
| 544 | return |
---|
| 545 | if include_unused is not None: |
---|
| 546 | records = self() |
---|
| 547 | else: |
---|
| 548 | records = self.evalAdvancedQuery(~Eq('student','')) |
---|
| 549 | nr2export = len(records) |
---|
| 550 | logger.info('%s starts dumping, %s records to export' % (member,nr2export)) |
---|
| 551 | chunk = 2000 |
---|
| 552 | total = 0 |
---|
| 553 | start = DateTime.DateTime().timeTime() |
---|
| 554 | start_chunk = DateTime.DateTime().timeTime() |
---|
| 555 | for record in records: |
---|
| 556 | not_all = False |
---|
| 557 | d = self.record2dict(fields,record) |
---|
| 558 | lines.append(d) |
---|
| 559 | total += 1 |
---|
| 560 | if total and not total % chunk or total == len(records): |
---|
| 561 | csv_writer.writerows(lines) |
---|
| 562 | anz = len(lines) |
---|
| 563 | logger.info("wrote %(anz)d total written %(total)d" % vars()) |
---|
| 564 | end_chunk = DateTime.DateTime().timeTime() |
---|
| 565 | duration = end_chunk-start_chunk |
---|
| 566 | per_record = duration/anz |
---|
| 567 | till_now = end_chunk - start |
---|
| 568 | avarage_per_record = till_now/total |
---|
| 569 | estimated_end = DateTime.DateTime(start + avarage_per_record * nr2export) |
---|
| 570 | estimated_end = estimated_end.strftime("%H:%M:%S") |
---|
| 571 | logger.info('%(duration)4.1f, %(per_record)4.3f,end %(estimated_end)s' % vars()) |
---|
| 572 | start_chunk = DateTime.DateTime().timeTime() |
---|
| 573 | lines = [] |
---|
| 574 | end = DateTime.DateTime().timeTime() |
---|
| 575 | logger.info('total time %6.2f m' % ((end-start)/60)) |
---|
| 576 | import os |
---|
| 577 | filename, extension = os.path.splitext(export_file) |
---|
| 578 | from subprocess import call |
---|
| 579 | msg = "wrote %(total)d records to %(export_file)s" % vars() |
---|
| 580 | #try: |
---|
| 581 | # retcode = call('gzip %s' % (export_file),shell=True) |
---|
| 582 | # if retcode == 0: |
---|
| 583 | # msg = "wrote %(total)d records to %(export_file)s.gz" % vars() |
---|
| 584 | #except OSError, e: |
---|
| 585 | # retcode = -99 |
---|
| 586 | # logger.info("zip failed with %s" % e) |
---|
| 587 | logger.info(msg) |
---|
| 588 | args = {'portal_status_message': msg} |
---|
| 589 | #url = self.REQUEST.get('URL1') + '?' + urlencode(args) |
---|
| 590 | url = self.REQUEST.get('URL2') |
---|
| 591 | return self.REQUEST.RESPONSE.redirect(url) |
---|
| 592 | ###) |
---|
[1082] | 593 | |
---|
[2973] | 594 | |
---|
| 595 | |
---|
[710] | 596 | def searchAndSetRecord(self, uid, student_id,prefix): |
---|
[2191] | 597 | |
---|
| 598 | # The following line must be activated after resetting the |
---|
| 599 | # the portal_pins table. This is to avoid duplicate entries |
---|
[2184] | 600 | # and disable duplicate payments. |
---|
[2191] | 601 | |
---|
[2184] | 602 | #student_id = student_id.upper() |
---|
| 603 | |
---|
[2716] | 604 | #records = self.searchResults(student = student_id) |
---|
[2579] | 605 | #if len(records) > 0 and prefix in ('CLR','APP'): |
---|
| 606 | # for r in records: |
---|
| 607 | # if r.pin != uid and r.prefix_batch.startswith(prefix): |
---|
| 608 | # return -2 |
---|
[502] | 609 | records = self.searchResults({"%s" % self.key : uid}) |
---|
| 610 | if len(records) > 1: |
---|
| 611 | # Can not happen, but anyway... |
---|
| 612 | raise ValueError("More than one record with uid %s" % uid) |
---|
| 613 | if len(records) == 0: |
---|
[2766] | 614 | return -1,None |
---|
[502] | 615 | record = records[0] |
---|
| 616 | if record.student == "": |
---|
| 617 | record_data = {} |
---|
| 618 | for field in self.schema() + self.indexes(): |
---|
| 619 | record_data[field] = getattr(record, field) |
---|
| 620 | # Add the updated data: |
---|
[635] | 621 | record_data['student'] = student_id |
---|
[1030] | 622 | try: |
---|
| 623 | self.catalog_object(dict2ob(record_data), uid) |
---|
[2766] | 624 | return 1,record |
---|
[1030] | 625 | except ConflictError: |
---|
[2766] | 626 | return 2,record |
---|
[990] | 627 | if record.student.upper() != student_id.upper(): |
---|
[2766] | 628 | return 0,record |
---|
[997] | 629 | if record.student.upper() == student_id.upper(): |
---|
[2766] | 630 | return 2,record |
---|
| 631 | return -3,record |
---|
[440] | 632 | InitializeClass(PinTable) |
---|
[1146] | 633 | ###) |
---|
[966] | 634 | |
---|
[1146] | 635 | class PumeResultsTable(WAeUPTable): ###( |
---|
| 636 | |
---|
[966] | 637 | meta_type = 'WAeUP PumeResults Tool' |
---|
[2094] | 638 | name = "portal_pumeresults" |
---|
[966] | 639 | key = "jamb_reg_no" |
---|
[2094] | 640 | def __init__(self,name=None): |
---|
| 641 | if name == None: |
---|
| 642 | name = self.name |
---|
| 643 | WAeUPTable.__init__(self, name) |
---|
[966] | 644 | |
---|
| 645 | |
---|
| 646 | InitializeClass(PumeResultsTable) |
---|
| 647 | |
---|
[1146] | 648 | ###) |
---|
[971] | 649 | |
---|
[2094] | 650 | class ApplicantsCatalog(WAeUPTable): ###( |
---|
| 651 | |
---|
[2113] | 652 | meta_type = 'WAeUP Applicants Catalog' |
---|
[2094] | 653 | name = "applicants_catalog" |
---|
| 654 | key = "reg_no" |
---|
| 655 | security = ClassSecurityInfo() |
---|
[2537] | 656 | #export_keys = ( |
---|
| 657 | # "reg_no", |
---|
| 658 | # "status", |
---|
| 659 | # "lastname", |
---|
| 660 | # "sex", |
---|
| 661 | # "date_of_birth", |
---|
| 662 | # "lga", |
---|
| 663 | # "email", |
---|
| 664 | # "phone", |
---|
| 665 | # "passport", |
---|
| 666 | # "entry_mode", |
---|
| 667 | # "pin", |
---|
| 668 | # "screening_type", |
---|
| 669 | # "registration_date", |
---|
| 670 | # "testdate", |
---|
| 671 | # "application_date", |
---|
| 672 | # "screening_date", |
---|
| 673 | # "faculty", |
---|
| 674 | # "department", |
---|
| 675 | # "course1", |
---|
| 676 | # "course2", |
---|
| 677 | # "course3", |
---|
| 678 | # "eng_score", |
---|
| 679 | # "subj1", |
---|
| 680 | # "subj1score", |
---|
| 681 | # "subj2", |
---|
| 682 | # "subj2score", |
---|
| 683 | # "subj3", |
---|
| 684 | # "subj3score", |
---|
| 685 | # "aggregate", |
---|
| 686 | # "course_admitted", |
---|
| 687 | # ) |
---|
[2632] | 688 | |
---|
[2094] | 689 | def __init__(self,name=None): |
---|
| 690 | if name == None: |
---|
| 691 | name = self.name |
---|
| 692 | WAeUPTable.__init__(self, name) |
---|
| 693 | |
---|
[2185] | 694 | security.declareProtected(ModifyPortalContent,"new_importCSV")###( |
---|
| 695 | def new_importCSV(self,filename="JAMB_data", |
---|
| 696 | schema_id="application", |
---|
[2503] | 697 | layout_id="import_application", |
---|
[2185] | 698 | mode='add'): |
---|
| 699 | """ import JAMB data """ |
---|
| 700 | current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S") |
---|
| 701 | pm = self.portal_membership |
---|
| 702 | member = pm.getAuthenticatedMember() |
---|
| 703 | logger = logging.getLogger('WAeUPTables.ApplicantsCatalog.importCSV') |
---|
| 704 | lock_fn = "%s/import/%s_import_lock" % (i_home,filename) |
---|
| 705 | import_fn = "%s/import/%s.csv" % (i_home,filename) |
---|
| 706 | if mode not in ('add','edit'): |
---|
| 707 | logger.info("invalid mode: %s" % mode) |
---|
| 708 | if os.path.exists(lock_fn): |
---|
| 709 | logger.info("import of %(import_fn)s already in progress" % vars()) |
---|
| 710 | return |
---|
| 711 | lock_file = open(lock_fn,"w") |
---|
| 712 | lock_file.write("%(current)s \n" % vars()) |
---|
| 713 | lock_file.close() |
---|
| 714 | invalid_fn = "%s/import/%s_not_imported%s.csv" % (i_home,filename,current) |
---|
| 715 | duplicate_fn = "%s/import/%s_not_imported%s.csv" % (i_home,filename,current) |
---|
| 716 | stool = getToolByName(self, 'portal_schemas') |
---|
| 717 | ltool = getToolByName(self, 'portal_layouts') |
---|
| 718 | schema = stool._getOb(schema_id) |
---|
| 719 | if schema is None: |
---|
| 720 | em = 'No such schema %s' % schema_id |
---|
| 721 | logger.error(em) |
---|
| 722 | return |
---|
| 723 | for postfix in ('_import',''): |
---|
| 724 | layout_name = "%(layout_id)s%(postfix)s" % vars() |
---|
| 725 | if hasattr(ltool,layout_name): |
---|
| 726 | break |
---|
| 727 | layout = ltool._getOb(layout_name) |
---|
| 728 | if layout is None: |
---|
| 729 | em = 'No such layout %s' % layout_id |
---|
| 730 | logger.error(em) |
---|
| 731 | return |
---|
| 732 | try: |
---|
| 733 | csv_file = csv.DictReader(open(import_fn,"rb")) |
---|
| 734 | except: |
---|
| 735 | em = 'Error reading %s.csv' % filename |
---|
| 736 | logger.error(em) |
---|
[2191] | 737 | return |
---|
[2185] | 738 | d = self._import_new(csv_items,schema,layout,mode,logger) |
---|
| 739 | imported = [] |
---|
| 740 | edited = [] |
---|
| 741 | duplicates = [] |
---|
| 742 | not_found = [] |
---|
| 743 | if len(d['valid_records']) > 0: |
---|
| 744 | for record in d['valid_records']: |
---|
| 745 | #import pdb;pdb.set_trace() |
---|
| 746 | if mode == "add": |
---|
| 747 | try: |
---|
| 748 | self.addRecord(**dict(record.items())) |
---|
| 749 | imported.append(**dict(record.items())) |
---|
| 750 | logger.info("added %s" % record.items()) |
---|
| 751 | except ValueError: |
---|
| 752 | dupplicate.append(**dict(record.items())) |
---|
| 753 | logger.info("duplicate %s" % record.items()) |
---|
| 754 | elif mode == "edit": |
---|
| 755 | try: |
---|
| 756 | self.modifyRecord(**dict(record.items())) |
---|
| 757 | edited.append(**dict(record.items())) |
---|
| 758 | logger.info("edited %s" % record.items()) |
---|
| 759 | except KeyError: |
---|
| 760 | not_found.append(**dict(record.items())) |
---|
| 761 | logger.info("not found %s" % record.items()) |
---|
| 762 | invalid = d['invalid_records'] |
---|
| 763 | for itype in ("imported","edited","not_found","duplicate","invalid"): |
---|
| 764 | outlist = locals[itype] |
---|
| 765 | if len(outlist): |
---|
| 766 | d = {} |
---|
| 767 | for k in outlist[0].keys(): |
---|
| 768 | d[k] = k |
---|
[2191] | 769 | outlist[0] = d |
---|
[2185] | 770 | outfile = open("file_name_%s" % itype,'w') |
---|
| 771 | csv.DictWriter(outfile,outlist[0].keys()).writerows(outlist) |
---|
| 772 | logger.info("wrote %(itype)s records to %(, written to %(not_imported_fn)s" % d) |
---|
| 773 | ###) |
---|
| 774 | |
---|
[2094] | 775 | security.declareProtected(ModifyPortalContent,"importCSV")###( |
---|
| 776 | def importCSV(self,filename="JAMB_data", |
---|
| 777 | schema_id="application", |
---|
[2508] | 778 | layout_id="application_pce", |
---|
[2094] | 779 | mode='add'): |
---|
| 780 | """ import JAMB data """ |
---|
| 781 | stool = getToolByName(self, 'portal_schemas') |
---|
| 782 | ltool = getToolByName(self, 'portal_layouts') |
---|
| 783 | schema = stool._getOb(schema_id) |
---|
| 784 | if schema is None: |
---|
| 785 | em = 'No such schema %s' % schema_id |
---|
| 786 | logger.error(em) |
---|
| 787 | return |
---|
| 788 | layout = ltool._getOb(layout_id) |
---|
| 789 | if layout is None: |
---|
| 790 | em = 'No such layout %s' % layout_id |
---|
| 791 | logger.error(em) |
---|
| 792 | return |
---|
[2099] | 793 | logger = logging.getLogger('WAeUPTables.ApplicantsCatalog.importCSV') |
---|
[2185] | 794 | d = self._import_old(filename,schema,layout,mode,logger) |
---|
[2094] | 795 | if len(d['valid_records']) > 0: |
---|
| 796 | for record in d['valid_records']: |
---|
| 797 | #import pdb;pdb.set_trace() |
---|
| 798 | if mode == "add": |
---|
| 799 | self.addRecord(**dict(record.items())) |
---|
| 800 | logger.info("added %s" % record.items()) |
---|
| 801 | elif mode == "edit": |
---|
| 802 | self.modifyRecord(**dict(record.items())) |
---|
| 803 | logger.info("edited %s" % record.items()) |
---|
| 804 | else: |
---|
| 805 | logger.info("invalid mode: %s" % mode) |
---|
| 806 | logger.info("%(mode)sed %(imported)d records, invalid written to %(not_imported_fn)s" % d) |
---|
[2632] | 807 | ###) |
---|
[2094] | 808 | |
---|
| 809 | InitializeClass(ApplicantsCatalog) |
---|
| 810 | |
---|
| 811 | ###) |
---|
| 812 | |
---|
[1146] | 813 | class StudentsCatalog(WAeUPTable): ###( |
---|
[1620] | 814 | security = ClassSecurityInfo() |
---|
[1146] | 815 | |
---|
[971] | 816 | meta_type = 'WAeUP Students Catalog' |
---|
| 817 | name = "students_catalog" |
---|
| 818 | key = "id" |
---|
[1700] | 819 | affected_types = { ###( |
---|
[1749] | 820 | 'StudentApplication': |
---|
[2069] | 821 | {'id': 'application', |
---|
| 822 | 'fields': |
---|
| 823 | ('jamb_reg_no', |
---|
| 824 | 'entry_mode', |
---|
| 825 | #'entry_level', |
---|
| 826 | 'entry_session', |
---|
| 827 | ) |
---|
| 828 | }, |
---|
[1700] | 829 | 'StudentClearance': |
---|
[2069] | 830 | {'id': 'clearance', |
---|
| 831 | 'fields': |
---|
| 832 | ('matric_no', |
---|
| 833 | 'lga', |
---|
| 834 | ) |
---|
| 835 | }, |
---|
| 836 | 'StudentPersonal': |
---|
| 837 | {'id': 'personal', |
---|
| 838 | 'fields': |
---|
| 839 | ('name', |
---|
| 840 | 'sex', |
---|
| 841 | 'perm_address', |
---|
| 842 | 'email', |
---|
| 843 | 'phone', |
---|
| 844 | ) |
---|
| 845 | }, |
---|
| 846 | 'StudentStudyCourse': |
---|
| 847 | {'id': 'study_course', |
---|
| 848 | 'fields': |
---|
| 849 | ('course', # study_course |
---|
| 850 | 'faculty', # from certificate |
---|
| 851 | 'department', # from certificate |
---|
| 852 | 'end_level', # from certificate |
---|
| 853 | 'level', # current_level |
---|
| 854 | 'mode', # current_mode |
---|
| 855 | 'session', # current_session |
---|
| 856 | 'verdict', # current_verdict |
---|
| 857 | ) |
---|
| 858 | }, |
---|
| 859 | } |
---|
[1700] | 860 | ###) |
---|
[1625] | 861 | |
---|
[2094] | 862 | def __init__(self,name=None): |
---|
| 863 | if name == None: |
---|
| 864 | name = self.name |
---|
| 865 | WAeUPTable.__init__(self, name) |
---|
[1620] | 866 | return |
---|
[1625] | 867 | |
---|
[1700] | 868 | def manage_catalogClear(self, REQUEST=None, RESPONSE=None, URL1=None): |
---|
| 869 | """ clears the whole enchilada """ |
---|
| 870 | self._catalog.clear() |
---|
[971] | 871 | |
---|
[1700] | 872 | if REQUEST and RESPONSE: |
---|
| 873 | RESPONSE.redirect( |
---|
| 874 | URL1 + |
---|
| 875 | '/manage_catalogAdvanced?manage_tabs_message=Catalog%20Cleared') |
---|
[971] | 876 | |
---|
[1700] | 877 | def manage_catalogReindex(self, REQUEST, RESPONSE, URL1): ###( |
---|
| 878 | """ clear the catalog, then re-index everything """ |
---|
| 879 | |
---|
| 880 | elapse = time.time() |
---|
| 881 | c_elapse = time.clock() |
---|
| 882 | |
---|
| 883 | pgthreshold = self._getProgressThreshold() |
---|
| 884 | handler = (pgthreshold > 0) and ZLogHandler(pgthreshold) or None |
---|
| 885 | self.refreshCatalog(clear=1, pghandler=handler) |
---|
| 886 | |
---|
| 887 | elapse = time.time() - elapse |
---|
| 888 | c_elapse = time.clock() - c_elapse |
---|
| 889 | |
---|
| 890 | RESPONSE.redirect( |
---|
| 891 | URL1 + |
---|
| 892 | '/manage_catalogAdvanced?manage_tabs_message=' + |
---|
| 893 | urllib.quote('Catalog Updated \n' |
---|
| 894 | 'Total time: %s\n' |
---|
| 895 | 'Total CPU time: %s' % (`elapse`, `c_elapse`))) |
---|
| 896 | ###) |
---|
| 897 | |
---|
[2084] | 898 | def fill_certificates_dict(self): ###( |
---|
[2078] | 899 | "return certificate data in dict" |
---|
| 900 | certificates_brains = self.portal_catalog(portal_type ='Certificate') |
---|
| 901 | d = {} |
---|
| 902 | for cb in certificates_brains: |
---|
| 903 | certificate_doc = cb.getObject().getContent() |
---|
| 904 | cb_path = cb.getPath().split('/') |
---|
| 905 | ld = {} |
---|
| 906 | ld['faculty'] = cb_path[-4] |
---|
| 907 | ld['department'] = cb_path[-3] |
---|
| 908 | ld['end_level'] = getattr(certificate_doc,'end_level','999') |
---|
| 909 | d[cb.getId] = ld |
---|
| 910 | return d |
---|
[2084] | 911 | ###) |
---|
| 912 | |
---|
[2078] | 913 | def get_from_doc_department(self,doc,cached_data={}): ###( |
---|
[1620] | 914 | "return the students department" |
---|
[1700] | 915 | if doc is None: |
---|
[1620] | 916 | return None |
---|
[2078] | 917 | if cached_data.has_key(doc.study_course): |
---|
| 918 | return cached_data[doc.study_course]['department'] |
---|
[1700] | 919 | certificate_res = self.portal_catalog(id = doc.study_course) |
---|
[1620] | 920 | if len(certificate_res) != 1: |
---|
| 921 | return None |
---|
| 922 | return certificate_res[0].getPath().split('/')[-3] |
---|
| 923 | |
---|
[2078] | 924 | def get_from_doc_faculty(self,doc,cached_data={}): |
---|
[1700] | 925 | "return the students faculty" |
---|
| 926 | if doc is None: |
---|
[1620] | 927 | return None |
---|
[2078] | 928 | if cached_data.has_key(doc.study_course): |
---|
| 929 | return cached_data[doc.study_course]['faculty'] |
---|
[1700] | 930 | certificate_res = self.portal_catalog(id = doc.study_course) |
---|
| 931 | if len(certificate_res) != 1: |
---|
| 932 | return None |
---|
| 933 | return certificate_res[0].getPath().split('/')[-4] |
---|
[1620] | 934 | |
---|
[2099] | 935 | def get_from_doc_end_level(self,doc,cached_data={}): |
---|
[2069] | 936 | "return the students end_level" |
---|
| 937 | if doc is None: |
---|
| 938 | return None |
---|
[2078] | 939 | if cached_data.has_key(doc.study_course): |
---|
| 940 | return cached_data[doc.study_course]['end_level'] |
---|
[2069] | 941 | certificate_res = self.portal_catalog(id = doc.study_course) |
---|
| 942 | if len(certificate_res) != 1: |
---|
| 943 | return None |
---|
| 944 | return getattr(certificate_res[0].getObject().getContent(),'end_level','unknown') |
---|
| 945 | |
---|
[2078] | 946 | def get_from_doc_level(self,doc,cached_data={}): |
---|
[1700] | 947 | "return the students level" |
---|
| 948 | if doc is None: |
---|
[1620] | 949 | return None |
---|
[1700] | 950 | return getattr(doc,'current_level',None) |
---|
[1620] | 951 | |
---|
[2078] | 952 | def get_from_doc_mode(self,doc,cached_data={}): |
---|
[1705] | 953 | "return the students mode" |
---|
[1700] | 954 | if doc is None: |
---|
[1620] | 955 | return None |
---|
[1705] | 956 | cm = getattr(doc,'current_mode',None) |
---|
| 957 | return cm |
---|
[1625] | 958 | |
---|
[1749] | 959 | |
---|
[2078] | 960 | def get_from_doc_session(self,doc,cached_data={}): |
---|
[1705] | 961 | "return the students current_session" |
---|
| 962 | if doc is None: |
---|
| 963 | return None |
---|
| 964 | return getattr(doc,'current_session',None) |
---|
| 965 | |
---|
[2078] | 966 | def get_from_doc_entry_session(self,doc,cached_data={}): |
---|
[1700] | 967 | "return the students entry_session" |
---|
| 968 | if doc is None: |
---|
[1620] | 969 | return None |
---|
[1705] | 970 | es = getattr(doc,'entry_session',None) |
---|
[1729] | 971 | if es is not None and len(es) == 2: |
---|
[1705] | 972 | return es |
---|
[1700] | 973 | try: |
---|
| 974 | digit = int(doc.jamb_reg_no[0]) |
---|
| 975 | except: |
---|
[1986] | 976 | return "-1" |
---|
[1700] | 977 | if digit < 8: |
---|
| 978 | return "0%c" % doc.jamb_reg_no[0] |
---|
| 979 | return "9%c" % doc.jamb_reg_no[0] |
---|
| 980 | |
---|
[2078] | 981 | def get_from_doc_course(self,doc,cached_data={}): |
---|
[1620] | 982 | "return the students study_course" |
---|
[1700] | 983 | if doc is None: |
---|
[1620] | 984 | return None |
---|
[1700] | 985 | return getattr(doc,'study_course',None) |
---|
[1620] | 986 | |
---|
[2078] | 987 | def get_from_doc_name(self,doc,cached_data={}): |
---|
[1620] | 988 | "return the students name from the personal" |
---|
[1700] | 989 | if doc is None: |
---|
[1620] | 990 | return None |
---|
| 991 | return "%s %s %s" % (doc.firstname,doc.middlename,doc.lastname) |
---|
| 992 | |
---|
[2078] | 993 | def get_from_doc_verdict(self,doc,cached_data={}): |
---|
[1700] | 994 | "return the students study_course" |
---|
| 995 | if doc is None: |
---|
[1620] | 996 | return None |
---|
[1700] | 997 | return getattr(doc,'current_verdict',None) |
---|
[1702] | 998 | ###) |
---|
[1620] | 999 | |
---|
[1702] | 1000 | def reindexIndex(self, name, REQUEST,pghandler=None): ###( |
---|
| 1001 | if isinstance(name, str): |
---|
| 1002 | name = (name,) |
---|
[1749] | 1003 | reindextypes = {} |
---|
[1702] | 1004 | reindex_special = [] |
---|
| 1005 | for n in name: |
---|
| 1006 | if n in ("review_state","registered_courses"): |
---|
| 1007 | reindex_special.append(n) |
---|
| 1008 | else: |
---|
| 1009 | for pt in self.affected_types.keys(): |
---|
[1707] | 1010 | if n in self.affected_types[pt]['fields']: |
---|
[1702] | 1011 | if reindextypes.has_key(pt): |
---|
| 1012 | reindextypes[pt].append(n) |
---|
| 1013 | else: |
---|
| 1014 | reindextypes[pt]= [n] |
---|
| 1015 | break |
---|
[2078] | 1016 | cached_data = {} |
---|
| 1017 | if set(name).intersection(set(('faculty','department','end_level'))): |
---|
| 1018 | cached_data = self.fill_certificates_dict() |
---|
[1702] | 1019 | students = self.portal_catalog(portal_type="Student") |
---|
[1954] | 1020 | if hasattr(self,'portal_catalog_real'): |
---|
| 1021 | aq_portal = self.portal_catalog_real.evalAdvancedQuery |
---|
| 1022 | else: |
---|
| 1023 | aq_portal = self.portal_catalog.evalAdvancedQuery |
---|
[1702] | 1024 | num_objects = len(students) |
---|
| 1025 | if pghandler: |
---|
| 1026 | pghandler.init('Refreshing catalog: %s' % self.absolute_url(1), num_objects) |
---|
| 1027 | noattr = set(('StudentClearance','StudentPersonal')) & set(reindextypes.keys()) |
---|
[2084] | 1028 | #import pdb;pdb.set_trace() |
---|
[1702] | 1029 | for i in xrange(num_objects): |
---|
| 1030 | if pghandler: pghandler.report(i) |
---|
| 1031 | student_brain = students[i] |
---|
[1707] | 1032 | student_object = student_brain.getObject() |
---|
[2084] | 1033 | # query = Eq('path',student_brain.getPath()) |
---|
| 1034 | # sub_brains_list = aq_portal(query) |
---|
| 1035 | # sub_brains = {} |
---|
| 1036 | # for sub_brain in sub_brains_list: |
---|
| 1037 | # sub_brains[sub_brain.portal_type] = sub_brain |
---|
| 1038 | # student_path = student_brain.getPath() |
---|
[1702] | 1039 | data = {} |
---|
| 1040 | modified = False |
---|
| 1041 | sid = data['id'] = student_brain.getId |
---|
| 1042 | if reindex_special and 'review_state' in reindex_special: |
---|
| 1043 | modified = True |
---|
| 1044 | data['review_state'] = student_brain.review_state |
---|
[1707] | 1045 | sub_objects = False |
---|
| 1046 | for pt in reindextypes.keys(): |
---|
[1702] | 1047 | modified = True |
---|
[1707] | 1048 | try: |
---|
| 1049 | doc = getattr(student_object,self.affected_types[pt]['id']).getContent() |
---|
[2084] | 1050 | #doc = sub_brains[pt].getObject().getContent() |
---|
| 1051 | # path = "%s/%s" % (student_path,self.affected_types[pt]['id']) |
---|
| 1052 | # doc = self.unrestrictedTraverse(path).getContent() |
---|
[1707] | 1053 | sub_objects = True |
---|
| 1054 | except: |
---|
| 1055 | continue |
---|
[2084] | 1056 | for field in set(name).intersection(self.affected_types[pt]['fields']): |
---|
[1707] | 1057 | if hasattr(self,'get_from_doc_%s' % field): |
---|
[2078] | 1058 | data[field] = getattr(self,'get_from_doc_%s' % field)(doc, |
---|
| 1059 | cached_data=cached_data) |
---|
[1707] | 1060 | else: |
---|
| 1061 | data[field] = getattr(doc,field) |
---|
| 1062 | if not sub_objects and noattr: |
---|
| 1063 | import_res = self.returning_import(id = sid) |
---|
| 1064 | if not import_res: |
---|
| 1065 | continue |
---|
| 1066 | import_record = import_res[0] |
---|
| 1067 | data['matric_no'] = import_record.matric_no |
---|
| 1068 | data['sex'] = import_record.Sex == 'F' |
---|
| 1069 | data['name'] = "%s %s %s" % (import_record.Firstname, |
---|
| 1070 | import_record.Middlename, |
---|
| 1071 | import_record.Lastname) |
---|
[1815] | 1072 | data['jamb_reg_no'] = import_record.Entryregno |
---|
[2454] | 1073 | #if reindex_special and 'registered_courses' in reindex_special: |
---|
| 1074 | # try: |
---|
| 1075 | # study_course = getattr(student_object,"study_course") |
---|
| 1076 | # level_ids = study_course.objectIds() |
---|
| 1077 | # except: |
---|
| 1078 | # continue |
---|
| 1079 | # if not level_ids: |
---|
| 1080 | # continue |
---|
| 1081 | # modified = True |
---|
| 1082 | # level_ids.sort() |
---|
| 1083 | # course_ids = getattr(study_course,level_ids[-1]).objectIds() |
---|
| 1084 | # courses = [] |
---|
| 1085 | # for c in course_ids: |
---|
| 1086 | # if c.endswith('_co'): |
---|
| 1087 | # courses.append(c[:-3]) |
---|
| 1088 | # else: |
---|
| 1089 | # courses.append(c) |
---|
| 1090 | # data['registered_courses'] = courses |
---|
[1702] | 1091 | if modified: |
---|
| 1092 | self.modifyRecord(**data) |
---|
| 1093 | if pghandler: pghandler.finish() |
---|
| 1094 | ###) |
---|
[1620] | 1095 | |
---|
| 1096 | def refreshCatalog(self, clear=0, pghandler=None): ###( |
---|
| 1097 | """ re-index everything we can find """ |
---|
| 1098 | students_folder = self.portal_url.getPortalObject().campus.students |
---|
| 1099 | if clear: |
---|
[1724] | 1100 | self._catalog.clear() |
---|
[1700] | 1101 | students = self.portal_catalog(portal_type="Student") |
---|
| 1102 | num_objects = len(students) |
---|
[2078] | 1103 | cached_data = self.fill_certificates_dict() |
---|
[1620] | 1104 | if pghandler: |
---|
| 1105 | pghandler.init('Refreshing catalog: %s' % self.absolute_url(1), num_objects) |
---|
| 1106 | for i in xrange(num_objects): |
---|
| 1107 | if pghandler: pghandler.report(i) |
---|
[1700] | 1108 | student_brain = students[i] |
---|
| 1109 | spath = student_brain.getPath() |
---|
[1727] | 1110 | student_object = student_brain.getObject() |
---|
[1620] | 1111 | data = {} |
---|
[1700] | 1112 | sid = data['id'] = student_brain.getId |
---|
| 1113 | data['review_state'] = student_brain.review_state |
---|
[1707] | 1114 | sub_objects = False |
---|
| 1115 | for pt in self.affected_types.keys(): |
---|
| 1116 | modified = True |
---|
| 1117 | try: |
---|
| 1118 | doc = getattr(student_object,self.affected_types[pt]['id']).getContent() |
---|
| 1119 | sub_objects = True |
---|
| 1120 | except: |
---|
[1727] | 1121 | #from pdb import set_trace;set_trace() |
---|
[1707] | 1122 | continue |
---|
| 1123 | for field in self.affected_types[pt]['fields']: |
---|
| 1124 | if hasattr(self,'get_from_doc_%s' % field): |
---|
[2078] | 1125 | data[field] = getattr(self,'get_from_doc_%s' % field)(doc, |
---|
| 1126 | cached_data=cached_data) |
---|
[1707] | 1127 | else: |
---|
[1727] | 1128 | data[field] = getattr(doc,field,None) |
---|
| 1129 | if not sub_objects: |
---|
[1700] | 1130 | import_res = self.returning_import(id = sid) |
---|
| 1131 | if not import_res: |
---|
[1620] | 1132 | continue |
---|
[1700] | 1133 | import_record = import_res[0] |
---|
| 1134 | data['matric_no'] = import_record.matric_no |
---|
| 1135 | data['sex'] = import_record.Sex == 'F' |
---|
| 1136 | data['name'] = "%s %s %s" % (import_record.Firstname, |
---|
| 1137 | import_record.Middlename, |
---|
| 1138 | import_record.Lastname) |
---|
[1815] | 1139 | data['jamb_reg_no'] = import_record.Entryregno |
---|
[1700] | 1140 | self.addRecord(**data) |
---|
[1620] | 1141 | if pghandler: pghandler.finish() |
---|
| 1142 | ###) |
---|
| 1143 | |
---|
[1700] | 1144 | security.declarePrivate('notify_event_listener') ###( |
---|
[1620] | 1145 | def notify_event_listener(self,event_type,object,infos): |
---|
| 1146 | "listen for events" |
---|
[1716] | 1147 | if not infos.has_key('rpath'): |
---|
| 1148 | return |
---|
[1702] | 1149 | pt = getattr(object,'portal_type',None) |
---|
| 1150 | mt = getattr(object,'meta_type',None) |
---|
[1954] | 1151 | students_catalog = self |
---|
[1702] | 1152 | data = {} |
---|
| 1153 | if pt == 'Student' and\ |
---|
| 1154 | mt == 'CPS Proxy Folder' and\ |
---|
| 1155 | event_type.startswith('workflow'): |
---|
| 1156 | data['id'] = object.getId() |
---|
| 1157 | data['review_state'] = self.portal_workflow.getInfoFor(object,'review_state',None) |
---|
| 1158 | students_catalog.modifyRecord(**data) |
---|
| 1159 | return |
---|
[1700] | 1160 | rpl = infos['rpath'].split('/') |
---|
[2396] | 1161 | if pt == 'Student' and mt == 'CPS Proxy Folder': |
---|
[1700] | 1162 | student_id = object.id |
---|
[2396] | 1163 | if event_type == "sys_add_object": |
---|
| 1164 | try: |
---|
| 1165 | self.addRecord(id = student_id) |
---|
| 1166 | except ValueError: |
---|
| 1167 | pass |
---|
| 1168 | return |
---|
| 1169 | elif event_type == 'sys_del_object': |
---|
| 1170 | self.deleteRecord(student_id) |
---|
[1716] | 1171 | if pt not in self.affected_types.keys(): |
---|
[1700] | 1172 | return |
---|
[1716] | 1173 | if event_type not in ('sys_modify_object'): |
---|
| 1174 | return |
---|
[1700] | 1175 | if mt == 'CPS Proxy Folder': |
---|
| 1176 | return |
---|
[1716] | 1177 | for field in self.affected_types[pt]['fields']: |
---|
[1700] | 1178 | if hasattr(self,'get_from_doc_%s' % field): |
---|
| 1179 | data[field] = getattr(self,'get_from_doc_%s' % field)(object) |
---|
| 1180 | else: |
---|
| 1181 | data[field] = getattr(object,field) |
---|
| 1182 | data['id'] = rpl[2] |
---|
[1716] | 1183 | self.modifyRecord(**data) |
---|
[1700] | 1184 | ###) |
---|
[1620] | 1185 | |
---|
[1625] | 1186 | |
---|
[971] | 1187 | InitializeClass(StudentsCatalog) |
---|
| 1188 | |
---|
[1146] | 1189 | ###) |
---|
| 1190 | |
---|
| 1191 | class CoursesCatalog(WAeUPTable): ###( |
---|
[1716] | 1192 | security = ClassSecurityInfo() |
---|
[1146] | 1193 | |
---|
| 1194 | meta_type = 'WAeUP Courses Catalog' |
---|
[2094] | 1195 | name = "courses_catalog" |
---|
[1146] | 1196 | key = "code" |
---|
[2094] | 1197 | def __init__(self,name=None): |
---|
| 1198 | if name == None: |
---|
| 1199 | name = self.name |
---|
| 1200 | WAeUPTable.__init__(self, name) |
---|
[1146] | 1201 | |
---|
[1716] | 1202 | def manage_catalogReindex(self, REQUEST, RESPONSE, URL1): ###( |
---|
| 1203 | """ clear the catalog, then re-index everything """ |
---|
[1146] | 1204 | |
---|
[1716] | 1205 | elapse = time.time() |
---|
| 1206 | c_elapse = time.clock() |
---|
| 1207 | |
---|
| 1208 | pgthreshold = self._getProgressThreshold() |
---|
| 1209 | handler = (pgthreshold > 0) and ZLogHandler(pgthreshold) or None |
---|
| 1210 | self.refreshCatalog(clear=1, pghandler=handler) |
---|
| 1211 | |
---|
| 1212 | elapse = time.time() - elapse |
---|
| 1213 | c_elapse = time.clock() - c_elapse |
---|
| 1214 | |
---|
| 1215 | RESPONSE.redirect( |
---|
| 1216 | URL1 + |
---|
| 1217 | '/manage_catalogAdvanced?manage_tabs_message=' + |
---|
| 1218 | urllib.quote('Catalog Updated \n' |
---|
| 1219 | 'Total time: %s\n' |
---|
| 1220 | 'Total CPU time: %s' % (`elapse`, `c_elapse`))) |
---|
| 1221 | ###) |
---|
| 1222 | |
---|
| 1223 | def reindexIndex(self, name, REQUEST,pghandler=None): ###( |
---|
| 1224 | if isinstance(name, str): |
---|
| 1225 | name = (name,) |
---|
| 1226 | courses = self.portal_catalog(portal_type="Course") |
---|
| 1227 | num_objects = len(courses) |
---|
| 1228 | if pghandler: |
---|
| 1229 | pghandler.init('Refreshing catalog: %s' % self.absolute_url(1), num_objects) |
---|
| 1230 | for i in xrange(num_objects): |
---|
| 1231 | if pghandler: pghandler.report(i) |
---|
| 1232 | course_brain = courses[i] |
---|
| 1233 | course_object = course_brain.getObject() |
---|
| 1234 | pl = course_brain.getPath().split('/') |
---|
| 1235 | data = {} |
---|
| 1236 | cid = data[self.key] = course_brain.getId |
---|
| 1237 | data['faculty'] = pl[-4] |
---|
| 1238 | data['department'] = pl[-3] |
---|
| 1239 | doc = course_object.getContent() |
---|
| 1240 | for field in name: |
---|
| 1241 | if field not in (self.key,'faculty','department'): |
---|
| 1242 | data[field] = getattr(doc,field) |
---|
| 1243 | self.modifyRecord(**data) |
---|
| 1244 | if pghandler: pghandler.finish() |
---|
| 1245 | ###) |
---|
| 1246 | |
---|
| 1247 | def refreshCatalog(self, clear=0, pghandler=None): ###( |
---|
| 1248 | """ re-index everything we can find """ |
---|
[1724] | 1249 | if clear: |
---|
| 1250 | self._catalog.clear() |
---|
[1716] | 1251 | courses = self.portal_catalog(portal_type="Course") |
---|
| 1252 | num_objects = len(courses) |
---|
| 1253 | if pghandler: |
---|
| 1254 | pghandler.init('Refreshing catalog: %s' % self.absolute_url(1), num_objects) |
---|
[1724] | 1255 | #from pdb import set_trace;set_trace() |
---|
[1716] | 1256 | for i in xrange(num_objects): |
---|
| 1257 | if pghandler: pghandler.report(i) |
---|
| 1258 | course_brain = courses[i] |
---|
[1724] | 1259 | course_doc = course_brain.getObject().getContent() |
---|
[1716] | 1260 | pl = course_brain.getPath().split('/') |
---|
| 1261 | data = {} |
---|
[1724] | 1262 | for field in self.schema(): |
---|
[1749] | 1263 | data[field] = getattr(course_doc,field,None) |
---|
[1716] | 1264 | data[self.key] = course_brain.getId |
---|
[1724] | 1265 | ai = pl.index('academics') |
---|
| 1266 | data['faculty'] = pl[ai +1] |
---|
| 1267 | data['department'] = pl[ai +2] |
---|
| 1268 | if clear: |
---|
| 1269 | self.addRecord(**data) |
---|
| 1270 | else: |
---|
| 1271 | self.modifyRecord(**data) |
---|
[1716] | 1272 | if pghandler: pghandler.finish() |
---|
| 1273 | ###) |
---|
| 1274 | |
---|
| 1275 | security.declarePrivate('notify_event_listener') ###( |
---|
| 1276 | def notify_event_listener(self,event_type,object,infos): |
---|
| 1277 | "listen for events" |
---|
| 1278 | if not infos.has_key('rpath'): |
---|
| 1279 | return |
---|
| 1280 | pt = getattr(object,'portal_type',None) |
---|
| 1281 | mt = getattr(object,'meta_type',None) |
---|
| 1282 | if pt != 'Course': |
---|
| 1283 | return |
---|
| 1284 | data = {} |
---|
| 1285 | rpl = infos['rpath'].split('/') |
---|
| 1286 | if event_type not in ("sys_add_object","sys_modify_object","sys_del_object"): |
---|
| 1287 | return |
---|
| 1288 | course_id = object.getId() |
---|
| 1289 | data[self.key] = course_id |
---|
[1724] | 1290 | if event_type == "sys_add_object" and mt == 'CPS Proxy Folder': |
---|
[1716] | 1291 | try: |
---|
| 1292 | self.addRecord(**data) |
---|
| 1293 | except ValueError: |
---|
[1724] | 1294 | return |
---|
| 1295 | course_id = object.getId() |
---|
| 1296 | doc = object.getContent() |
---|
| 1297 | if doc is None: |
---|
| 1298 | return |
---|
| 1299 | for field in self.schema(): |
---|
[1749] | 1300 | data[field] = getattr(doc,field,None) |
---|
[1724] | 1301 | data[self.key] = course_id |
---|
| 1302 | ai = rpl.index('academics') |
---|
| 1303 | data['faculty'] = rpl[ai +1] |
---|
| 1304 | data['department'] = rpl[ai +2] |
---|
| 1305 | self.modifyRecord(**data) |
---|
| 1306 | return |
---|
[1716] | 1307 | if event_type == "sys_del_object": |
---|
| 1308 | self.deleteRecord(course_id) |
---|
[1724] | 1309 | return |
---|
[1716] | 1310 | if event_type == "sys_modify_object" and mt == 'Course': |
---|
[1724] | 1311 | #from pdb import set_trace;set_trace() |
---|
[1716] | 1312 | for field in self.schema(): |
---|
[1749] | 1313 | data[field] = getattr(object,field,None) |
---|
[1716] | 1314 | course_id = object.aq_parent.getId() |
---|
| 1315 | data[self.key] = course_id |
---|
[1724] | 1316 | ai = rpl.index('academics') |
---|
| 1317 | data['faculty'] = rpl[ai +1] |
---|
| 1318 | data['department'] = rpl[ai +2] |
---|
[1716] | 1319 | self.modifyRecord(**data) |
---|
| 1320 | ###) |
---|
| 1321 | |
---|
| 1322 | |
---|
[1146] | 1323 | InitializeClass(CoursesCatalog) |
---|
[1151] | 1324 | ###) |
---|
[1146] | 1325 | |
---|
[2084] | 1326 | class CourseResults(WAeUPTable): ###( |
---|
[2069] | 1327 | security = ClassSecurityInfo() |
---|
| 1328 | |
---|
| 1329 | meta_type = 'WAeUP Results Catalog' |
---|
| 1330 | name = "course_results" |
---|
[2084] | 1331 | key = "key" #student_id + level + course_id |
---|
[2094] | 1332 | def __init__(self,name=None): |
---|
| 1333 | if name == None: |
---|
| 1334 | name = self.name |
---|
| 1335 | WAeUPTable.__init__(self, name) |
---|
[2084] | 1336 | self._queue = [] |
---|
[2099] | 1337 | |
---|
[2094] | 1338 | def addMultipleRecords(self, records): ###( |
---|
| 1339 | """add many records""" |
---|
| 1340 | added_keys = [] |
---|
| 1341 | for data in records: |
---|
| 1342 | uid = key = "%(student_id)s|%(level_id)s|%(course_id)s" % data |
---|
| 1343 | data['%s' % self.key] = uid |
---|
| 1344 | res = self.searchResults({"%s" % self.key : uid}) |
---|
| 1345 | if len(res) > 0: |
---|
| 1346 | raise ValueError("More than one record with uid %s" % uid) |
---|
| 1347 | self.catalog_object(dict2ob(data), uid=uid) |
---|
| 1348 | return uid |
---|
| 1349 | ###) |
---|
| 1350 | |
---|
[2434] | 1351 | def deleteResultsHere(self,level_id,student_id): ###( |
---|
| 1352 | #import pdb;pdb.set_trace() |
---|
| 1353 | query = Eq('student_id',student_id) & Eq('level_id', level_id) |
---|
| 1354 | course_results = self.course_results.evalAdvancedQuery(query) |
---|
| 1355 | for result in course_results: |
---|
| 1356 | self.deleteRecord(result.key) |
---|
[2084] | 1357 | ###) |
---|
| 1358 | |
---|
[2434] | 1359 | def moveResultsHere(self,level,student_id): ###( |
---|
| 1360 | #import pdb;pdb.set_trace() |
---|
| 1361 | level_id = level.getId() |
---|
| 1362 | query = Eq('student_id',student_id) & Eq('level_id', level_id) |
---|
| 1363 | course_results = self.course_results.evalAdvancedQuery(query) |
---|
[2437] | 1364 | existing_courses = [cr.code for cr in course_results] |
---|
[2434] | 1365 | to_delete = [] |
---|
| 1366 | for code,obj in level.objectItems(): |
---|
[2437] | 1367 | to_delete.append(code) |
---|
[2434] | 1368 | carry_over = False |
---|
| 1369 | if code.endswith('_co'): |
---|
| 1370 | carry_over = True |
---|
[2437] | 1371 | code = code[:-3] |
---|
[2434] | 1372 | if code in existing_courses: |
---|
[2094] | 1373 | continue |
---|
[2434] | 1374 | course_result_doc = obj.getContent() |
---|
[2094] | 1375 | data = {} |
---|
[2434] | 1376 | course_id = code |
---|
[2094] | 1377 | for field in self.schema(): |
---|
| 1378 | data[field] = getattr(course_result_doc,field,'') |
---|
| 1379 | data['key'] = key = "%(student_id)s|%(level_id)s|%(course_id)s" % vars() |
---|
[2099] | 1380 | data['student_id'] = student_id |
---|
| 1381 | data['level_id'] = level_id |
---|
[2439] | 1382 | session_id = self.getLevelSession(level.getContent(),student_id,level_id) |
---|
[2442] | 1383 | data['session_id'] = session_id |
---|
[2434] | 1384 | #data['queue_status'] = OBJECT_CREATED |
---|
[2099] | 1385 | data['code'] = course_id |
---|
[2434] | 1386 | data['carry_over'] = carry_over |
---|
[2094] | 1387 | self.catalog_object(dict2ob(data), uid=key) |
---|
[2434] | 1388 | level.manage_delObjects(to_delete) |
---|
| 1389 | ###) |
---|
| 1390 | |
---|
| 1391 | def getCourses(self,student_id,level_id): ###( |
---|
[2094] | 1392 | query = Eq('student_id',student_id) & Eq('level_id', level_id) |
---|
[2434] | 1393 | course_results = self.course_results.evalAdvancedQuery(query) |
---|
| 1394 | carry_overs = [] |
---|
[2606] | 1395 | normal1 = [] |
---|
| 1396 | normal2 = [] |
---|
[2761] | 1397 | normal3 = [] |
---|
[2757] | 1398 | total_credits = 0 |
---|
| 1399 | gpa = 0 |
---|
[2434] | 1400 | for brain in course_results: |
---|
| 1401 | d = {} |
---|
[2781] | 1402 | |
---|
[2761] | 1403 | for field in self.schema(): |
---|
| 1404 | d[field] = getattr(brain,field,'') |
---|
| 1405 | |
---|
| 1406 | d['weight'] = '' |
---|
| 1407 | d['grade'] = '' |
---|
| 1408 | d['score'] = '' |
---|
| 1409 | |
---|
[2750] | 1410 | if str(brain.credits).isdigit(): |
---|
[2757] | 1411 | credits = int(brain.credits) |
---|
| 1412 | total_credits += credits |
---|
[2780] | 1413 | score = getattr(brain,'score',0) |
---|
| 1414 | if score and str(score).isdigit() and int(score) > 0: |
---|
| 1415 | score = int(score) |
---|
[2757] | 1416 | grade,weight = self.getGradesFromScore(score) |
---|
[2781] | 1417 | gpa += weight * credits |
---|
| 1418 | d['weight'] = weight |
---|
| 1419 | d['grade'] = grade |
---|
| 1420 | d['score'] = score |
---|
[2757] | 1421 | d['coe'] = '' |
---|
[2434] | 1422 | if brain.core_or_elective: |
---|
| 1423 | d['coe'] = 'Core' |
---|
[2757] | 1424 | elif brain.core_or_elective == False: |
---|
| 1425 | d['coe'] = 'Elective' |
---|
[2434] | 1426 | id = code = d['id'] = brain.code |
---|
| 1427 | d['code'] = code |
---|
[2864] | 1428 | res = self.courses_catalog.evalAdvancedQuery(Eq('code',code)) |
---|
| 1429 | if res: |
---|
| 1430 | course = res[0] |
---|
| 1431 | d['title'] = course.title |
---|
| 1432 | # The courses_catalog contains strings and integers in its semester field. |
---|
| 1433 | # Maybe this can be fixed by reindexing the catalog. The schema of course says 'CPS Int Field'. |
---|
| 1434 | d['semester'] = str(course.semester) |
---|
| 1435 | else: |
---|
[2866] | 1436 | d['title'] = "Course has been removed from course list" |
---|
[2864] | 1437 | d['semester'] = '' |
---|
[2448] | 1438 | if brain.carry_over: |
---|
[2761] | 1439 | d['coe'] = 'CO' |
---|
[2434] | 1440 | carry_overs.append(d) |
---|
| 1441 | else: |
---|
[2614] | 1442 | if d['semester'] == '1': |
---|
[2606] | 1443 | normal1.append(d) |
---|
[2614] | 1444 | |
---|
| 1445 | elif d['semester'] == '2': |
---|
[2606] | 1446 | normal2.append(d) |
---|
| 1447 | else: |
---|
| 1448 | normal3.append(d) |
---|
| 1449 | #normal.sort(cmp=lambda x,y: cmp("%(semester)s%(code)s" % x, |
---|
| 1450 | # "%(semester)s%(code)s" % y)) |
---|
[2503] | 1451 | carry_overs.sort(cmp=lambda x,y: cmp("%(semester)s%(code)s" % x, |
---|
[2460] | 1452 | "%(semester)s%(code)s" % y)) |
---|
[2757] | 1453 | return total_credits,gpa,carry_overs,normal1,normal2,normal3 |
---|
[2094] | 1454 | ###) |
---|
| 1455 | |
---|
[2084] | 1456 | InitializeClass(CourseResults) |
---|
[2069] | 1457 | ###) |
---|
| 1458 | |
---|
[1625] | 1459 | class OnlinePaymentsImport(WAeUPTable): ###( |
---|
[1620] | 1460 | |
---|
| 1461 | meta_type = 'WAeUP Online Payment Transactions' |
---|
[1625] | 1462 | name = "online_payments_import" |
---|
[1620] | 1463 | key = "order_id" |
---|
[2094] | 1464 | def __init__(self,name=None): |
---|
| 1465 | if name == None: |
---|
| 1466 | name = self.name |
---|
| 1467 | WAeUPTable.__init__(self, name) |
---|
[1620] | 1468 | |
---|
| 1469 | |
---|
[2069] | 1470 | InitializeClass(OnlinePaymentsImport) |
---|
[1620] | 1471 | ###) |
---|
| 1472 | |
---|
[1151] | 1473 | class ReturningImport(WAeUPTable): ###( |
---|
[1146] | 1474 | |
---|
[1151] | 1475 | meta_type = 'Returning Import Table' |
---|
| 1476 | name = "returning_import" |
---|
[1146] | 1477 | key = "matric_no" |
---|
[2094] | 1478 | def __init__(self,name=None): |
---|
| 1479 | if name == None: |
---|
| 1480 | name = self.name |
---|
| 1481 | WAeUPTable.__init__(self, name) |
---|
[1146] | 1482 | |
---|
| 1483 | |
---|
[1151] | 1484 | InitializeClass(ReturningImport) |
---|
| 1485 | ###) |
---|
[1146] | 1486 | |
---|
| 1487 | class ResultsImport(WAeUPTable): ###( |
---|
| 1488 | |
---|
| 1489 | meta_type = 'Results Import Table' |
---|
| 1490 | name = "results_import" |
---|
| 1491 | key = "key" |
---|
[2094] | 1492 | def __init__(self,name=None): |
---|
| 1493 | if name == None: |
---|
| 1494 | name = self.name |
---|
| 1495 | WAeUPTable.__init__(self, name) |
---|
[1146] | 1496 | |
---|
| 1497 | |
---|
| 1498 | InitializeClass(ResultsImport) |
---|
| 1499 | |
---|
| 1500 | ###) |
---|
| 1501 | |
---|
| 1502 | class PaymentsCatalog(WAeUPTable): ###( |
---|
[2738] | 1503 | security = ClassSecurityInfo() |
---|
[1146] | 1504 | |
---|
| 1505 | meta_type = 'WAeUP Payments Catalog' |
---|
[2868] | 1506 | name = "payments_catalog" |
---|
| 1507 | key = "order_id" |
---|
[2094] | 1508 | def __init__(self,name=None): |
---|
| 1509 | if name == None: |
---|
| 1510 | name = self.name |
---|
| 1511 | WAeUPTable.__init__(self, name) |
---|
[1146] | 1512 | |
---|
[2859] | 1513 | |
---|
[2738] | 1514 | security.declarePrivate('notify_event_listener') ###( |
---|
| 1515 | def notify_event_listener(self,event_type,object,infos): |
---|
| 1516 | "listen for events" |
---|
| 1517 | if not infos.has_key('rpath'): |
---|
| 1518 | return |
---|
| 1519 | pt = getattr(object,'portal_type',None) |
---|
| 1520 | mt = getattr(object,'meta_type',None) |
---|
| 1521 | data = {} |
---|
[2904] | 1522 | if pt != 'Payment': |
---|
| 1523 | return |
---|
| 1524 | if mt == 'CPS Proxy Folder': |
---|
[2911] | 1525 | return # is handled only for the real object |
---|
| 1526 | if event_type == 'sys_del_object': |
---|
| 1527 | self.deleteRecord(object.order_id) |
---|
[2738] | 1528 | if event_type not in ('sys_modify_object'): |
---|
| 1529 | return |
---|
| 1530 | for field in self.schema(): |
---|
[2859] | 1531 | data[field] = getattr(object,field,'') |
---|
[2738] | 1532 | rpl = infos['rpath'].split('/') |
---|
[2904] | 1533 | #import pdb;pdb.set_trace() |
---|
| 1534 | student_id = rpl[-4] |
---|
[2738] | 1535 | data['student_id'] = student_id |
---|
[2907] | 1536 | modified = False |
---|
[2859] | 1537 | try: |
---|
| 1538 | self.modifyRecord(**data) |
---|
[2907] | 1539 | modified = True |
---|
[2859] | 1540 | except KeyError: |
---|
[2926] | 1541 | #logger = logging.getLogger('WAeUPTables.PaymentsCatalog.%s' % self.__name__) |
---|
| 1542 | #logger.info("could not modify entry for %(student_id)s with %(order_id)s" % data) |
---|
| 1543 | pass |
---|
[2907] | 1544 | if not modified: |
---|
| 1545 | try: |
---|
| 1546 | self.addRecord(**data) |
---|
| 1547 | except: |
---|
| 1548 | logger = logging.getLogger('WAeUPTables.PaymentsCatalog.%s' % self.__name__) |
---|
| 1549 | logger.info("could not add or modify entry for %(student_id)s with %(order_id)s" % data) |
---|
| 1550 | ###) |
---|
[1146] | 1551 | |
---|
[2738] | 1552 | |
---|
[1146] | 1553 | InitializeClass(PaymentsCatalog) |
---|
| 1554 | |
---|
| 1555 | ###) |
---|
| 1556 | |
---|
[414] | 1557 | # BBB: |
---|
| 1558 | AccomodationTable = AccommodationTable |
---|