-
Notifications
You must be signed in to change notification settings - Fork 0
/
_ziputil.py
100 lines (88 loc) · 3.29 KB
/
_ziputil.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# -*- coding: utf-8 -*-
################################################################################
# _ziputil.py
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
################################################################################
# Imports.
from cStringIO import StringIO
import os
import tempfile
import zipfile
# Product Imports.
import standard
import _globals
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
_ziputil.exportZodb2Zip:
Extracts and imports zip-file to zodb.
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
def _exportZodb2Zip(zf, root, container):
for ob in container.objectValues():
if ob.meta_type in ['Folder']:
_exportZodb2Zip(zf,root,ob)
elif ob.meta_type in ['Image','File']:
arcname = ob.absolute_url()[len(root.absolute_url())+1:]
try:
bytes = ob.data
if len(bytes) == 0:
bytes = ob.getData()
try:
bytes = bytes.read()
except:
bytes = str(bytes)
zf.writestr(arcname,bytes)
except:
standard.writeError(root.content,"_exportZodb2Zip")
def exportZodb2Zip(root):
# Create temporary zip-file.
zipfilename = tempfile.mktemp() + '.zip'
zf = zipfile.ZipFile( zipfilename, 'w')
_exportZodb2Zip(zf,root,root)
zf.close()
# Read data from zip-file as return value.
f = open( zipfilename, 'rb')
data = f.read()
f.close()
# Remove temporary zip-file.
os.remove( zipfilename)
# Returns data of zip-file.
return data
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
_ziputil.importZip2Zodb:
Extracts and imports zip-file to zodb.
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
def importZip2Zodb(root, data):
if _globals.is_str_type(data):
data = StringIO( data)
zf = zipfile.ZipFile( data, 'r')
for name in zf.namelist():
container = root
ids = map(lambda x:str(x),name.split('/'))
if len(ids) > 1:
for id in ids[:-1]:
if id not in container.objectIds():
container.manage_addFolder(id=id)
container = getattr(container,id)
id = ids[-1]
if id:
file = zf.read( name)
mt, enc = standard.guess_content_type( id, file)
if id in container.objectIds():
container.manage_delObjects( [id])
if mt.startswith('image'):
file = container.manage_addImage(id=id,file=file)
else:
file = container.manage_addFile(id=id,file=file)
################################################################################