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
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
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
jvoisin
mat2
Commits
7dad77a7
Commit
7dad77a7
authored
6 years ago
by
Julien (jvoisin) Voisin
Browse files
Options
Downloads
Patches
Plain Diff
Make the parsing of office format's metadata more robust
parent
8c7979aa
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libmat2/office.py
+12
-4
12 additions, 4 deletions
libmat2/office.py
with
12 additions
and
4 deletions
libmat2/office.py
+
12
−
4
View file @
7dad77a7
...
...
@@ -78,8 +78,12 @@ class MSOfficeParser(ArchiveBasedAbstractParser):
for
item
in
zipin
.
infolist
():
if
item
.
filename
.
startswith
(
'
docProps/
'
)
and
item
.
filename
.
endswith
(
'
.xml
'
):
content
=
zipin
.
read
(
item
).
decode
(
'
utf-8
'
)
for
(
key
,
value
)
in
re
.
findall
(
r
"
<(.+)>(.+)</\1>
"
,
content
,
re
.
I
):
metadata
[
key
]
=
value
try
:
results
=
re
.
findall
(
r
"
<(.+)>(.+)</\1>
"
,
content
,
re
.
I
|
re
.
M
)
for
(
key
,
value
)
in
results
:
metadata
[
key
]
=
value
except
TypeError
:
# We didn't manage to parse the xml file
pass
if
not
metadata
:
# better safe than sorry
metadata
[
item
]
=
'
harmful content
'
...
...
@@ -140,8 +144,12 @@ class LibreOfficeParser(ArchiveBasedAbstractParser):
for
item
in
zipin
.
infolist
():
if
item
.
filename
==
'
meta.xml
'
:
content
=
zipin
.
read
(
item
).
decode
(
'
utf-8
'
)
for
(
key
,
value
)
in
re
.
findall
(
r
"
<((?:meta|dc|cp).+?)>(.+)</\1>
"
,
content
,
re
.
I
):
metadata
[
key
]
=
value
try
:
results
=
re
.
findall
(
r
"
<((?:meta|dc|cp).+?)>(.+)</\1>
"
,
content
,
re
.
I
|
re
.
M
)
for
(
key
,
value
)
in
results
:
metadata
[
key
]
=
value
except
TypeError
:
# We didn't manage to parse the xml file
pass
if
not
metadata
:
# better safe than sorry
metadata
[
item
]
=
'
harmful content
'
for
key
,
value
in
self
.
_get_zipinfo_meta
(
item
).
items
():
...
...
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