1
0
Fork 0
mat2/src/office.py

150 lines
5.3 KiB
Python
Raw Normal View History

2018-04-01 01:04:06 +02:00
import os
2018-03-31 20:56:15 +02:00
import re
2018-04-01 01:04:06 +02:00
import shutil
2018-03-31 15:47:06 +02:00
import tempfile
import datetime
2018-04-01 01:04:06 +02:00
import zipfile
2018-03-31 15:47:06 +02:00
from . import abstract, parser_factory
2018-04-01 01:04:06 +02:00
class ArchiveBasedAbstractParser(abstract.AbstractParser):
def _clean_zipinfo(self, zipinfo:zipfile.ZipInfo) -> zipfile.ZipInfo:
zipinfo.compress_type = zipfile.ZIP_DEFLATED
zipinfo.create_system = 3 # Linux
zipinfo.comment = b''
zipinfo.date_time = (1980, 1, 1, 0, 0, 0)
return zipinfo
def _get_zipinfo_meta(self, zipinfo:zipfile.ZipInfo) -> dict:
metadata = {}
if zipinfo.create_system == 3:
#metadata['create_system'] = 'Linux'
pass
elif zipinfo.create_system == 2:
metadata['create_system'] = 'Windows'
else:
metadata['create_system'] = 'Weird'
if zipinfo.comment:
metadata['comment'] = zipinfo.comment
if zipinfo.date_time != (1980, 1, 1, 0, 0, 0):
metadata['date_time'] = datetime.datetime(*zipinfo.date_time)
return metadata
2018-04-01 01:04:06 +02:00
def _clean_internal_file(self, item:zipfile.ZipInfo, temp_folder:str, zin:zipfile.ZipFile, zout:zipfile.ZipFile):
zin.extract(member=item, path=temp_folder)
tmp_parser, mtype = parser_factory.get_parser(os.path.join(temp_folder, item.filename))
2018-04-02 23:35:03 +02:00
if not tmp_parser:
print("%s's format (%s) isn't supported" % (item.filename, mtype))
2018-04-01 01:04:06 +02:00
return
tmp_parser.remove_all()
zinfo = zipfile.ZipInfo(item.filename)
2018-04-02 23:35:03 +02:00
clean_zinfo = self._clean_zipinfo(zinfo)
2018-04-01 01:04:06 +02:00
with open(tmp_parser.output_filename, 'rb') as f:
2018-04-02 23:35:03 +02:00
zout.writestr(clean_zinfo, f.read())
2018-04-01 01:04:06 +02:00
2018-04-01 01:04:06 +02:00
class MSOfficeParser(ArchiveBasedAbstractParser):
2018-03-31 15:47:06 +02:00
mimetypes = {
'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
'application/vnd.openxmlformats-officedocument.presentationml.presentation'
}
files_to_keep = {'_rels/.rels', 'word/_rels/document.xml.rels'}
def get_meta(self):
2018-03-31 20:56:15 +02:00
"""
Yes, I know that parsing xml with regexp ain't pretty,
be my guest and fix it if you want.
"""
2018-03-31 15:47:06 +02:00
metadata = {}
zipin = zipfile.ZipFile(self.filename)
for item in zipin.infolist():
if item.filename.startswith('docProps/') and item.filename.endswith('.xml'):
2018-03-31 20:56:15 +02:00
content = zipin.read(item).decode('utf-8')
for (key, value) in re.findall(r"<(.+)>(.+)</\1>", content, re.I):
metadata[key] = value
if not metadata: # better safe than sorry
metadata[item] = 'harmful content'
metadata = {**metadata, **self._get_zipinfo_meta(item)}
2018-03-31 15:47:06 +02:00
zipin.close()
return metadata
2018-04-01 00:17:06 +02:00
2018-03-31 15:47:06 +02:00
def remove_all(self):
zin = zipfile.ZipFile(self.filename, 'r')
zout = zipfile.ZipFile(self.output_filename, 'w')
temp_folder = tempfile.mkdtemp()
for item in zin.infolist():
2018-03-31 15:57:14 +02:00
if item.filename[-1] == '/':
continue # `is_dir` is added in Python3.6
2018-03-31 15:47:06 +02:00
elif item.filename.startswith('docProps/'):
if not item.filename.endswith('.rels'):
continue # don't keep metadata files
if item.filename in self.files_to_keep:
2018-04-01 01:04:06 +02:00
item = self._clean_zipinfo(item)
2018-03-31 15:47:06 +02:00
zout.writestr(item, zin.read(item))
continue
2018-04-01 01:04:06 +02:00
self._clean_internal_file(item, temp_folder, zin, zout)
shutil.rmtree(temp_folder)
zout.close()
zin.close()
return True
class LibreOfficeParser(ArchiveBasedAbstractParser):
mimetypes = {
'application/vnd.oasis.opendocument.text',
'application/vnd.oasis.opendocument.spreadsheet',
'application/vnd.oasis.opendocument.presentation',
'application/vnd.oasis.opendocument.graphics',
2018-04-23 00:24:39 +02:00
'application/vnd.oasis.opendocument.chart',
'application/vnd.oasis.opendocument.formula',
2018-04-23 00:28:36 +02:00
'application/vnd.oasis.opendocument.image',
2018-04-01 01:04:06 +02:00
}
def get_meta(self):
"""
Yes, I know that parsing xml with regexp ain't pretty,
be my guest and fix it if you want.
"""
metadata = {}
zipin = zipfile.ZipFile(self.filename)
for item in zipin.infolist():
if item.filename == 'meta.xml':
2018-04-01 01:04:06 +02:00
content = zipin.read(item).decode('utf-8')
for (key, value) in re.findall(r"<((?:meta|dc|cp).+?)>(.+)</\1>", content, re.I):
metadata[key] = value
if not metadata: # better safe than sorry
metadata[item] = 'harmful content'
metadata = {**metadata, **self._get_zipinfo_meta(item)}
2018-04-01 01:04:06 +02:00
zipin.close()
return metadata
def remove_all(self):
zin = zipfile.ZipFile(self.filename, 'r')
zout = zipfile.ZipFile(self.output_filename, 'w')
temp_folder = tempfile.mkdtemp()
for item in zin.infolist():
if item.filename[-1] == '/':
continue # `is_dir` is added in Python3.6
elif item.filename == 'meta.xml':
continue # don't keep metadata files
self._clean_internal_file(item, temp_folder, zin, zout)
2018-04-01 00:17:06 +02:00
2018-03-31 15:47:06 +02:00
shutil.rmtree(temp_folder)
zout.close()
zin.close()
return True