Merge pull request #12993 from Snuffleupagus/metadata-subject

[api-minor] Change the `dc:subject` Metadata field to an Array
This commit is contained in:
Tim van der Meij 2021-02-15 20:27:34 +01:00 committed by GitHub
commit b5735f2017
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 17 deletions

View File

@ -89,23 +89,18 @@ class Metadata {
return entry.childNodes.filter(node => node.nodeName === "rdf:li");
}
_getCreators(entry) {
if (entry.nodeName !== "dc:creator") {
return false;
}
_parseArray(entry) {
if (!entry.hasChildNodes()) {
return true;
return;
}
// Child must be a Bag (unordered array) or a Seq.
const seqNode = entry.childNodes[0];
const authors = this._getSequence(seqNode) || [];
const [seqNode] = entry.childNodes;
const sequence = this._getSequence(seqNode) || [];
this._metadataMap.set(
entry.nodeName,
authors.map(node => node.textContent.trim())
sequence.map(node => node.textContent.trim())
);
return true;
}
_parse(xmlDocument) {
@ -130,11 +125,13 @@ class Metadata {
for (const entry of desc.childNodes) {
const name = entry.nodeName;
if (name === "#text") {
continue;
}
if (this._getCreators(entry)) {
continue;
switch (name) {
case "#text":
continue;
case "dc:creator":
case "dc:subject":
this._parseArray(entry);
continue;
}
this._metadataMap.set(name, entry.textContent.trim());
}

View File

@ -171,7 +171,7 @@ describe("metadata", function () {
"dc:creator": [""],
"dc:description": "",
"dc:format": "application/pdf",
"dc:subject": "",
"dc:subject": [],
"dc:title": "",
"pdf:keywords": "",
"pdf:pdfversion": "1.7",