forked from SCOAP3/scoap3-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchk_add_publisher.py
57 lines (54 loc) · 2.36 KB
/
chk_add_publisher.py
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
# -*- coding: utf-8 -*-
##
## This file is part of SCOAP3 Repository.
## Copyright (C) 2013 CERN.
##
## SCOAP3 Repository is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation; either version 2 of the
## License, or (at your option) any later version.
##
## SCOAP3 Repository is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with SCOAP3 Repository; if not, write to the Free Software Foundation, Inc.,
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
"""
Add publisher information
"""
from invenio.bibrecord import record_get_field_value
CFG_JOURNAL_TO_PUBLISHER_MAP = {
'Physics Letters B': 'Elsevier',
'Nuclear Physics B': 'Elsevier',
'Advances in High Energy Physics': 'Hindawi Publishing Corporation',
'Chinese Phys. C': 'Institute of Physics Publishing/Chinese Academy of Sciences',
'JCAP': 'Institute of Physics Publishing/SISSA',
'New J. Phys.': 'Institute of Physics Publishing/Deutsche Physikalische Gesellschaft',
'Acta Physica Polonica B': 'Jagiellonian University',
'PTEP': 'Oxford University Press/Physical Society of Japan',
'EPJC': 'Springer/Società Italiana di Fisica',
'JHEP': 'Springer/SISSA',
}
def check_records(records):
"""
Add publisher if missing
"""
for record in records:
journal = record_get_field_value(record, '773', code='p')
publisher = record_get_field_value(record, '260', code='b')
if not publisher:
if journal not in CFG_JOURNAL_TO_PUBLISHER_MAP:
record.warn("Unknown journal: %s" % journal)
continue
else:
publisher = CFG_JOURNAL_TO_PUBLISHER_MAP[journal]
for position, value in record.iterfield('260__%'):
## A field 260 already exist. let's add a subfield.
record.add_subfield(position, 'b', publisher)
break
else:
## The field does not already exist. Let's add a whole field
record.add_field('260__', value='', subfields=[('b', publisher)])