source: WAeUP_SRP/base/WAeUPTool.py @ 3438

Last change on this file since 3438 was 3406, checked in by Henrik Bettermann, 17 years ago

WAeUPTool.py: fix traceback

Accommodation.py: enable import of reserved beds

release_bed.py: remove maintenance fee

reserve_accommodation.py: enable bed change for reserved beds. To be done: check for existing acco object before creating it in line 128

change_bed.py: enable bed change for reserved beds

  • Property svn:keywords set to Id
File size: 72.7 KB
RevLine 
[3219]1# -*- mode: python; mode: fold; -*-
[197]2# (C) Copyright 2005 The WAeUP group  <http://www.waeup.org>
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: WAeUPTool.py 3406 2008-04-02 07:16:08Z henrik $
[1174]20"""The WAeUP Tool Box.
[197]21"""
22
23from AccessControl import ClassSecurityInfo
[828]24from Acquisition import aq_inner
25from Acquisition import aq_parent
26from Globals import DTMLFile
27from Globals import InitializeClass
28from OFS.SimpleItem import SimpleItem
[2283]29from zExceptions import BadRequest
[197]30
[1890]31from Products.CMFCore.utils import getToolByName
[1747]32from Products.CPSSchemas.DataStructure import DataStructure
33from Products.CPSSchemas.DataModel import DataModel
34from Products.CPSSchemas.StorageAdapter import MappingStorageAdapter
[828]35from Products.CMFCore.ActionProviderBase import ActionProviderBase
36from Products.CMFCore.permissions import View
37from Products.ZCatalog.ZCatalog import ZCatalog
38from Products.CMFCore.permissions import ModifyPortalContent
[1890]39from Products.CMFCore.permissions import ManagePortal
[197]40from Products.CMFCore.utils import UniqueObject
[1194]41from Products.CMFCore.URLTool import URLTool
[1747]42from Products.CMFCore.utils import getToolByName
[1151]43from Students import makeCertificateCode
[1285]44from Globals import package_home,INSTANCE_HOME
[3172]45from WAeUPImport import ApplicationImport,CertificateImport,CertificateCourseImport
[3377]46from WAeUPImport import CourseImport,CourseResultImport,StudentStudyLevelImport
[3172]47from WAeUPImport import DepartmentImport,FacultyImport,StudentImport,VerdictImport
48from utils import makeDigest
[2094]49import DateTime,time
[1620]50import logging
[1170]51import transaction
[2193]52import csv,re,os,sys
[3172]53import md5
[3292]54from shutil import copy2,copy
[1707]55from Products.AdvancedQuery import Eq, Between, Le,In
[197]56
[2413]57p_home = package_home(globals())
58i_home = INSTANCE_HOME
59images_base = os.path.join(i_home,"images")
[3198]60EMPTY = 'XXX'
[2413]61
[2675]62def getImagesDir(student_id):
63    return os.path.join("%s" % images_base,student_id[0],student_id)
[2413]64
[1707]65def getObject(object,name):
66    if object.hasObject(name):
67        return getattr(object,name)
68    return None
[1720]69
[828]70class WAeUPTool(UniqueObject, SimpleItem, ActionProviderBase):
[197]71    """WAeUP tool"""
72
[828]73    id = 'waeup_tool'
[197]74    meta_type = 'WAeUP Tool'
[828]75    _actions = ()
[197]76    security = ClassSecurityInfo()
[828]77    security.declareObjectProtected(View)
78    manage_options = ( ActionProviderBase.manage_options
79                     + SimpleItem.manage_options
80                     )
81
[2999]82    security.declareProtected(View,'re_split') ###(
83    def re_split(self,split_string,string):
84        return re.split(split_string,string)
[3014]85    ###)
[2999]86
87    security.declareProtected(View,'difference') ###(
88    def difference(self,l1,l2):
89        return set(l1).difference(set(l2))
[3014]90    ###)
[2999]91
[1818]92    def rwrite(self,s): ###(
[1707]93        response = self.REQUEST.RESPONSE
94        response.setHeader('Content-type','text/html; charset=ISO-8859-15')
95        response.write("%s<br />\r\n" % s)
[1818]96    ###)
[1174]97
[2695]98    def addtodict(self,d,key,item): ###(
99        d[key].append(item)
100        return d[key]
101    ###)
102
[1818]103    def sleep(self,secs): ###(
104        "sleep"
105        import time
106        time.sleep(secs)
107        return
[1827]108
[1818]109###)
110
[2695]111    security.declareProtected(View,'updateRoleMappingsFor') ###(
112    def updateRoleMappingsFor(self,wf_definition,ob):
113        "do so for public"
114        wf_def = getattr(self.portal_workflow,wf_definition)
115        wf_def.updateRoleMappingsFor(ob)
116    ###)
[2699]117
[2999]118    security.declareProtected(View,'getStatesLgas') ###(
119    def getStatesLgas(self):
120        """return lga info"""
121        voc = getattr(self.portal_vocabularies,'local_gov_areas')
122        states = []
123        lgas  = []
124        d = {}
125        wd = {}
126        for k,v in voc.items():
127            parts = v.split(' / ')
128            if len(parts) == 1:
129                state = parts[0].lower()
130                lga = ""
131            elif len(parts) == 2:
132                state = "_".join(re.split('[^a-zA-Z0-9/]',parts[0].lower()))
133                lga = "-".join(re.split('[^a-zA-Z0-9/]',parts[1].lower()))
134            else:
135                continue
136            if state not in states:
137                states.append(state)
138            if lga not in lgas:
139                lgas.append(lga)
140            words = re.split('[^a-zA-Z0-9/]',k)
141            words.sort()
142            wd[k] = words
143            d[k] = v
144        mapping = {}
145        mapping['word_dict'] = wd
146        mapping['lga_dict'] = d
147        mapping['states'] = states
148        mapping['lgas'] = lgas
149        return mapping
150    ###)
151
[3014]152    security.declareProtected(View,'findLga') ###(
153    def findLga(self,words,words_dict):
154        words = re.split('[^a-zA-Z0-9/]',words)
155        lga_words = []
156        for word in words:
157            if word:
158                lga_words += word.strip().lower(),
159        lga_words.sort()
160        state_lga = ''
161        while not state_lga:
162            for k,l in words_dict.items():
163                if lga_words == l:
164                    state_lga = k
165                    break
166            break
167        return state_lga
168    ###)
[2975]169    security.declareProtected(View,'getAccessInfo') ###(
170    def getAccessInfo(self,context):
171        "return a dict with access_info"
172        logger = logging.getLogger('WAeUPTool.getAccessInfo')
173        mtool = self.portal_membership
174        member = mtool.getAuthenticatedMember()
175        member_id = str(member)
176        info = {}
177        is_anonymous = info['is_anonymous'] = mtool.isAnonymousUser()
178        is_student = info['is_student'] = ord(member_id[1]) > 48 and ord(member_id[1]) <= 57
179        is_staff = info['is_staff'] = not is_anonymous and not is_student
180        roles = member.getRolesInContext(context)
181        is_sectionofficer = info['is_sectionofficer'] = not is_student and ("SectionOfficer" in roles or
182                                                                            "SectionManager" in roles or
183                                                                            "Manager" in roles)
184        is_allowed = info['is_allowed'] = not is_anonymous
185        requested_id = context.getStudentId()
186        student_id  = None
[3025]187        if is_allowed:
188            if not is_student and requested_id:
189                student_id  = requested_id
190            elif is_anonymous or member_id != requested_id:
191                logger.info('%s tried to access %s of %s' % (member_id,context.portal_type,requested_id))
192            else:
193                student_id = member_id
[2975]194        info['student_id'] = student_id
195        return info
196    ###)
197
[1818]198    security.declareProtected(ModifyPortalContent,'openLog') ###(
[1716]199    def openLog(self,name):
200        """open a log file"""
201        version = 1
202        path = "%s/log/%s_%d.log" % (i_home,name,version)
203        while os.path.exists(path):
204            version += 1
205            path = "%s/log/%s_%d.log" % (i_home,name,version)
206        log = open(path,"w")
207        return log
[2259]208    ###)
[1716]209
[2259]210    security.declareProtected(ModifyPortalContent,'bypassQueueCatalog') ###(
211    def bypassQueueCatalog(self,enable=True):
212        """bypass the QueueCatalog by setting all indexes to process imediate,
213        if enable is True (default) the old settings are restored
214        """
[1818]215
[2259]216    ###)
217
[2094]218    security.declareProtected(ModifyPortalContent,'measureOaT') ###(
219    def measureOaT(self,method="a",probe="1000",nr_pts="1"):
220        """measure Object access Time"""
221        import random
222        if hasattr(self,'portal_catalog_real'):
223            aq_portal = self.portal_catalog_real.evalAdvancedQuery
224        else:
225            aq_portal = self.portal_catalog.evalAdvancedQuery
226        nr_pts = int(nr_pts)
227        probe = int(probe)
228        intervall = probe/10
229        objects = ("application","clearance","personal")
230        portal_types = ("StudentApplication","StudentClearance","StudentPersonal")
231        #i = random.randrange(num_objects)
232        count = 0
233        found = 0
234        not_found = 0
235        t_found = 0
236        t_not_found = 0
237        time_found = time_not_found = 0.0
238        t_time_found = t_time_not_found = 0.0
239        accessed = []
240        t_min = 1000
241        t_max = 0
242        #import pdb;pdb.set_trace()
243        students = self.portal_catalog(portal_type="Student")
244        num_students = len(students)
245        if method == "d":
246            query = Eq('path','/uniben/campus/students') & In('portal_type',portal_types[:nr_pts])
247            res = aq_portal(query)
248            brains = {}
249            for r in res:
250                sid = r.relative_path.split('/')[-2]
251                if brains.has_key(sid):
252                    brains[sid][r.portal_type] = r
253                else:
254                    brains[sid] = {r.portal_type : r}
255            brains_list = brains.keys()
256            num_objects = len(brains_list)
257        else:
258            num_objects = num_students
259        print "="*40
260        print "method: %s probes: %d nr_pts: %d num_objects: %d" % (method,
261                                                                        probe,
262                                                                        nr_pts,
263                                                                        num_objects)
264        print "nr found/not time found/not min/max"
265        elapse = time.time()
266        i_elapse = time.time()
267        c_elapse = time.clock()
268        for c in range(1,probe + 1):
269            i = random.randrange(num_objects)
270            if method in ('a','b','c'):
271                student_brain = students[i]
272            elif method == "d":
273                #import pdb;pdb.set_trace()
274                student_brain = brains[brains_list[i]]
275            if method == "c":
276                query = Eq('path',student_brain.getPath()) & In('portal_type',portal_types[:nr_pts])
277                res = aq_portal(query)
278                this_portal_types = [r.portal_type for r in res]
279            for i in range(nr_pts):
280                oid = objects[i]
281                if method == "a":
282                    try:
283                        student_path = student_brain.getPath()
284                        path = "%s/%s" % (student_path,oid)
285                        doc = self.unrestrictedTraverse(path).getContent()
286                        found += 1
287                        i_time = time.time() - i_elapse
288                        time_found += i_time
289                    except:
290                        not_found += 1
291                        i_time = time.time() - i_elapse
292                        time_not_found += i_time
293                        pass
294                elif method == "b":
295                    try:
296                        student_object = student_brain.getObject()
297                        doc = getattr(student_object,oid).getContent()
298                        found += 1
299                        i_time = time.time() - i_elapse
300                        time_found += i_time
301                    except:
302                        i_time = time.time() - i_elapse
303                        time_not_found += i_time
304                        not_found += 1
305                        pass
306                elif method == "c":
307                    if portal_types[i] in this_portal_types:
308                        found += 1
309                        doc = res[this_portal_types.index(portal_types[i])].getObject().getContent()
310                        i_time = time.time() - i_elapse
311                        time_found += i_time
312                    else:
313                        not_found += 1
314                        i_time = time.time() - i_elapse
315                        time_not_found += i_time
316                elif method == "d":
317                    if student_brain.has_key(portal_types[i]):
318                        found += 1
319                        doc = student_brain[portal_types[i]].getObject().getContent()
320                        i_time = time.time() - i_elapse
321                        time_found += i_time
322                    else:
323                        not_found += 1
324                        i_time = time.time() - i_elapse
325                        time_not_found += i_time
326                i_elapse = time.time()
327            if c and (c % intervall == 0):
328                #i_time = time.time() - i_elapse
329                t_per = 0.0
330                if found:
331                    t_per = time_found/found
332                if t_per > t_max:
333                    t_max = t_per
334                if t_per > 0.0 and t_per < t_min:
[2119]335                    t_min = t_per
[2094]336                itf = 0.0
337                if found:
338                    itf = time_found/found
339                itnf = 0.0
340                if not_found :
341                    itnf = time_not_found / not_found
[2119]342                interval_time = time_found + time_not_found
343                s = "%(c)d: %(found)d/%(not_found)d " % vars()
[2094]344                s += "%(interval_time)6.2f %(itf)6.4f/%(itnf)6.4f " % vars()
345                s += "%(t_min)6.4f/%(t_max)6.4f" %  vars()
346                print s
347                t_found += found
348                t_not_found += not_found
349                t_time_found += time_found
350                t_time_not_found += time_not_found
351                time_found = time_not_found = 0.0
352                found = not_found = 0
353        # t_found += found
354        # t_not_found += not_found
355        elapse = time.time() - elapse
356        itf = 0.0
357        if t_found:
358            itf = t_time_found/t_found
359        itnf = 0.0
360        if t_not_found:
361            itnf = t_time_not_found / t_not_found
362        #c_elapse = time.clock() - c_elapse
[2119]363        s = "%(probe)d: %(t_found)d/%(t_not_found)d " % vars()
[2094]364        s += "%(elapse)6.2f %(itf)6.4f/%(itnf)6.4f " % vars()
365        s += "%(t_min)6.4f/%(t_max)6.4f" %  vars()
366        print "-"*40
367        print s
368        rel_found = float(t_found)/probe
369        rel_not_found = float(t_not_found)/probe
370        estimated_total_time = num_objects*(rel_found*itf + rel_not_found*itnf)
371        print estimated_total_time
372    ###)
373
[1818]374    security.declareProtected(ModifyPortalContent,'writeLog') ###(
[1716]375    def writeLog(self,logfile,s):
376        """write to the log file"""
377        logfile.write(s)
378
[1818]379###)
[1720]380
[1151]381    def generateStudentId(self,letter): ###(
382        import random
383        r = random
[1194]384        ##if letter not in ('ABCDEFGIHKLMNOPQRSTUVWXY'):
385        if letter == '?':
[2695]386            letter= r.choice('ABCDEFGHKLMNPQRSTUVWXY')
[1151]387        sid = "%c%d" % (letter,r.randint(99999,1000000))
[1720]388        students = self.portal_url.getPortalObject().campus.students
[1721]389##        while hasattr(students, sid):
390##            sid = "%c%d" % (letter,r.randint(99999,1000000))
391        while self.students_catalog(id = sid):
[1720]392            sid = "%c%d" % (letter,r.randint(99999,1000000))
[1151]393        return sid
[1460]394    ###)
[1415]395
396    def generatePassword(self,s=None): ###(
397        import random
398        r = random
399        ##if letter not in ('ABCDEFGIHKLMNOPQRSTUVWXY'):
400        if s is None:
401            s = 'abcdefghklmnpqrstuvwxy23456789'
402        pw = ''
403        while len(pw) < 6:
404            pw += r.choice(s)
405        return pw
[1151]406    ###)
[828]407
[2645]408    security.declareProtected(ModifyPortalContent, 'dumpSchoolfeePayments') ###(
409    def dumpSchoolfeePayments(self):
410        "dump paid schoolfees"
[2666]411        mtool = self.portal_membership
412        member = mtool.getAuthenticatedMember()
[2645]413        logger = logging.getLogger('WAeUPTool.dumpSchoolfees')
414        aq_student = self.students_catalog.evalAdvancedQuery
415        query = In('review_state',('schoolfee_paid',
416                                   'courses_registered',
417                                   'courses_validated',
418                                   ))
419        res = aq_student(query)
[2666]420        #import pdb;pdb.set_trace()
[2645]421        l = []
422        logger.info("start for %d" % len(res))
423        count = 1
424        log_after = 100
425        for student in res:
[2656]426            if not count % log_after:
[2645]427                logger.info("processed %d total %d" % (log_after,count))
428            count += 1
429            fee_dict =self.getSchoolFee(student)
430            fulltime = student.mode.endswith('_ft')
431            d = {}
432            d['student_id'] = student.id
[2666]433            d['name'] = student.name
434            d['amount'] = fee_dict.get(new_returning)
[2645]435            l += d,
[2666]436        csv_name = self.dumpListToCSV(l,'payments')
437        logger.info('%s dumped payments to %s' % (member,export_file))
[2645]438    ###)
439
[2666]440    security.declarePublic('dumpListToCSV') ###(
441    def dumpListToCSV(self,l,filename,fields=None):
442        """dump a list of dicts to a CSV file"""
443        current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S")
444        export_file = "%s/export/%s_%s.csv" % (i_home,filename,current,)
445        if fields is None:
446            fields = l[0].keys()
447        headline = ','.join(fields)
448        out = open(export_file,"wb")
449        out.write(headline +'\n')
450        out.close()
451        out = open(export_file,"a")
452        csv_writer = csv.DictWriter(out,fields,)
453        csv_writer.writerows(l)
454        return export_file
455    ###)
456
[2643]457    security.declareProtected(ManagePortal, 'listMembers') ###(
458    def listMembers(self):
459        "list all members"
460        mtool = self.portal_membership
461        member = mtool.getAuthenticatedMember()
462        logger = logging.getLogger('WAeUPTool.listMembers')
463        if str(member) not in ('admin','joachim'):
464            logger.info('%s tried to list members' % (member))
465            return None
466        members = self.portal_directories.members
467        all = members.listEntryIdsAndTitles()
468        l = []
469        for user_id,name in all:
470            d = {}
471            d['user_id'] = user_id
472            d['name'] = name
473            d['pw'] = getattr(getattr(members,user_id),'password')
[2645]474            d['email'] = getattr(getattr(members,user_id),'email')
475            d['groups'] = " ".join(getattr(getattr(members,user_id),'groups'))
476            d['roles'] = " ".join(getattr(getattr(members,user_id),'roles'))
[2643]477            l += d,
478        current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S")
479        export_file = "%s/export/member_list_%s.csv" % (i_home,current,)
[3272]480        logger.info('%s dumped member list to %s' % (member,export_file))
[2643]481        fields = l[0].keys()
482        headline = ','.join(fields)
483        out = open(export_file,"wb")
484        out.write(headline +'\n')
485        out.close()
486        out = open(export_file,"a")
487        csv_writer = csv.DictWriter(out,fields,)
488        csv_writer.writerows(l)
489    ###)
[3300]490
[3272]491    security.declareProtected(ManagePortal, 'listStudents') ###(
492    def listStudents(self):
493        "list all students"
494        mtool = self.portal_membership
495        member = mtool.getAuthenticatedMember()
496        logger = logging.getLogger('WAeUPTool.listStudents')
497        if str(member) not in ('admin','joachim'):
498            logger.info('%s tried to list students' % (member))
499            return None
500        students = self.portal_directories.students
501        all = students.listEntryIdsAndTitles()
502        l = []
503        for user_id,name in all:
504            d = {}
505            d['user_id'] = user_id
506            d['name'] = name
507            d['pw'] = getattr(getattr(students,user_id),'password')
508            d['email'] = getattr(getattr(students,user_id),'email')
509            d['groups'] = " ".join(getattr(getattr(students,user_id),'groups'))
510            d['roles'] = " ".join(getattr(getattr(students,user_id),'roles'))
511            l += d,
512        current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S")
513        export_file = "%s/export/student_list_%s.csv" % (i_home,current,)
514        logger.info('%s dumped student list to %s' % (member,export_file))
515        fields = l[0].keys()
516        headline = ','.join(fields)
517        out = open(export_file,"wb")
518        out.write(headline +'\n')
519        out.close()
520        out = open(export_file,"a")
521        csv_writer = csv.DictWriter(out,fields,)
522        csv_writer.writerows(l)
[3300]523    ###)
[2656]524
[1890]525    security.declareProtected(ManagePortal, 'removeDeletedDocIds') ###(
526    def removeDeletedDocIds(self, max=1000):
527        """
528        remove deleted docids from repository commit after max
529        """
530        logger = logging.getLogger('WAeUPTool.removeDeletedDocIds')
531        repository = getToolByName(self, 'portal_repository')
532        pxtool = getToolByName(self, 'portal_proxies')
[2632]533        logger.info('start')
[1890]534        pxtool_infos = pxtool.getRevisionsUsed()
[2632]535        logger.info('found  %d used revisions ' % (len(pxtool_infos)))
[1895]536
[1890]537        nb_revs = 0
538        docids_d = {} # all docids
539        unused_docids_d = {} # all docids that are unused
540        ids_unused_revs_docids = [] # ids for revs of unused docids
[2632]541        unused_ids = [] # ids for unused revs
[1890]542        total = 0
[1895]543        idlist = repository.objectIds()
[2632]544        to_delete = 0
545        found = False
[1895]546        for id in idlist:
[1890]547            docid, rev = repository._splitId(id)
548            if docid is None:
549                logger.info("invalid doc_id %s" % docid)
550                continue
551            nb_revs += 1
552            if not pxtool_infos.has_key(docid):
[2632]553                found = True
554                to_delete += 1
555                unused_ids.append(id)
[1890]556            elif not pxtool_infos[docid].has_key(rev):
[2632]557                found = True
558                to_delete += 1
559                unused_ids.append(id)
560            if found and not to_delete % max:
561                found = False
[1890]562                #import pdb;pdb.set_trace()
[2632]563                repository.manage_delObjects(unused_ids)
[1890]564                transaction.commit()
[2632]565                logger.info('removed %d total %d unused docids ' % (max,to_delete))
566        else:
567            if unused_ids:
568                repository.manage_delObjects(unused_ids)
569                transaction.commit()
570        logger.info('finished removing %d unused docids ' % (to_delete))
[1890]571
[1895]572
[1890]573###)
574
[2562]575    security.declareProtected(View,'getCredential') ###(
[1250]576    def getCredential(self,student_id):
577        student_entry = getattr(self.portal_directories.students,student_id,None)
[2555]578        if not self.isStaff():
[2563]579            mtool = self.portal_membership
580            member = mtool.getAuthenticatedMember()
581            logger = logging.getLogger('WAeUPTool.getCredential')
582            logger.info('%s tried to access password of %s' % (member,student_id))
[2555]583            return None
[1250]584        if student_entry is None:
585            return None
[1263]586        return getattr(student_entry,"password","not set")
[1261]587    ###)
[1250]588
[2747]589    security.declarePublic('checkPassword') ###(
[1467]590    def checkPassword(self,student_id,password):
[1460]591        student_entry = getattr(self.portal_directories.students,student_id,None)
592        if student_entry is None:
593            return False
594        return getattr(student_entry,"password","not set") == password
[2747]595    ###)
[2712]596
[2747]597    security.declarePublic('checkGenericPassword') ###(
[2710]598    def checkGenericPassword(self,member_id):
599        member_entry = getattr(self.portal_directories.members,member_id,None)
600        if member_entry is None:
601            return False
[2712]602        ltool = getToolByName(self, 'portal_layouts')
[2710]603        unsecure_words = ltool._getOb('members')['w__password'].check_words
[2712]604        password = getattr(member_entry,"password","not set")
605        is_unsecure = password in unsecure_words
606        if is_unsecure:
[2713]607            logger = logging.getLogger('WAeUPTool.checkGenericPassword')
[2712]608            logger.info('Member %s tried to log in with unsecure password %s' %(member_id,password))
609        return is_unsecure
[2747]610    ###)
[1460]611
[2556]612    security.declareProtected(ModifyPortalContent,'editPassword') ###(
[1467]613    def editPassword(self,student_id,password):
614        "edit a student password"
615        student_entry = getattr(self.portal_directories.students,student_id,None)
616        if student_entry is None:
[1571]617            return
[1467]618        setattr(student_entry,'password',password)
619    ###)
620
[2555]621    security.declareProtected(ModifyPortalContent,'doCommit') ###(
[1401]622    def doCommit(self,logger=None):
623        "commit some transactions"
624        transaction.commit()
625    ###)
626
[1285]627    security.declarePublic('loadStudentFoto') ###(
[1813]628    def loadStudentFoto(self,student,filename,folder):
[1285]629        "return a student passport picture"
[2413]630        #import pdb;pdb.set_trace()
631        picture ="%s/import/%s/%s" % (i_home,folder,filename)
632        student_id = student.getId()
[2675]633        images_dir = getImagesDir(student_id)
[2413]634        if not os.path.exists(images_dir):
635            os.mkdir(images_dir)
636        image_name = os.path.join(images_dir,"passport_%(student_id)s.jpg" % vars())
637        for extension in ('.jpg','.JPG'):
638            fullname = "%(picture)s%(extension)s" % vars()
639            if os.path.exists(fullname):
640                copy2(fullname,image_name)
641                return "successfully copied passport picture"
[2467]642        return "passport picture not found: %s.jpg or .JPG" % picture
[2413]643    ###)
644
[2420]645    def old____loadStudentFoto(self,student,filename,folder): ###(
[2413]646        "return a student passport picture"
[1921]647        app = student.application
648        app_doc = app.getContent()
[1813]649        #clear = student.clearance
650        #clear_doc = clear.getContent()
651        #matric_no = clear_doc.matric_no.upper()
652        picture1 ="%s/import/%s/%s.jpg" % (i_home,folder,filename)
653        picture2 ="%s/import/%s/%s.JPG" % (i_home,folder,filename)
[1285]654        #import pdb;pdb.set_trace()
[1286]655        if os.path.exists(picture1):
656            file = open(picture1)
657        elif os.path.exists(picture2):
[1287]658            file = open(picture2)
[1286]659        else:
[1287]660            return "passport picture not found %s" % picture1
[1921]661        reopened = False
662        if self.portal_workflow.getInfoFor(app,'review_state',None) !='opened':
663            self.portal_workflow.doActionFor(app,'open')
664            reopened = True
[1285]665        outfile = file.read()
666        app_doc.manage_addFile('passport',
667                               file=outfile,
[1818]668                               title="%s.jpg" % filename)
[1921]669        if reopened:
670            self.portal_workflow.doActionFor(app,'close')
[1286]671        return "successfully loaded passport picture"
[1285]672    ###)
673
[1170]674    security.declareProtected(ModifyPortalContent,'createOne') ###(
[1194]675    def createOne(self,students_folder,student_brain,letter,commit=False):
676        sid = self.waeup_tool.generateStudentId(letter)
[1170]677        students_folder.invokeFactory('Student', sid)
678        student = getattr(students_folder,sid)
679        self.portal_workflow.doActionFor(student,'return')
680        student.manage_setLocalRoles(sid, ['Owner',])
681        matric_no = student_brain.matric_no
682        jamb_reg_no = student_brain.Entryregno
683        self.students_catalog.addRecord(id = sid,
684                                           matric_no = matric_no,
685                                           jamb_reg_no = jamb_reg_no,
686                                           sex = student_brain.Sex == "F",
687                                           name = "%s %s %s" % (student_brain.Firstname,
688                                                                student_brain.Middlename,
689                                                                student_brain.Lastname)
690                                        )
691        if commit:
692            transaction.commit()
693        return sid,jamb_reg_no
694    ###)
695
[1752]696    security.declareProtected(ModifyPortalContent,'addStudent') ###(
697    def addStudent(self,dict):
[1415]698        students_folder = self.portal_url.getPortalObject().campus.students
699        sid = self.waeup_tool.generateStudentId('?')
700        students_folder.invokeFactory('Student', sid)
701        student_obj = getattr(students_folder,sid)
[3027]702        f2t = self.field2types_student
[1772]703        #from pdb import set_trace; set_trace()
704        d = {}
[2297]705        #d['jamb_sex']  = 'M'
706        #if dict.get('sex'):
707        #    d['jamb_sex']  = 'F'
[1904]708
[1898]709        entry_session = dict.get('entry_session')
[2454]710        if entry_session == self.getSessionId()[0]:
[1898]711            wfaction = 'admit'
[1991]712            wft = 'wf_transition_admit'
[1900]713            password = None
[1904]714        else:
[1900]715            wfaction = 'return'
[1991]716            wft = 'wf_transition_return'
[1900]717            password = self.generatePassword()
[1904]718            self.makeStudentMember(sid,password)
719
[1728]720        for pt in f2t.keys():
721            student_obj.invokeFactory(pt,f2t[pt]['id'])
722            sub_obj = getattr(student_obj,f2t[pt]['id'])
723            sub_doc = sub_obj.getContent()
[1898]724            #self.portal_workflow.doActionFor(sub_obj,'open',dest_container=sub_obj)
[1772]725            d['Title'] = f2t[pt]['title']
[1728]726            for field in f2t[pt]['fields']:
[1749]727                d[field] = dict.get(field,'')
[1728]728            sub_doc.edit(mapping = d)
[1898]729            new_state = f2t[pt][wft]
[1772]730            if new_state != "remain":
731                self.portal_workflow.doActionFor(sub_obj,new_state,dest_container=sub_obj)
[1415]732        self.portal_workflow.doActionFor(student_obj,wfaction)
733        student_obj.manage_setLocalRoles(sid, ['Owner',])
734        return sid,password
735    ###)
736
[1151]737    security.declarePublic('getCertificateBrain') ###(
738    def getCertificateBrain(self,cert_id):
739        "do it"
[1849]740        res = ZCatalog.searchResults(self.portal_catalog_real,
[1151]741                                {'portal_type':"Certificate",
742                                      'id': cert_id})
743        if res:
744            return res[0]
745        return None
746    ###)
[1160]747
[1756]748    security.declareProtected(ModifyPortalContent,'get_csv_filenames') ###(
749    def get_csv_filenames(self):
750        "do it"
[1759]751        files = [file for file in os.listdir("%s/import/" % (i_home))
[3143]752                 if file.endswith('.csv') and (file.find('imported') == -1 and
753                                               file.find('pending') == -1)]
[1756]754        return files
755    ###)
756
[1151]757    security.declarePublic('findStudentByMatricelNo') ###(
758    def findStudentByMatricelNo(self,matric_no):
759        "do it"
[1849]760        res = ZCatalog.searchResults(self.portal_catalog_real,
[1151]761                                {'portal_type':"StudentClearance",
762                                 'SearchableText': matric_no})
763        if res:
764            return res[0]
765        return None
766    ###)
767
[2557]768    security.declarePublic('makeStudentMember') ###(
[1151]769    def makeStudentMember(self,sid,password='uNsEt'):
770        """make the student a member"""
771        membership = self.portal_membership
772        membership.addMember(sid,
773                             password ,
774                             roles=('Member',
775                                     'Student',
776                                     ),
777                             domains='',
778                             properties = {'memberareaCreationFlag': False,
779                                           'homeless': True},)
780        member = membership.getMemberById(sid)
781        self.portal_registration.afterAdd(member, sid, password, None)
[1261]782        #self.manage_setLocalRoles(sid, ['Owner',])
[1151]783    ###)
[1160]784
[2560]785    security.declareProtected(View,'makeStudentData') ###(
[1158]786    def makeStudentData(self,student_id,email=None,phone_nr=None):
[1151]787        "create Datastructure for a returning Student"
[1406]788        #import pdb;pdb.set_trace()
[1571]789        logger = logging.getLogger('WAeUPTool.makeStudentData')
[1151]790        students_folder = self.portal_url.getPortalObject().campus.students
[1794]791        #res = self.students_catalog(id=student_id)
792        #if res:
793        #    st = res[0]
794        #res = self.returning_import(matric_no = st.matric_no)
[1798]795        res = self.returning_import(id = student_id)
[1151]796        if res:
[1160]797            student = res[0]
[1794]798        else:
[1816]799            logger.info('Id %s not found in returning_import' % student_id)
[1794]800            return
[1580]801        logger.info('%s creates data structure' % student_id)
[1794]802        s_results = self.results_import(matric_no = student.matric_no)
[1816]803        if s_results:
804            lnr = self.getLevelFromResultsCosCode(s_results)
805            level = "%d00" % lnr
806            verdict,eligible = self.getVerdict(s_results[0].Verdict)
[2454]807            #if eligible:
808            #    level = "%d00" % (lnr + 1)
[1816]809        else:
810            logger.info('matric_no %s not found in results_import' % student.matric_no)
[2656]811            level = ''
812            verdict = ''
[1171]813        #student should not be allowed to perform this transition
[1174]814        #wftool = self.portal_workflow
815        #wftool.doActionFor(student,'return')
[1151]816        certcode_org = student.Coursemajorcode
817        certcode = makeCertificateCode(certcode_org)
818        certificate_brain = self.getCertificateBrain(certcode)
819        if not certificate_brain:
820            em = 'Certificate %s org-code %s not found\n' % (certcode, certcode_org)
821            logger.info(em)
822        matric_no = student.matric_no
823        sid = student_id
824        student_obj = getattr(students_folder,sid)
[3114]825        if not getattr(student_obj,'application'):
826            student_obj.invokeFactory('StudentApplication','application')
[1151]827        application = student_obj.application
[1169]828        self.portal_workflow.doActionFor(application,'open',dest_container=application)
[1151]829        da = {'Title': 'Application Data'}
830        student_obj.invokeFactory('StudentPersonal','personal')
831        da['jamb_reg_no'] = student.Entryregno
[1462]832        em = self.getEntryMode(student.Entryregno)
[1401]833        da['entry_mode'] = em
[1151]834        personal = student_obj.personal
835        self.portal_workflow.doActionFor(personal,'open',dest_container=personal)
836        dp = {'Title': 'Personal Data'}
837        student_obj.invokeFactory('StudentClearance','clearance')
838        clearance = student_obj.clearance
[1169]839        self.portal_workflow.doActionFor(clearance,'open',dest_container=clearance)
[1151]840        dc = {'Title': 'Clearance/Eligibility Record'}
841        dc['matric_no'] = matric_no
842        state = student.State
843        lga = student.LGA
844        if state and lga:
845            lga =  state + ' / ' + lga
846        else:
847            lga = "None"
[1174]848        da['jamb_lga'] = dc['lga'] = lga
[1173]849        da['app_email'] = dp['email'] = email
850        da['app_mobile'] = dp['phone'] = phone_nr
[1411]851        dp['firstname'] = student.Firstname
852        dp['middlename'] = student.Middlename
853        dp['lastname'] = student.Lastname
854        da['jamb_lastname'] = "%s %s %s" % (student.Firstname,student.Middlename,student.Lastname)
[1174]855        da['jamb_sex'] = student.Sex
[1151]856        dp['sex'] = student.Sex == 'F'
857        dp['perm_address'] = student.Permanent_Address
858        application.getContent().edit(mapping=da)
[1169]859        self.portal_workflow.doActionFor(application,'close',dest_container=application)
[1151]860        personal.getContent().edit(mapping=dp)
861        clearance.getContent().edit(mapping=dc)
[1169]862        self.portal_workflow.doActionFor(clearance,'close',dest_container=clearance)
[1151]863        #
864        # Study Course
865        #
866        student_obj.invokeFactory('StudentStudyCourse','study_course')
867        studycourse = student_obj.study_course
868        self.portal_workflow.doActionFor(studycourse,'open',dest_container=studycourse)
869        dsc = {}
870        dsc['study_course'] = certcode
[1401]871        dsc['current_level'] = level
872        dsc['current_verdict'] = verdict
[1827]873        dsc['current_mode'] = em
[2466]874        dsc['current_session'] = '05'
[1151]875        studycourse.getContent().edit(mapping=dsc)
876        #
877        # Level
878        #
[1198]879##        l = getattr(studycourse,level,None)
880##        if l is None:
881##            studycourse.invokeFactory('StudentStudyLevel', level)
882##            l = getattr(studycourse, level)
883##            self.portal_workflow.doActionFor(l,'open',dest_container=l)
884##            l.getContent().edit(mapping={'Title': "Level %s" % level})
[1194]885###)
[1160]886
[3349]887    def init_timing(self): ###(
888        if self.with_timing:
889            if not hasattr(self,'_v_step_times'):
890                self._v_timer_count = 0
891                self._v_total = 0
892                self._v_step_times = {}
893                current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S")
894                self._v_timer_file = "%s/export/timing_%s.csv" % (i_home,current,)
895            self.timer_step = 0
896            self.total_time = 0
897            self.elapse = time.time()
898            self.i_elapse = time.time()
899            self.c_elapse = time.clock()
900
901###)
902
903    def do_timing(self): ###(
904        if self.with_timing:
905            try:
906                raise 'dummy'
907            except:
908                frame = sys.exc_traceback.tb_frame.f_back
909                locals = frame.f_locals
910                globals = frame.f_globals
911                functionname = frame.f_code.co_name
912                filename = os.path.basename(frame.f_code.co_filename)
913                lineno = frame.f_lineno
914                mod_line = "%(functionname)s:%(lineno)s" % vars()
915            i_time = time.time() - self.i_elapse
916            td = {}
917            if self._v_step_times.has_key(mod_line):
918                a_time = self._v_step_times[mod_line]['a_time'] + i_time
919                td['a_time'] = a_time
920            else:
921                td['a_time'] = i_time
922            td['i_time'] = i_time
923            self._v_step_times[mod_line] = td
924            self.i_time = i_time
925            self.total_time += i_time
926            self.timer_step +=1
927            self.i_elapse = time.time()
928
929###)
930
931    security.declareProtected(ModifyPortalContent,'print_timing') ###( ###(
932    def print_timing(self):
933        if self.with_timing:
934            l = []
935            timer_count = self._v_timer_count + 1
936            mod_lines = self._v_step_times.keys()
937            mod_lines.sort(cmp,reverse=0)
938            for mod_line in mod_lines:
939                td = self._v_step_times[mod_line]
940                i_time = td['i_time']
941                a_time = td['a_time']/(self._v_timer_count + 1)
942                l += ("%(mod_line)s,%(i_time)6.2f,%(a_time)6.2f,%(timer_count)d" % vars()),
943            total_time = self.total_time
944            total_avarage = self._v_total / timer_count
945            l += ("total,%(total_time)6.4f,%(total_avarage)6.4f,%(timer_count)d" % vars()),
946            print "\r\n".join(l)
947            out = open(self._v_timer_file,'a')
948            out.write("\r\n".join(l))
949            out.close()
950
951###)
952
953    security.declareProtected(ModifyPortalContent,'get_timing_data') ###( ###(
954    def get_timing_data(self):
955        if self.with_timing:
956            timer_count = self._v_timer_count + 1
957            results = {}
958            for k,d in self._v_step_times.items():
959                dd = {}
960                dd['a_time'] = d['a_time']/timer_count
961                dd['i_time'] = d['i_time']
962                dd['count'] = timer_count
963                results[k] = dd
964            dd = {}
965            dd['a_time'] = self._v_total / timer_count
966            dd['i_time'] = self.total_time
967            dd['count'] = timer_count
968            results["total"] = dd
969            return results
970    ###)
971
[2556]972    security.declareProtected(ModifyPortalContent,'admitOneStudent') ###(
[3349]973    def admitOneStudent(self,brain,entry_session,pin_password,with_timing=False):
[2514]974        "create Datastructure for an admitted Student"
975        #import pdb;pdb.set_trace()
[3349]976        logger = logging.getLogger('WAeUPTool.admitOneStudent')
977        self.with_timing = with_timing
[2727]978        if not hasattr(self,"_v_certificates"):
[3339]979            self._v_certificates = self.getCertificatesDict()
[2514]980        students_folder = self.portal_url.getPortalObject().campus.students
[3264]981        if brain.screening_type in ('cest','sandwich',):
[3373]982            reg_no = "%s%s/07" % (brain.course1[:3],brain.serial)
[3264]983        else:
984            reg_no = brain.reg_no
985        res = self.students_catalog(jamb_reg_no = reg_no)
[3198]986        if res:
[3264]987            logger.info('student with this reg_no already exists %s with id %s' % (reg_no,res[0].id))
[3198]988            return
[2514]989        if brain.status != "admitted":
[3264]990            logger.info('status of %s is %s' % (reg_no,brain.status))
[2540]991            return
[2514]992        pin_parts = brain.pin.split('-')
[2755]993        if pin_parts and len(pin_parts) != 3:
[3264]994            logger.info('invalid pin %s for %s' % (brain.pin,reg_no))
[2540]995            return
[2727]996        if brain.course_admitted not in self._v_certificates:
[3264]997            logger.info('certificate %s not found for %s' % (brain.course_admitted,reg_no))
[2727]998            return
[2959]999        if brain.sex not in (True,False):
[3264]1000            logger.info('sex of %s not available' % (reg_no))
[3002]1001            return
[3349]1002        self.init_timing()
[2540]1003        student_id = self.generateStudentId('?')
[2514]1004        students_folder.invokeFactory('Student', student_id)
1005        student_object = getattr(students_folder,student_id)
[3349]1006        self.do_timing()
[2576]1007        if pin_password:
1008            password = pin_parts[2]
1009            self.makeStudentMember(student_id,password = password)
[2540]1010        student_object.manage_setLocalRoles(student_id, ['Owner',])
[3349]1011        self.do_timing()
[3264]1012        #logger.info("creating %s reg_no %s" % (student_id,reg_no))
[2514]1013        #
1014        # application
1015        #
[2540]1016        student_object.invokeFactory('StudentApplication','application')
1017        application = student_object.application
[2575]1018        #self.portal_workflow.doActionFor(application,'open',dest_container=application)
[3350]1019        #self.do_timing()
[2514]1020        da = {'Title': 'Application Data'}
[3264]1021        da['jamb_reg_no'] = reg_no
[2576]1022
[2540]1023        sex = 'M'
1024        if brain.sex:
1025            sex = 'F'
1026        da['jamb_sex'] = sex
[2670]1027        da['jamb_age'] = brain.jamb_age
[3341]1028        da['app_reg_pin'] = brain.pin
[2670]1029        da['jamb_lga'] = brain.jamb_lga
1030        da['jamb_state'] = brain.jamb_state
[2575]1031        da['jamb_score'] = brain.aggregate
[2514]1032        da['app_email'] = brain.email
[2540]1033        da['app_mobile'] = brain.phone
[3339]1034
[3346]1035        da['entry_mode'] = self._v_certificates[brain.course_admitted]['study_mode']
[3339]1036
[2575]1037        da['entry_session'] = entry_session
1038        da['jamb_lastname'] = brain.lastname
1039        da['jamb_middlename'] = brain.middlenames   # different field names!
[2670]1040        da['jamb_firstname'] = brain.firstname
[2575]1041        da['screening_application_date'] = brain.application_date
1042        da['date_of_birth'] = brain.date_of_birth
1043        da['jamb_first_cos'] = brain.course1
1044        da['jamb_second_cos'] = brain.course2
1045        da['course3'] = brain.course3
1046        da['screening_type'] = brain.screening_type
1047        da['screening_score'] = brain.screening_score
1048        da['screening_date'] = brain.screening_date
1049        da['hq_type'] = brain.hq_type
1050        da['hq_grade'] = brain.hq_grade
1051        da['aos'] = brain.aos
[2576]1052
[2514]1053        application.getContent().edit(mapping=da)
[3349]1054        self.do_timing()
[2575]1055        #self.portal_workflow.doActionFor(application,'close',dest_container=application)
[2514]1056        #
1057        # personal
1058        #
[2540]1059        student_object.invokeFactory('StudentPersonal','personal')
1060        personal = student_object.personal
[2575]1061        #self.portal_workflow.doActionFor(personal,'open',dest_container=personal)
[3350]1062        #self.do_timing()
[2514]1063        dp = {'Title': 'Personal Data'}
1064        dp['sex'] = brain.sex
1065        dp['email'] = brain.email
[2540]1066        dp['phone'] = brain.phone
[2514]1067        dp['lastname'] = brain.lastname
[2575]1068        dp['middlename'] = brain.middlenames   # different field names!
[2576]1069        dp['firstname'] = brain.firstname
[2514]1070        personal.getContent().edit(mapping=dp)
[3349]1071        self.do_timing()
[2514]1072        #
1073        # clearance
1074        #
[2540]1075        student_object.invokeFactory('StudentClearance','clearance')
1076        clearance = student_object.clearance
[2575]1077        #self.portal_workflow.doActionFor(clearance,'open',dest_container=clearance)
[2514]1078        dc = {'Title': 'Clearance/Eligibility Record'}
1079        dc['lga'] = brain.lga
[2670]1080        dc['birthday'] = brain.date_of_birth
[2514]1081        clearance.getContent().edit(mapping=dc)
[3349]1082        self.do_timing()
[2575]1083        #self.portal_workflow.doActionFor(clearance,'close',dest_container=clearance)
[2514]1084        #
1085        # study Course
1086        #
[2540]1087        student_object.invokeFactory('StudentStudyCourse','study_course')
1088        studycourse = student_object.study_course
[2575]1089        #self.portal_workflow.doActionFor(studycourse,'open',dest_container=studycourse)
[3350]1090        #self.do_timing()
[2514]1091        dsc = {}
1092        dsc['study_course'] = brain.course_admitted
1093        dsc['current_verdict'] = ''
[2575]1094        dsc['current_mode'] = da['entry_mode']
1095        if da['entry_mode'].startswith('de'):
1096            dsc['current_level'] = '200'
[3040]1097        elif da['entry_mode'].startswith('pre'):
1098            dsc['current_level'] = '000'
[2575]1099        else:
1100            dsc['current_level'] = '100'
1101        dsc['current_session'] = entry_session
[2514]1102        studycourse.getContent().edit(mapping=dsc)
[3349]1103        self.do_timing()
[2514]1104        #
1105        # payments folder
[2540]1106        student_object.invokeFactory('PaymentsFolder','payments')
1107        payments = getattr(student_object,'payments')
[3350]1108        #self.do_timing()
[2514]1109        dpay = {}
1110        dpay['Title'] = 'Payments'
1111        payments.getContent().edit(mapping=dpay)
[2540]1112        self.portal_workflow.doActionFor(payments,'open')
[3349]1113        self.do_timing()
[2580]1114        #
1115        # passport foto
1116        app_picture ="%s/import/images/%s/%s_passport.jpg" % (i_home,
1117                                                              brain.screening_type,
1118                                                              brain.reg_no)
[2675]1119        images_dir = getImagesDir(student_id)
1120        #images_dir = os.path.join("%s" % images_base,student_id)
1121        letter_dir,student_dir = os.path.split(images_dir)
1122        if not os.path.exists(letter_dir):
1123            os.mkdir(letter_dir)
[2580]1124        if not os.path.exists(images_dir):
1125            os.mkdir(images_dir)
1126        image_name = os.path.join(images_dir,"passport_%(student_id)s.jpg" % vars())
1127        if os.path.exists(app_picture):
1128            copy2(app_picture,image_name)
1129        else:
1130            logger.info('passport of %s/%s not found: %s' % (student_id,
1131                                                             brain.reg_no,
1132                                                             app_picture))
[2656]1133
[3349]1134        self.do_timing()
1135        self.print_timing()
1136        if with_timing:
1137            self.timer_step = 0
1138            self._v_timer_count += 1
1139            self._v_total += self.total_time
[2514]1140        return student_id
1141    ###)
1142
[2556]1143    security.declareProtected(ModifyPortalContent,'makeStudentLevel') ###(
[1194]1144    def makeStudentLevel(self,student_id):
1145        "create the StudyLevel for a returning Student"
1146        #import pdb;pdb.set_trace()
[1571]1147        logger = logging.getLogger('WAeUPTool.makeStudentLevel')
[1194]1148        students_folder = self.portal_url.getPortalObject().campus.students
1149        res = self.students_catalog(id=student_id)
1150        if res:
1151            st = res[0]
1152        course = st.course
1153        matric_no = st.matric_no
1154        level = st.level
1155        res = self.results_import(matric_no = matric_no)
1156        if res:
1157            results = res
[1571]1158        logger.info('%s creating Level %s' % (student_id,level))
[1194]1159        #
1160        # Level
1161        #
1162        student_obj = getattr(self.portal_url.getPortalObject().campus.students,student_id)
1163        studycourse = getattr(student_obj,"study_course",None)
1164        self.portal_workflow.doActionFor(studycourse,'close_for_edit',dest_container=studycourse)
1165        l = getattr(studycourse,level,None)
1166        if l is None:
1167            studycourse.invokeFactory('StudentStudyLevel', level)
1168            l = getattr(studycourse, level)
1169            self.portal_workflow.doActionFor(l,'open',dest_container=l)
1170            l.getContent().edit(mapping={'Title': "Level %s" % level})
1171        ###)
1172
[2000]1173    security.declarePublic('getHallInfo') ###(
1174    def getHallInfo(self,bed):
1175        """return Hall Info"""
[828]1176        info = {}
[3406]1177        bedsplit = bed.split('_')
1178        if len(bedsplit) == 4:
1179            hall,block,room,letter = bed.split('_')
1180        else:
1181            info['maintenance_code'] = 'None'
1182            return info
[1846]1183        res = ZCatalog.searchResults(self.portal_catalog_real,portal_type="AccoHall",id=hall)
[828]1184        if res and len(res) == 1:
1185            hall_brain = res[0]
1186            hall_doc = hall_brain.getObject().getContent()
1187        else:
1188            return info
1189        info['hall_title'] = hall_brain.Title
1190        info['maintenance_code'] = hall_doc.maintenance_code
[1846]1191        res = ZCatalog.searchResults(self.portal_catalog_real,portal_type="ScratchCardBatch")
[828]1192        batch_doc = None
1193        for brain in res:
1194            if brain.id.startswith(info['maintenance_code']):
1195                batch_doc = brain.getObject().getContent()
1196                break
1197        if batch_doc is None:
[2913]1198            info['maintenance_fee'] = ''
[828]1199        else:
1200            info['maintenance_fee'] = batch_doc.cost
1201        return info
[1151]1202    ###)
[828]1203
[2396]1204    security.declareProtected(ModifyPortalContent,'removePictureFolder') ###(
1205    def removePictureFolder(self,student_id):
1206        """remove picture_folder by renaming it"""
1207        path = 'images'
1208        picture_path = os.path.join(i_home,path,student_id)
1209        if not os.path.exists(picture_path):
1210            return False
1211        os.rename(picture_path,picture_path + "_removed")
1212        return True
1213    ###)
1214
1215    security.declareProtected(ModifyPortalContent,'restorePictureFolder') ###(
1216    def restorePictureFolder(self,student_id):
1217        """restore picture_folder by renaming it"""
1218        path = 'images'
1219        picture_path = os.path.join(i_home,path,student_id)
1220        if not os.path.exists(picture_path + "_removed"):
1221            return False
1222        os.rename(picture_path + "_removed",picture_path)
1223        return True
1224    ###)
1225
[2363]1226    security.declarePublic('picturesExist') ###(
[2420]1227    def picturesExist(self, ids,student_id=None):
[2363]1228        """check if pictures exist in the filesystem"""
[2420]1229        if student_id is None:
1230            student_id = self.getStudentId()
1231        if student_id is None:
1232            return False
[2675]1233        picture_path = getImagesDir(student_id)
1234        #picture_path = os.path.join(images_base,student_id)
[2363]1235        if not os.path.exists(picture_path):
1236            return False
1237        pictures  = [picture[:picture.rfind('_')] for picture in os.listdir(picture_path)]
1238        return set(ids).issubset(set(pictures))
1239    ###)
1240
[2364]1241    security.declarePublic('picturesList') ###(
1242    def picturesList(self):
1243        """check if pictures exist in the filesystem"""
1244        path = 'images'
1245        student_id = self.getStudentId()
[2677]1246        #picture_path = os.path.join(i_home,path,student_id)
1247        picture_path = getImagesDir(student_id)
[2364]1248        if not os.path.exists(picture_path):
1249            return []
1250        return [picture[:picture.rfind('_')] for picture in os.listdir(picture_path)]
1251    ###)
1252
[2114]1253    security.declarePublic('showFsPicture') ###(
1254    def showFsPicture(self,path):
1255        """return a picture from the filesystem"""
[2675]1256        #picture_path = os.path.join(i_home,path)
1257        picture_path = os.path.join(images_base,path)
[2335]1258        response = self.REQUEST.RESPONSE
[2342]1259        #import pdb;pdb.set_trace()
[2354]1260        registry = getToolByName(self, 'mimetypes_registry')
1261        mimetype = str(registry.lookupExtension(path.lower()) or
1262                    registry.lookupExtension('file.bin'))
[2114]1263        if os.path.exists(picture_path):
[2354]1264            response.setHeader('Content-type',mimetype)
[2114]1265            return open(picture_path).read()
[2335]1266        picture_path = os.path.join(i_home,'import',path)
1267        if os.path.exists(picture_path):
1268            return open(picture_path).read()
[2114]1269    ###)
1270
[1151]1271    security.declareProtected(ModifyPortalContent,'deleteAllCourses') ###(
1272    def deleteAllCourses(self,department="All"):
1273        ''' delete the courses'''
1274        pm = self.portal_membership
1275        member = pm.getAuthenticatedMember()
[1160]1276
[1151]1277        if str(member) not in ("henrik","joachim"):
1278            return "not possible"
1279        if department == "All":
1280            res = self.portal_catalog({'meta_type': 'Department'})
1281        if len(res) < 1:
1282            return "No Departments found"
[1160]1283
[1151]1284        deleted = []
1285        for dep in res:
1286            cf = dep.getObject().courses
1287            if cf:
1288                cf.manage_delObjects(ids=cf.objectIds())
1289                deleted.append("deleted Courses in %s" % dep.getId)
1290        return "\r".join(deleted)
[1160]1291    ###)
[1151]1292
[1572]1293    security.declareProtected(ModifyPortalContent,'getLogfileLines') ###(
1294    def getLogfileLines(self,filename="event.log",numlines=20):
1295        """Get last NUMLINES lines of logfile FILENAME.
[1160]1296
[1572]1297        Return last lines' of a file in the instances logfile directory as
1298        a list. The number of returned lines equals `numlines' or less. If
1299        less than `numlines' lines are available, the whole file ist
1300        returned. If the file can not be opened or some other error
1301        occurs, empty list is returend.
1302        """
1303        result = []
1304        lines_hit = 0
1305
1306        # We only handle files in instances' log directory...
1307        logpath = os.path.join(i_home, "log")
1308        filename = str(os.path.abspath( os.path.join( logpath, filename )))
1309        if not filename.startswith( logpath ):
1310            # Attempt to access file outside log-dir...
1311            return []
1312
1313        try:
1314            fd = file( filename, "rb" )
1315        except IOError:
1316            return []
1317        if not fd:
1318            return []
1319
1320        if os.linesep == None:
1321            linesep = '\n'
1322        else:
1323            linesep = os.linesep
1324
1325        # Try to find 'numlines' times a lineseparator, searching from end
1326        # and moving to the beginning of file...
1327        fd.seek( 0, 2) # Move to end of file...
1328        while lines_hit < numlines:
1329            if fd.read(1) == linesep[-1]: # This moves filedescriptor
1330                                          # one step forward...
1331                lines_hit += 1
1332            try:
1333                fd.seek( -2, 1) # Go two bytes back from current pos...
1334            except IOError:
1335                # We cannot go back two bytes. Maybe the file is too small...
1336                break
1337        fd.seek(2,1)
1338
1339        # Read all lines from current position...
1340        result = fd.readlines()
1341        # Remove line endings...
1342        result = [x.strip() for x in result]
1343        fd.close()
1344        return result
1345    ###)
1346
[1700]1347    security.declareProtected(ModifyPortalContent,"getCallbacksFromLog")###(
[1665]1348    def getCallbacksFromLog(self,filename):
1349        """fix Online Payment Transactions from Z2.log entries"""
1350        import transaction
1351        import random
1352        from cgi import parse_qs
1353        from urlparse import urlparse
1354        #from pdb import set_trace
1355        wftool = self.portal_workflow
1356        current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S")
1357        students_folder = self.portal_url.getPortalObject().campus.students
1358        s = r'(?P<client_ip>\S+) - (?P<member_id>\S+) \['
1359        s += r'(?P<date>.*)\] "(?P<get>.*)" (?P<codes>\d+ \d+) "'
1360        s += r'(?P<intersw>.*)" "(?P<agent>.*)"'
1361        data = re.compile(s)
1362        start = True
1363        tr_count = 1
1364        total = 0
1365        #name = 'pume_results'
1366        #name = 'epaymentsuccessful_z2log2'
1367        name = filename
1368        no_import = []
1369        imported = []
1370        logger = logging.getLogger('WAeUPTool.getFailedTransactions')
1371        try:
1372            transactions = open("%s/import/%s" % (i_home,name),"rb").readlines()
1373        except:
1374            logger.error('Error reading %s' % name)
1375            return
1376        tas = []
1377        for line in transactions:
1378            dict = {}
1379            items = data.search(line)
1380            dict['idict'] = idict = items.groupdict()
1381            #print idict
1382            #from pdb import set_trace;set_trace()
1383            urlparsed = urlparse(idict['get'][4:])
1384            #print urlparsed
1385            path = urlparsed[2].split('/')
1386            dict['student_id'] = student_id = path[8]
1387            dict['payment_id'] = payment_id = path[10]
1388            dict['qs_dict'] = qs_dict = parse_qs(urlparsed[4])
1389            tas.append(dict)
1390            tr_count += 1
1391        return tas
1392    ###)
1393
[1620]1394    security.declareProtected(ModifyPortalContent,"importOnlinePaymentTransactions")###(
1395    def importOnlinePaymentTransactions(self):
1396        """load Online Payment Transactions from CSV values"""
1397        import transaction
1398        import random
1399        #from pdb import set_trace
1400        current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S")
[1625]1401        opt = self.online_payments_import
[1620]1402        students_folder = self.portal_url.getPortalObject().campus.students
1403        start = True
1404        tr_count = 1
1405        total = 0
1406        #name = 'pume_results'
1407        name = 'OnlineTransactions'
1408        no_import = []
1409        imported = []
1410        logger = logging.getLogger('WAeUPTool.importOnlinePaymentTransactions')
1411        try:
1412            transactions = csv.DictReader(open("%s/import/%s.csv" % (i_home,name),"rb"))
1413        except:
1414            logger.error('Error reading %s.csv' % name)
1415            return
1416        for pay_transaction in transactions:
1417            if start:
1418                start = False
1419                logger.info('Start loading from %s.csv' % name)
1420                s = ','.join(['"%s"' % fn for fn in pay_transaction.keys()])
1421                no_import.append('%s,"Error"' % s)
1422                format = ','.join(['"%%(%s)s"' % fn for fn in pay_transaction.keys()])
1423                format_error = format + ',"%(Error)s"'
1424            data = {}
[1644]1425
[1781]1426            # format of the first file sent by Tayo
[1643]1427            #data['datetime'] = date = DateTime.DateTime(pay_transaction['Date'])
1428            #data['student_id'] = student_id = pay_transaction['Payer ID']
1429            #data['order_id'] = order_id = pay_transaction['Order ID (Tranx Ref)']
1430            #data['response_code'] = response_code = pay_transaction['Resp Code']
1431            #data['amount'] = amount = pay_transaction['Amount']
[1644]1432
[1781]1433            # format of the second file sent by Tayo
[1798]1434            #data['datetime'] = date = 0
1435            #data['student_id'] = student_id = pay_transaction['Payer ID']
1436            #data['order_id'] = order_id = pay_transaction['Order ID (Tranx Ref)']
1437            #data['response_code'] = response_code = '00'
1438            #data['amount'] = amount = pay_transaction['Amount']
[1813]1439
[1798]1440            # format of the third file sent by Kehinde
[1643]1441            data['datetime'] = date = 0
[1798]1442            data['student_id'] = student_id = pay_transaction['customer_id']
1443            data['order_id'] = order_id = pay_transaction['merchant_reference']
[1644]1444            data['response_code'] = response_code = '00'
[1813]1445            data['amount'] = amount = pay_transaction['Amount']
[1644]1446
[1620]1447            dup = False
1448            if response_code == "12":
1449                continue
1450            try:
1451                opt.addRecord(**data)
1452            except ValueError:
1453                dup = True
1454            #from pdb import set_trace;set_trace()
1455            if dup:
1456                if response_code == "00":
[1798]1457                    try:
1458                        opt.modifyRecord(**data)
1459                    except:
1460                        logger.info("duplicate uid, order_id %(order_id)s, student_id %(student_id)s, response_code %(response_code)s" % data)
1461                        continue
[1620]1462                else:
[1674]1463                    pay_transaction['Error'] = "Duplicate order_id"
[1620]1464                    no_import.append( format_error % pay_transaction)
[1674]1465                    logger.info("duplicate order_id %(order_id)s for %(student_id)s %(response_code)s" % data)
[1620]1466                    continue
1467            tr_count += 1
1468            if tr_count > 1000:
1469                if len(no_import) > 0:
1470                    open("%s/import/%s_not_imported%s.csv" % (i_home,name,current),"a").write(
1471                             '\n'.join(no_import) + '\n')
1472                    no_import = []
[1645]1473                em = '%d transactions committed\n' % (tr_count)
[1620]1474                transaction.commit()
1475                regs = []
1476                logger.info(em)
1477                total += tr_count
1478                tr_count = 0
1479        open("%s/import/%s_not_imported%s.csv" % (i_home,name,current),"a").write(
1480                                                '\n'.join(no_import))
1481        return self.REQUEST.RESPONSE.redirect("%s" % self.REQUEST.get('URL1'))
1482    ###)
[2237]1483
[3172]1484    security.declareProtected(ModifyPortalContent,"importData")###(
1485    def importData(self,filename,name,edit=False,bypass_queue_catalog=False):
1486        """load data from CSV values"""
1487        import transaction
1488        import random
1489        students_folder = self.portal_url.getPortalObject().campus.students
[3292]1490        uploads_folder = self.portal_url.getPortalObject().campus.uploads
[3172]1491        pending_only = False
[3177]1492        pend_str = '--'
[3172]1493        elapse = time.time()
1494        #
1495        # preparations
1496        #
[3177]1497        if filename == pend_str:
[3172]1498            pending_only = True
1499        importer_name = ''.join([part.capitalize() for part in name.split('_')])
[3191]1500        importer = eval("%sImport" % importer_name)(self)
[3172]1501        logger = importer.logger
1502        if importer.init_errors:
[3191]1503            logger.info(importer.init_errors)
1504            return importer.init_errors
[3172]1505        member = importer.member
[3320]1506        #current = importer.current
[3172]1507        import_date = importer.import_date
1508        #
1509        # not_imported
1510        #
1511        info = importer.info
1512        data_keys = importer.data_keys
[3181]1513        csv_keys = importer.csv_keys
[3172]1514        #csv_keys.extend(info.keys())
1515        headline_mapping = dict((k,k) for k in csv_keys)
1516        #
1517        # pending
1518        #
1519        pending_path = importer.pending_path
1520        pending_tmp = importer.pending_tmp
1521        pending_backup = importer.pending_backup
1522        pending_fn = importer.pending_fn
1523        imported_path = importer.imported_path
1524        imported_fn = importer.imported_fn
[3180]1525        commit_after = importer.commit_after
[3172]1526        pending = []
1527        pending_digests = []
1528        #total_added_to_pending = 0
1529        if not pending_only:
1530            pending,pending_digests = importer.makeIdLists()
1531            pending_at_start = len(pending)
1532        datafile = open(pending_tmp,"w")
1533        pending_csv_writer = csv.DictWriter(datafile,
1534                                                    csv_keys,
1535                                                    extrasaction='ignore')
1536        pending_csv_writer.writerow(headline_mapping)
1537        datafile.close()
1538        #
1539        # imported
1540        #
1541        if not os.path.exists(imported_path):
1542            datafile = open(imported_path,"w")
1543            imported_csv_writer = csv.DictWriter(datafile,
1544                                                 csv_keys,
1545                                                 extrasaction='ignore')
1546            imported_csv_writer.writerow(headline_mapping)
1547            datafile.close()
1548        start = True
1549        tr_count = 0
1550        total = 0
1551        total_added_to_imported = 0
1552        total_pending = 0
[3292]1553        import_source_done = ""
[3172]1554        if pending_only:
1555            import_source_path = pending_path
[2193]1556        else:
[3172]1557            import_source_path = "%s/import/%s.csv" % (i_home,filename)
[3292]1558            import_source_done = "%s/import/%s.done" % (i_home,filename)
[3172]1559        if not os.path.exists(import_source_path):
[3195]1560            fn = os.path.split(import_source_path)[1]
[3268]1561            em = 'no import file %(fn)s' % vars()
[3172]1562            return em
1563        import_source_fn = os.path.split(import_source_path)[1]
[3267]1564        if not pending_only:
1565            info['imported_from'] = import_source_fn
[3277]1566        headline = csv.reader(open(import_source_path,"rb")).next()
1567        if "import_mode" not in headline:
[3191]1568            msg = 'import_mode must be in heading'
1569            return msg
[3277]1570        invalid_keys = importer.checkHeadline(headline)
1571        if invalid_keys:
1572            return 'not ignorable key(s): "%s" found in heading' % ", ".join(invalid_keys)
[3201]1573
[3300]1574        import_keys = [k.strip() for k in headline if not (k.strip().startswith('ignore')
1575                                                         or k.strip() in info.keys())]
[3277]1576        # diff2schema = set(import_keys).difference(set(importer.schema.keys()))
1577        # diff2layout = set(import_keys).difference(set(importer.layout.keys()))
1578        # if diff2schema and diff2schema != set(['id',]):
1579        #     msg = 'not ignorable key(s): "%s" found in heading' % ", ".join(diff2schema)
1580        #     return msg
[3172]1581        #
1582        # start importing
1583        #
[2193]1584        try:
[3172]1585            reader = csv.DictReader(open(import_source_path,"rb"))
1586        except:
1587            msg = 'Error reading %s.csv' % filename
1588            logger.error(msg)
1589            return msg
1590        items = [item for item in reader]
1591        total_to_import = len(items)
[3181]1592        tti_float = float(total_to_import)
[3172]1593        if pending_only:
1594            pending_at_start = total_to_import
1595        count = 0
1596        imported = []
[3391]1597        old_commit_count = 0
[3204]1598        error_count = imported_count = 0
[3172]1599        already_in = 0
1600        for record in items:
1601            item = {}
[3198]1602            empty_value_keys = []
[3172]1603            for k,v in record.items():
[3346]1604                if k is None:
1605                    continue
[3172]1606                if v:
[3198]1607                    if v == EMPTY:
1608                        empty_value_keys += k,
1609                        v = ''
[3172]1610                    item[k.strip()] = v.strip()
1611            count += 1
1612            if start:
1613                start = False
1614                adapters = [MappingStorageAdapter(importer.schema, item)]
[3191]1615                logger.info('%(member)s starts import from %(import_source_fn)s' % vars())
[3172]1616            dm = DataModel(item, adapters,context=self)
1617            ds = DataStructure(data=item,datamodel=dm)
1618            error_string = ""
1619            total += 1
[3271]1620            import_mode = item.get('import_mode','')
[3191]1621            import_method = getattr(importer, '%(import_mode)s' % vars(),None )
1622            if import_method is None:
[3271]1623                error_string += "import_mode '%(import_mode)s' is invalid" % vars()
[3251]1624            elif (import_mode in importer.required_modes and
[3248]1625                not set(importer.required_keys[import_mode]).issubset(set(item.keys()))):
1626                diff2import = set(importer.required_keys[import_mode]).difference(set(item.keys()))
1627                error_string += 'required key(s): "%s" not found in record' % ", ".join(diff2import)
[3191]1628            else:
1629                for k in import_keys:
1630                    if k not in item.keys() or k not in importer.validators.keys():
1631                        continue
1632                    if not importer.validators[k](ds,mode=import_mode):
[3201]1633                        error_string += ' ++ '
1634                        error_string += "%s: %s" % (k,self.translation_service(ds.getError(k),
[3172]1635                                                                           ds.getErrorMapping(k)))
1636            if error_string:
1637                error = error_string
1638                id = ''
1639                mapping = item
[2699]1640            else:
[3172]1641                temp_item = item.copy()
1642                temp_item.update(dm)
[3185]1643                results = import_method(temp_item)
[3172]1644                id = results[0]
1645                error = results[1]
1646                mapping = results[2]
[3267]1647            #
1648            # restore some values
1649            #
[3198]1650            for k in empty_value_keys:
1651                mapping[k] = EMPTY
[3186]1652            if mapping.has_key('sex'):
1653                #import pdb;pdb.set_trace()
[3267]1654                if mapping['sex'] == True:
[3186]1655                    mapping['sex'] = 'F'
[3267]1656                elif mapping['sex'] == False:
[3186]1657                    mapping['sex'] = 'M'
[3267]1658            if pending_only:
1659                info['imported_from'] = item['imported_from']
[3181]1660            data_string = ", ".join("%s: %s" % (k,v) for k,v in mapping.items())
[3172]1661            info['error'] = error
[3326]1662            info['import_record_no'] = count + 1
[3172]1663            mapping.update(info)
[3178]1664            log_list = []
[3172]1665            if error:
[3204]1666                error_count += 1
[3172]1667                digest = makeDigest(mapping,data_keys)
1668                if digest not in pending_digests:
1669                    pending_digests += digest,
1670                    pending.append(mapping)
1671                    if not pending_only:
[3251]1672                        log_list += "record from %(import_source_fn)s added to %(pending_fn)s, %(data_string)s, %(error)s" % vars(),
[3172]1673                else:
1674                    already_in += 1
1675                    pass
1676            else:
1677                imported_count += 1
1678                imported += mapping,
[3251]1679                log_list += "record imported and added to %(imported_fn)s from %(import_source_fn)s, %(data_string)s" % vars(),
[3178]1680            if log_list:
1681                time_till_now = time.time() - elapse
[3204]1682                percent_finished = (error_count + imported_count)/tti_float*100
[3181]1683                log_list.insert(0,("%(percent_finished)6.3f %% done in %(time_till_now)3.2fs," % vars()),)
[3178]1684                logger.info(' '.join(log_list))
[3172]1685            finished = count > total_to_import - 1
[3277]1686            must_commit = (imported_count != old_commit_count) and (not imported_count % commit_after)
1687            if must_commit:
1688                old_commit_count = imported_count
[3181]1689
[3172]1690            if must_commit or finished:
1691                if len(imported):
1692                    transaction.commit()
1693                    datafile = open(imported_path,"a")
1694                    writer = csv.DictWriter(datafile,
1695                                            csv_keys,
1696                                            extrasaction='ignore')
1697                    writer.writerows(imported)
1698                    datafile.close()
1699                    total_added_to_imported += len(imported)
1700                    imported = []
1701                if len(pending) > 0:
1702                    datafile = open(pending_tmp,"a")
1703                    writer = csv.DictWriter(datafile,
1704                                            csv_keys,
1705                                            extrasaction='ignore')
1706                    writer.writerows(pending)
1707                    datafile.close()
1708                    total_pending += len(pending)
1709                    #total_added_to_pending += len(pending)
1710                    pending = []
1711                if not finished:
[3335]1712                    msg = '%(commit_after)d records imported and committed of total %(total_added_to_imported)d\n' % vars()
[3172]1713                    logger.info(msg)
1714        elapse = time.time() - elapse
[3271]1715        if os.path.exists(pending_path):
1716            copy2(pending_path,pending_backup)
[3172]1717        copy2(pending_tmp,pending_path)
[3191]1718        msg = "finished importing from %(import_source_fn)s in %(elapse).2f seconds, " % vars()
[3181]1719        msg += "%(count)d records totally read, %(total_added_to_imported)d added to %(imported_fn)s, " % vars()
[3172]1720        if pending_only:
1721            removed_pending = pending_at_start - total_pending
[3184]1722            msg += "%(removed_pending)d removed from %(pending_fn)s" % vars()
[2699]1723        else:
[3181]1724            added_pending = total_pending - pending_at_start
1725            msg += "%(added_pending)d added to %(pending_fn)s, %(already_in)s already in %(pending_fn)s" % vars()
1726        #msg += "%(total_pending)d totally written" % vars()    # this line does not make any sense
[3172]1727        logger.info(msg)
[3292]1728        if import_source_done:
1729            copy(import_source_path,import_source_done)
1730            os.remove(import_source_path)
1731            upload = getattr(uploads_folder,os.path.split(import_source_path)[1],None)
1732            if upload is not None:
1733                upload_doc = upload.getContent()
1734                mapping = {}
[3308]1735                #mapping['import_date'] = DateTime.DateTime()
1736                mapping['import_date'] = import_date
[3327]1737                mapping['imported_by'] = importer.imported_by
[3292]1738                mapping['import_message'] = msg
1739                upload_doc.edit(mapping = mapping)
[3178]1740        os.remove(pending_tmp)
[3172]1741        return msg
[2514]1742    ###)
1743
[2292]1744    security.declareProtected(ModifyPortalContent,"moveImagesToFS")###(
1745    def moveImagesToFS(self,student_id="O738726"):
1746        "move the images to the filesystem"
[2675]1747        images_dir = getImagesDir(student_id)
1748        #images_dir = os.path.join("%s" % images_base,student_id)
[2292]1749        student_folder = getattr(self.portal_url.getPortalObject().campus.students,student_id)
1750        stool = getToolByName(self, 'portal_schemas')
1751        schemas = ['student_application',
1752                   'student_clearance',
1753                   ]
1754        created = False
1755        for schema_id in schemas:
1756            schema = stool._getOb(schema_id)
1757            object = getattr(student_folder,schema_id[len('student_'):],None)
1758            if object is None:
1759                continue
1760            doc = object.getContent()
1761            for key in schema.keys():
1762                if schema[key].meta_type != "CPS Image Field":
1763                    continue
1764                #import pdb;pdb.set_trace()
[2351]1765                image = getattr(doc,key,None)
1766                if not image or not hasattr(image,"data"):
[2292]1767                    continue
1768                if not created:
1769                    if not os.path.exists(images_dir):
1770                        os.mkdir(images_dir)
1771                    created = True
1772                filename = os.path.join(images_dir,"%(key)s_%(student_id)s.jpg" % vars())
1773                open(filename,"wb").write(str(image.data))
[2500]1774    ###)
[2292]1775
[2300]1776    security.declareProtected(ModifyPortalContent,"movePassportToFS")###(
1777    def movePassportToFS(self,student_id="O738726"):
1778        "move the passports to the filesystem"
1779        images_dir = os.path.join("%s" % i_home,'passports')
1780        student_folder = getattr(self.portal_url.getPortalObject().campus.students,student_id)
1781        stool = getToolByName(self, 'portal_schemas')
1782        schemas = ['student_application',
1783                   #'student_clearance',
1784                   ]
1785        created = False
1786        for schema_id in schemas:
1787            schema = stool._getOb(schema_id)
1788            object = getattr(student_folder,schema_id[len('student_'):],None)
1789            if object is None:
1790                continue
1791            doc = object.getContent()
1792            for key in schema.keys():
1793                if schema[key].meta_type != "CPS Image Field":
1794                    continue
1795                #import pdb;pdb.set_trace()
1796                image = getattr(doc,key)
1797                if not hasattr(image,"data"):
1798                    continue
1799                if not created:
1800                    if not os.path.exists(images_dir):
1801                        os.mkdir(images_dir)
1802                    created = True
1803                filename = os.path.join(images_dir,"%(student_id)s.jpg" % vars())
1804                open(filename,"wb").write(str(image.data))
[2500]1805    ###)
[2300]1806
[828]1807InitializeClass(WAeUPTool)
Note: See TracBrowser for help on using the repository browser.