Module: Bolognese::Readers::CrossrefReader

Included in:
MetadataUtils
Defined in:
lib/bolognese/readers/crossref_reader.rb

Constant Summary collapse

CONTACT_EMAIL =

CrossRef types from api.crossref.org/types

"[email protected]"

Instance Method Summary collapse

Instance Method Details

#crossref_alternate_identifiers(bibliographic_metadata) ⇒ Object



144
145
146
147
148
149
150
151
152
# File 'lib/bolognese/readers/crossref_reader.rb', line 144

def crossref_alternate_identifiers()
  if .dig("publisher_item", "item_number").present?
    { "identifier" => parse_attributes(.dig("publisher_item", "item_number")),
      "identifierType" => "Publisher ID" }
  elsif parse_attributes(.fetch("item_number", nil)).present?
    { "identifier" => parse_attributes(.fetch("item_number", nil)),
      "identifierType" => "Publisher ID" }
  end
end

#crossref_date_published(bibliographic_metadata) ⇒ Object



207
208
209
210
211
212
213
214
215
# File 'lib/bolognese/readers/crossref_reader.rb', line 207

def crossref_date_published()
  pub_date = Array.wrap(.fetch("publication_date", nil)).presence ||
    Array.wrap(.fetch("acceptance_date", nil))
  if pub_date.present?
    get_date_from_parts(pub_date.first["year"], pub_date.first["month"], pub_date.first["day"])
  else
    nil
  end
end

#crossref_description(bibliographic_metadata) ⇒ Object



154
155
156
157
158
159
160
161
162
163
164
# File 'lib/bolognese/readers/crossref_reader.rb', line 154

def crossref_description()
  abstract = Array.wrap(.dig("abstract")).map do |r|
    { "descriptionType" => "Abstract", "description" => sanitize(parse_attributes(r, content: 'p')) }.compact
  end

  description = Array.wrap(.dig("description")).map do |r|
    { "descriptionType" => "Other", "description" => sanitize(parse_attributes(r)) }.compact
  end

  (abstract + description)
end

#crossref_funding_reference(program_metadata) ⇒ Object



190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
# File 'lib/bolognese/readers/crossref_reader.rb', line 190

def crossref_funding_reference()
  fundref = Array.wrap().find { |a| a["name"] == "fundref" } || {}
  Array.wrap(fundref.fetch("assertion", [])).select { |a| a["name"] == "fundgroup" }.map do |f|
    f = Array.wrap(f.fetch("assertion", nil)).first
    funder_identifier = normalize_id(f.dig("assertion", "__content__"))
    funder_identifier_type = funder_identifier.present? ?  "Crossref Funder ID" : nil
    award_title = f.fetch("awardTitle", nil).present? ? f.fetch("awardTitle") : nil

    { "funderIdentifier" => funder_identifier,
      "funderIdentifierType" => funder_identifier_type,
      "funderName" => f.fetch("__content__", nil).to_s.strip.presence,
      "awardTitle" => award_title,
      "awardNumber" => f.dig("awardNumber", "__content__"),
      "awardUri" => f.dig("awardNumber", "awardURI") }.compact
  end
end

#crossref_is_part_of(model_metadata) ⇒ Object



217
218
219
220
221
222
223
224
225
226
# File 'lib/bolognese/readers/crossref_reader.rb', line 217

def crossref_is_part_of()
  if .present? && .fetch("issn", nil).present?
    { "relatedIdentifier" => parse_attributes(.fetch("issn", nil), first: true),
      "relationType" => "IsPartOf",
      "relatedIdentifierType" => "ISSN",
      "resourceTypeGeneral" => "Collection" }.compact
  else
    nil
  end
end

#crossref_license(program_metadata) ⇒ Object



166
167
168
169
170
171
172
173
174
175
# File 'lib/bolognese/readers/crossref_reader.rb', line 166

