-
Notifications
You must be signed in to change notification settings - Fork 5
/
article.py
297 lines (247 loc) · 10.3 KB
/
article.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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
# ReScience yaml parser
# Released under the BSD two-clauses licence
import unicodedata
import yaml
import dateutil.parser
class Contributor:
def __init__(self, role, name, orcid="", email="", affiliations=[]):
self.role = role
self.name = name
self.fullname = name
self.lastname = self.get_lastname(name)
self.abbrvname = self.get_abbrvname(name)
self.orcid = orcid
self.email = email
self.affiliations = affiliations
def get_abbrvname(self, name):
if not name: return ""
if ',' in name:
lastname = name.split(",")[0]
firstnames = name.split(",")[1].strip().split(" ")
else:
lastname = name.split(" ")[-1]
firstnames = name.split(" ")[:-1]
abbrvname = ""
for firstname in firstnames:
if "-" in firstname:
for name in firstname.split("-"):
abbrvname += name[0].strip().upper() + '.-'
abbrvname = abbrvname[:-1]
else:
abbrvname += firstname[0].strip().upper() + '.'
return abbrvname + " " + lastname
def get_lastname(self, name):
if not name: return ""
# Rougier, Nicolas P.
if ',' in name:
lastname = name.split(",")[0].strip()
firstname = name.split(",")[1].strip()
# Nicolas P. Rougier
else:
lastname = name.split(" ")[-1]
firstname = name.split(" ")[:-1]
return lastname
class Affiliation:
def __init__(self, code, name, address=""):
self.code = code
self.name = name
self.address = address
class Repository:
def __init__(self, name, url, doi, swh=""):
self.name = name
self.url = url
self.doi = doi
self.swh = swh
class Replication:
def __init__(self, cite, bib, url, doi):
self.cite = cite
self.bib = bib
self.url = url
self.doi = doi
class Review:
def __init__(self, url, doi):
self.url = url
self.doi = doi
class Date:
def __init__(self, date):
date = dateutil.parser.parse(date)
self.date = date
self.year = date.year
self.month = date.month
self.day = date.day
self.textual = self.date.strftime("%d %B %Y")
def __str__(self):
return self.textual
#return self.date.strftime("%d %B %Y")
def __repr__(self):
return self.textual
# return self.date.strftime("%d %B %Y")
class Article:
def __init__(self, data):
self.title = ""
self.absract = ""
self.type = ""
self.domain = ""
self.language = ""
self.bibliography = ""
self.keywords = []
self.authors = []
self.editors = []
self.reviewers = []
self.affiliations = []
self.code = ""
self.data = ""
self.contact = ""
self.review = ""
self.replication = ""
self.date_received = ""
self.date_accepted = ""
self.date_published = ""
self.journal_name = ""
self.journal_issn = ""
self.journal_volume = ""
self.journal_issue = ""
self.article_number = ""
self.article_doi = ""
self.article_url = ""
self.parse(data)
# Build authors list
self.authors_short = "" # Family names only
self.authors_abbrv = "" # Abbreviated firsnames + Family names
self.authors_full = "" # Full names
n = len(self.authors)
if n > 3:
self.authors_short = self.authors[0].lastname + " et al."
self.authors_abbrv = self.authors[0].abbrvname + " et al."
self.authors_full = self.authors[0].fullname + " et al."
elif n==1:
self.authors_short += self.authors[0].lastname
self.authors_abbrv += self.authors[0].abbrvname
self.authors_full += self.authors[0].fullname
else:
for i in range(n-2):
self.authors_short += self.authors[i].lastname + ", "
self.authors_abbrv += self.authors[i].abbrvname + ", "
self.authors_full += self.authors[i].fullname + ", "
if n >= 2:
self.authors_short += self.authors[n-2].lastname + " and "
self.authors_short += self.authors[n-1].lastname
self.authors_abbrv += self.authors[n-2].abbrvname + " and "
self.authors_abbrv += self.authors[n-1].abbrvname
self.authors_full += self.authors[n-2].fullname + " and "
self.authors_full += self.authors[n-1].fullname
# create ASCII bibtex label
# - Try to convert unicode character to their ASCII equivalent
bibtex_label_bytes = \
unicodedata.normalize('NFKD', self.authors[0].lastname).encode('ascii',
'ignore')
self.bibtex_label = str(bibtex_label_bytes, 'ascii')
def parse(self, data):
document = yaml.safe_load(data)
self.title = document.get("title", "")
self.abstract = document.get("abstract","") or ""
self.keywords = document["keywords"] or ""
self.type = document["type"] or ""
self.domain = document["domain"] or ""
self.language = document["language"] or ""
self.bibliography = document["bibliography"] or ""
# Miscellaneous dates
dates = {key:value for data in document["dates"]
for key, value in data.items()}
self.date_received = Date(dates["received"] or "")
self.date_accepted = Date(dates["accepted"] or "")
self.date_published = Date(dates["published"] or "")
# Add authors
for item in document["authors"]:
role = "author"
name = item["name"] or ""
orcid = item.get("orcid","") or ""
email = item.get("email","") or ""
if item["affiliations"] is not None:
if len(str(item["affiliations"])) > 1:
affiliations = item["affiliations"].split(",")
if "*" in affiliations:
affiliations.remove("*")
author = Contributor(role, name, orcid, email, affiliations)
self.add_contributor(author)
self.contact = author
else:
author = Contributor(role, name, orcid, email, affiliations)
self.add_contributor(author)
else:
affiliations = list(str(item["affiliations"]))
author = Contributor(role, name, orcid, email, affiliations)
self.add_contributor(author)
# Add author affiliations
for item in document["affiliations"]:
self.affiliations.append(
Affiliation(item["code"],
item["name"],
item.get("address", "")))
# Add editor & reviewers
for item in document["contributors"]:
role = item["role"]
name = item["name"] or ""
orcid = item.get("orcid","") or ""
contributor = Contributor(role, name, orcid)
self.add_contributor(contributor)
# Code repository (mandatory)
if "code" in document.keys():
code = {key:value for data in document["code"]
for key, value in data.items()}
self.code = Repository("code",
code.get("url","") or "",
code.get("doi","") or "",
code.get("swh","") or "")
else:
raise IndexError("Code repository not found")
# Data repository (optional)
if "data" in document.keys():
data = {key:value for data in document["data"]
for key, value in data.items()}
self.data = Repository("data",
data.get("url","") or "",
data.get("doi","") or "")
else:
self.data = Repository("data", "", "")
# Review
review = {key:value for review in document["review"]
for key, value in review.items()}
self.review = Review(review.get("url","") or "",
review.get("doi","") or "")
# Replication
replication = {key:value for replication in document["replication"]
for key, value in replication.items()}
self.replication = Replication(replication["cite"] or "",
replication["bib"] or "",
replication["url"] or "",
replication["doi"] or "")
# Article number & DOI
article = {key:value for article in document["article"]
for key, value in article.items()}
self.article_number = article["number"] or ""
self.article_doi = article["doi"] or ""
self.article_url = article["url"] or ""
# Journal volume and issue
journal = {key:value for journal in document["journal"]
for key, value in journal.items()}
self.journal_name = str(journal.get("name",""))
self.journal_issn = str(journal.get("issn", ""))
self.journal_volume = journal["volume"] or ""
self.journal_issue = journal["issue"] or ""
def add_contributor(self, contributor):
if contributor.role == "author":
self.authors.append(contributor)
elif contributor.role == "editor":
self.editors.append(contributor)
elif contributor.role == "reviewer":
self.reviewers.append(contributor)
else:
raise(IndexError)
# -----------------------------------------------------------------------------
if __name__ == '__main__':
with open("metadata.yaml") as file:
article = Article(file.read())
print(article.authors_full)
print(article.authors_abbrv)
print(article.authors_short)