source: WAeUP_SRP/base/skins/waeup_upload/uploads_index.py @ 3313

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

add imported_by

  • Property svn:keywords set to Id
File size: 4.8 KB
Line 
1## Script (Python) "uploads_index"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=
8##title=
9##
10# $Id:uploads_index.py 486 2006-09-06 10:09:39Z joachim $
11"""
12return Info about the Uploads
13"""
14import DateTime
15import logging
16logger = logging.getLogger('Skins.upload_index')
17
18
19try:
20    from Products.zdb import set_trace
21except:
22    def set_trace():
23        pass
24request = context.REQUEST
25
26wf = context.portal_workflow
27mtool = context.portal_membership
28member = mtool.getAuthenticatedMember()
29
30path_info = request.get('PATH_INFO').split('/')
31NO_KEY = '----'
32info = {}
33info['action'] = "%s" % context.absolute_url()
34info['choosen_ids'] = request.get('ids',[])
35info['doc'] = context.getContent()
36
37edit = request.form.has_key('edit')
38ids = request.get('ids',[])
39#set_trace()
40if edit and ids:
41    for long_id in ids:
42        short_id = long_id.replace('.csv','')
43        doc = getattr(context, long_id).getContent()
44        import_layout =  request.form.get(short_id)['import_layout']
45        logger.info('%s set import layout of object %s to %s' % (member,long_id,import_layout))
46        doc.edit(mapping = request.form[short_id])
47        msg, invalid_keys = doc['checkKeys']()
48        new_keys = []
49        for key in invalid_keys:
50            id_key = "%s|%s" % (short_id,key)
51            if request.form.has_key(id_key):
52                new_key = request.form.get(id_key)['valid_key']
53                if new_key != NO_KEY:
54                    new_keys += (key,new_key),
55        if new_keys:
56            doc.editHeadline(new_keys)
57            for key in new_keys:
58                logger.info('%s changed column heading in file %s from %s to %s' % (member,long_id,key[0],key[1]))
59
60wrong = []
61imported = []
62importable = []
63for id,upload in context.objectItems():
64    add_to = wrong
65    row = {}
66    doc = upload.getContent()
67    row['valid_keys'] = doc['getKeys']()
68    row['valid_keys'][0] = NO_KEY
69    row['id'] = id.replace('.csv','')
70    row['title'] = doc.filename
71    row['url'] = upload.absolute_url()
72    row['imported'] = False
73    row['invalid_keys'] = []
74    import_message = getattr(doc,'import_message','')
75    if import_message:
76        row['imported'] = True
77        row['msg'] = import_message
78        if getattr(doc,'import_date',''):
79            row['import_date'] = doc.import_date.strftime("%d/%m/%y %H:%M:%S")
80        else:
81            row['import_date'] = ''
82        add_to = imported
83    else:
84        row['msg'],row['invalid_keys'] = doc['checkKeys']()
85        if not row['msg'] and not row['invalid_keys']:
86            add_to = importable
87    row['filename'] = doc.filename
88    row['import_layout'] = doc.import_layout
89    row['upload_date'] =  doc.upload_date.strftime("%d/%m/%y %H:%M:%S")
90    row['uploaded_by'] = doc.uploaded_by
91    row['imported_by'] = doc.imported_by
92    add_to.append(row)
93wrong.sort()
94imported.sort()
95importable.sort()
96info['wrong'] = wrong
97info['imported'] = imported
98info['importable'] = importable
99info['import_allowed'] = str(member) in ('admin','joachim',)
100
101validate = "upload" in request.keys()
102mode = "create"
103res,psm,ds = context.portal_layouts.renderLayout(layout_id = 'upload',
104                             schema_id = 'upload',
105                             layout_mode = mode,
106                             context=context,
107                             mapping=validate and request,
108                             ob= {},
109                             commit = True,
110                            )
111while True:
112    if psm == 'invalid':
113        psm = "Please correct your input!"
114    # return context.uploads_form(rendered = res,
115    #                              psm = "Please correct your input!",
116    #                              mode = mode,
117    #                              ds = ds,
118    #                              info = info,
119    #                             )
120    elif psm == 'valid':
121        filename = ds['upload_file'].filename
122        if filename not in context.objectIds():
123            break
124        psm = "Upload object exists!"
125    logger.info('%s views upload section' % member)
126    return context.uploads_form(rendered = res,
127                                        psm = psm,
128                                        ds = ds,
129                                        mode = mode,
130                                        info = info,
131                                       )
132
133context.invokeFactory('Upload',filename)
134upload = getattr(context,filename)
135d = {}
136d['filename'] = d['id'] = filename
137d['upload_date'] =  DateTime.DateTime()
138d['import_layout'] = ds.get('import_layout','')
139d['uploaded_by'] = str(member)
140d['url'] = upload.absolute_url()
141upload.getContent().edit(mapping=d)
142logger.info('%s uploaded file %s with import layout %s' % (member,filename,d['import_layout']))
143
144return request.RESPONSE.redirect(context.absolute_url())
145
146
Note: See TracBrowser for help on using the repository browser.