def crossref_license()
  access_indicator = Array.wrap().find { |m| m["name"] == "AccessIndicators" }
  if access_indicator.present?
    Array.wrap(access_indicator["license_ref"]).map do |license|
      { "rightsUri" => normalize_url(parse_attributes(license)) }
    end.uniq
  else
    nil
  end
end

#crossref_people(bibliographic_metadata, contributor_role) ⇒ Object



177
178
179
180
181
182
183
184
185
186
187
188
# File 'lib/bolognese/readers/crossref_reader.rb', line 177

def crossref_people(, contributor_role)
  person = .dig("contributors", "person_name")
  Array.wrap(person).select { |a| a["contributor_role"] == contributor_role }.map do |a|
    name_identifiers = normalize_orcid(parse_attributes(a["ORCID"])).present? ? [{ "nameIdentifier" => normalize_orcid(parse_attributes(a["ORCID"])), "nameIdentifierScheme" => "ORCID" }] : nil
    { "nameType" => "Personal",
      "nameIdentifiers" => name_identifiers,
      "name" => [a["surname"], a["given_name"]].join(", "),
      "givenName" => a["given_name"],
      "familyName" => a["surname"],
      "contributorType" => contributor_role == "editor" ? "Editor" : nil }.compact
  end.unwrap
end

#crossref_references(bibliographic_metadata) ⇒ Object



228
229
230
231
232
233
234
235
236
237
238
239
# File 'lib/bolognese/readers/crossref_reader.rb', line 228

def crossref_references()
  refs = .dig("citation_list", "citation")
  Array.wrap(refs).select { |a| a["doi"].present? }.map do |c|
    if c["doi"].present?
      { "relatedIdentifier" => parse_attributes(c["doi"]).downcase,
        "relationType" => "References",
        "relatedIdentifierType" => "DOI" }.compact
    else
      nil
    end
  end.compact.unwrap
end

#get_crossref(id: nil, **options) ⇒ Object



10
11
12
13
14
15
16
17
18
19
20
# File 'lib/bolognese/readers/crossref_reader.rb', line 10

def get_crossref(id: nil, **options)
  return { "string" => nil, "state" => "not_found" } unless id.present?

  doi = doi_from_url(id)
  url = "http://www.crossref.org/openurl/?id=doi:#{doi}&noredirect=true&pid=#{CONTACT_EMAIL}&format=unixref"
  response = Maremma.get(url, accept: "text/xml", raw: true)
  string = response.body.fetch("data", nil)
  string = Nokogiri::XML(string, nil, 'UTF-8', &:noblanks).to_s if string.present?

  { "string" => string }
end

#read_crossref(string: nil, **options) ⇒ Object



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
# File 'lib/bolognese/readers/crossref_reader.rb', line 22

