Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mat2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tails
mat2
Commits
865ad181
Commit
865ad181
authored
6 years ago
by
Julien (jvoisin) Voisin
Browse files
Options
Downloads
Patches
Plain Diff
Add support for docx
parent
302a5ea0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/office.py
+52
-0
52 additions, 0 deletions
src/office.py
tests/data/dirty.docx
+0
-0
0 additions, 0 deletions
tests/data/dirty.docx
tests/test_libmat2.py
+20
-0
20 additions, 0 deletions
tests/test_libmat2.py
with
72 additions
and
0 deletions
src/office.py
0 → 100644
+
52
−
0
View file @
865ad181
import
subprocess
import
json
import
zipfile
import
tempfile
import
shutil
import
os
from
.
import
abstract
,
parser_factory
class
OfficeParser
(
abstract
.
AbstractParser
):
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
):
metadata
=
{}
zipin
=
zipfile
.
ZipFile
(
self
.
filename
)
for
item
in
zipin
.
namelist
():
if
item
.
startswith
(
'
docProps/
'
):
metadata
[
item
]
=
'
harmful content
'
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
.
is_dir
():
continue
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
:
zout
.
writestr
(
item
,
zin
.
read
(
item
))
continue
zin
.
extract
(
member
=
item
,
path
=
temp_folder
)
tmp_parser
=
parser_factory
.
get_parser
(
os
.
path
.
join
(
temp_folder
,
item
.
filename
))
if
tmp_parser
is
None
:
print
(
"
%s isn
'
t supported
"
%
item
.
filename
)
continue
tmp_parser
.
remove_all
()
zout
.
write
(
tmp_parser
.
output_filename
,
item
.
filename
)
shutil
.
rmtree
(
temp_folder
)
zout
.
close
()
zin
.
close
()
return
True
This diff is collapsed.
Click to expand it.
tests/data/dirty.docx
0 → 100644
+
0
−
0
View file @
865ad181
File added
This diff is collapsed.
Click to expand it.
tests/test_libmat2.py
+
20
−
0
View file @
865ad181
...
...
@@ -39,6 +39,11 @@ class TestGetMeta(unittest.TestCase):
meta
=
p
.
get_meta
()
self
.
assertEqual
(
meta
[
'
TITLE
'
],
[
'
I am so
'
])
def
test_docx
(
self
):
p
=
office
.
OfficeParser
(
'
./tests/data/dirty.docx
'
)
meta
=
p
.
get_meta
()
print
(
meta
)
class
TestCleaning
(
unittest
.
TestCase
):
def
test_pdf
(
self
):
...
...
@@ -131,3 +136,18 @@ class TestCleaning(unittest.TestCase):
self
.
assertEqual
(
p
.
get_meta
(),
{})
os
.
remove
(
'
./tests/data/clean.flac
'
)
def
test_office
(
self
):
shutil
.
copy
(
'
./tests/data/dirty.docx
'
,
'
./tests/data/clean.docx
'
)
p
=
office
.
OfficeParser
(
'
./tests/data/clean.docx
'
)
meta
=
p
.
get_meta
()
self
.
assertIsNotNone
(
meta
)
ret
=
p
.
remove_all
()
self
.
assertTrue
(
ret
)
p
=
office
.
OfficeParser
(
'
./tests/data/clean.docx.cleaned
'
)
self
.
assertEqual
(
p
.
get_meta
(),
{})
os
.
remove
(
'
./tests/data/clean.docx
'
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment