-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadd_uri_prefix_bibbi_mappings.py
More file actions
93 lines (77 loc) · 3.18 KB
/
add_uri_prefix_bibbi_mappings.py
File metadata and controls
93 lines (77 loc) · 3.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import os
from dotenv import load_dotenv
from dataclasses import dataclass
from seiso.services.noraf import Noraf, NorafRecordNotFound, NorafUpdateFailed
from seiso.services.promus import Promus
from seiso.common.logging import setup_logging
from seiso.constants import bibbi_uri_namespace
@dataclass
class Mapping:
noraf_id: str
bibbi_id: str
bibbi_name: str
load_dotenv()
logger = setup_logging()
noraf = Noraf(os.getenv("BARE_KEY"), read_only_mode=False)
promus = Promus(read_only_mode=True)
logger.info("Connected to Promus")
def save_noraf_record(noraf_rec, reason):
try:
noraf.put(noraf_rec, reason=reason)
return True
except NorafUpdateFailed as error:
logger.error(error.message)
return False
def main() -> None:
mappings: list[Mapping] = []
for record in promus.authorities.person.all():
if (
record.NB_ID is not None
and record.NB_ID != ""
and record.MainPerson is True
):
mappings.append(
Mapping(
noraf_id=str(record.NB_ID),
bibbi_id=str(record.Bibsent_ID),
bibbi_name=str(record._DisplayValue),
)
)
logger.info("Read %d Bibbi-Noraf mappings from Promus", len(mappings))
n_added = 0
n_changed = 0
skipped = []
for mapping in mappings:
try:
noraf_rec = noraf.get(mapping.noraf_id)
except NorafRecordNotFound:
logger.warning('[%s] Noraf record does not exist, mapping from Bibbi:%s "%s" must be checked manually',
mapping.noraf_id, mapping.bibbi_id, mapping.bibbi_name)
continue
if noraf_rec.deleted:
logger.warning('[%s] Noraf record is marked as deleted, mapping from Bibbi:%s "%s" must be checked manually',
mapping.noraf_id, mapping.bibbi_id, mapping.bibbi_name)
continue
bibbi_id = mapping.bibbi_id
bibbi_uri = bibbi_uri_namespace + mapping.bibbi_id
noraf_bibbi_ids = noraf_rec.identifiers('bibbi')
if len(noraf_bibbi_ids) == 0:
noraf_rec.set_identifiers('bibbi', [bibbi_uri])
if save_noraf_record(noraf_rec, 'Added Bibbi URI'):
n_added += 1
elif len(noraf_bibbi_ids) == 1 and noraf_bibbi_ids[0] == bibbi_id:
noraf_rec.set_identifiers('bibbi', [bibbi_uri])
if save_noraf_record(noraf_rec, 'Replaced Bibbi ID with URI'):
n_changed += 1
elif len(noraf_bibbi_ids) == 1 and noraf_bibbi_ids[0] == bibbi_uri:
pass # Ok, already updated
elif len(noraf_bibbi_ids) == 1:
logger.warning('[%s] Skipped because: not mapped to the expected Bibbi record (%s %s)',
noraf_rec.id, mapping.bibbi_id, mapping.bibbi_name)
skipped.append(mapping.noraf_id)
elif len(noraf_bibbi_ids) > 1:
logger.warning('[%s] Skipped because: mapped to more than one Bibbi record', noraf_rec.id)
skipped.append(mapping.noraf_id)
logger.info('Added: %d Changed: %d Skipped: %d', n_added, n_changed, len(skipped))
print(skipped[:10])
main()