def read_crossref(string: nil, **options)
  read_options = ActiveSupport::HashWithIndifferentAccess.new(options.except(:doi, :id, :url, :sandbox, :validate))

  if string.present?
    m = Maremma.from_xml(string).dig("doi_records", "doi_record") || {}
    meta = m.dig("crossref", "error").nil? ? m : {}
  else
    meta = {}
  end

  # model should be one of book, conference, database, dissertation, journal, peer_review, posted_content,
  # report-paper, sa_component, standard
  model = meta.dig("crossref").to_h.keys.first

  resource_type = nil
   = {}
   = {}
   = nil
  journal_issue = {}
  publisher = "(:unav)"

  case model
  when "book"
     = meta.dig("crossref", "book", "book_metadata")
     = meta.dig("crossref", "book", "book_series_metadata")
     = meta.dig("crossref", "book", "book_set_metadata")
     = meta.dig("crossref", "book", "content_item").to_h
    resource_type = .fetch("component_type", nil) ? "book-" + .fetch("component_type") : "book"
    publisher = .dig("publisher", "publisher_name")
  when "conference"
     = meta.dig("crossref", "conference", "event_metadata") || {}
     = meta.dig("crossref", "conference", "conference_paper").to_h
  when "journal"
     = meta.dig("crossref", "journal", "journal_metadata") || {}
     = meta.dig("crossref", "journal", "journal_article").to_h
     = .dig("crossmark", "custom_metadata", "program") || .dig("program")
    journal_issue = meta.dig("crossref", "journal", "journal_issue") || {}
    journal_article = meta.dig("crossref", "journal", "journal_article") || {}

    resource_type = if journal_article.present?
                        "journal_article"
                      elsif journal_issue.present?
                        "journal_issue"
                      else
                        "journal"
                      end
  when "posted_content"
     = meta.dig("crossref", "posted_content").to_h
    publisher = .dig("institution", "institution_name")
  when "sa_component"
     = meta.dig("crossref", "sa_component", "component_list", "component").to_h
  end

  resource_type = (resource_type || model).to_s.underscore.camelcase.presence
  schema_org = Bolognese::Utils::CR_TO_SO_TRANSLATIONS[resource_type] || "ScholarlyArticle"
  types = {
    "resourceTypeGeneral" => Bolognese::Utils::SO_TO_DC_TRANSLATIONS[schema_org],
    "resourceType" => resource_type,
    "schemaOrg" => schema_org,
    "citeproc" => Bolognese::Utils::CR_TO_CP_TRANSLATIONS[resource_type] || "article-journal",
    "bibtex" => Bolognese::Utils::CR_TO_BIB_TRANSLATIONS[resource_type] || "misc",
    "ris" => Bolognese::Utils::CR_TO_RIS_TRANSLATIONS[resource_type] || "JOUR"
  }.compact

  # Crossref servers run on Eastern Time
  Time.zone = 'Eastern Time (US & Canada)'
  dates = [
    { "date" => crossref_date_published(),
      "dateType" => "Issued" },
    { "date" => Time.zone.parse(meta.fetch("timestamp", "2018-01-01")).utc.iso8601,
      "dateType" => "Updated" }
  ]
  publication_year = crossref_date_published().present? ? crossref_date_published()[0..3] : nil
  state = meta.present? || read_options.present? ? "findable" : "not_found"

  related_identifiers = Array.wrap(crossref_is_part_of()) + Array.wrap(crossref_references())
  container = if .present? || .present?
    issn = parse_attributes(.to_h.fetch("issn", nil), first: true)

    { "type" => "Journal",
      "identifier" => issn,
      "identifierType" => issn.present? ? "ISSN" : nil,
      "title" => .to_h["full_title"],
      "volume" => journal_issue.dig("journal_volume", "volume"),
      "issue" => journal_issue.dig("issue"),
      "firstPage" => .dig("pages", "first_page"),
      "lastPage" => .dig("pages", "last_page") }.compact
  else
    nil
  end

  identifiers = [{ "identifierType" => "DOI", "identifier" => normalize_doi(options[:doi] || options[:id] || .dig("doi_data", "doi")) }, crossref_alternate_identifiers()].compact

  id = Array.wrap(identifiers).first.to_h.fetch("identifier", nil)
  doi = Array.wrap(identifiers).find { |r| r["identifierType"] == "DOI" }.to_h.fetch("identifier", nil)

  { "id" => id,
    "types" => types,
    "doi" => doi_from_url(doi),
    "url" => .dig("doi_data", "resource"),
    "titles" => [{ "title" => parse_attributes(.dig("titles", "title")) }],
    "identifiers" => identifiers,
    "creators" => crossref_people(, "author"),
    "contributors" => crossref_people(, "editor"),
    "funding_references" => crossref_funding_reference(),
    "publisher" => publisher,
    "container" => container,
    "agency" => "Crossref",
    "related_identifiers" => related_identifiers,
    "dates" => dates,
    "publication_year" => publication_year,
    "descriptions" => crossref_description(),
    "rights_list" => crossref_license(),
    "version_info" => nil,
    "subjects" => nil,
    "language" => nil,
    "sizes" => nil,
    "schema_version" => nil,
    "state" => state
  }.merge(read_options)
end