Update existing authors when isni data available

When an existing author is selected as a new author when editing a book,
if they have an ISNI ID recorded we check the record and augment the local
database record from the ISNI data.

Also dedupes author aliases for this feature and when adding a completely
new author.
This commit is contained in:
Hugh Rundle
2021-11-01 19:50:49 +11:00
parent c845b7a5d0
commit 6556090524
4 changed files with 47 additions and 2 deletions

View File

@ -117,7 +117,8 @@ def get_author_isni_data(isni):
aliases = element.findall(".//personalNameVariant")
for entry in aliases:
author["aliases"].append(make_name_string(entry))
# dedupe aliases
author["aliases"] = list(set(author["aliases"]))
return author
@ -130,3 +131,22 @@ def build_author_dict(match_value):
return get_author_isni_data(isni)
# otherwise it's a name string
return {"name": match_value}
def augment_author_metadata(author, isni):
"""Update any missing author fields from ISNI data"""
isni_data = get_author_isni_data(isni)
author.viaf_id = (
isni_data["viaf_id"] if len(author.viaf_id) == 0 else author.viaf_id
)
author.wikipedia_link = (
isni_data["wikipedia_link"]
if len(author.wikipedia_link) == 0
else author.wikipedia_link
)
author.bio = isni_data["bio"] if len(author.bio) == 0 else author.bio
aliases = set(isni_data["aliases"])
for x in author.aliases:
aliases.add(x)
author.aliases = list(aliases)
author.save()