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
|
# File 'lib/bolognese/readers/codemeta_reader.rb', line 15
def read_codemeta(string: nil, **options)
if string.present?
errors = jsonlint(string)
return { "errors" => errors } if errors.present?
end
read_options = ActiveSupport::HashWithIndifferentAccess.new(options.except(:doi, :id, :url, :sandbox, :validate))
meta = string.present? ? Maremma.from_json(string) : {}
identifier = meta.fetch("identifier", nil)
id = normalize_id(meta.fetch("@id", nil) || identifier)
author = get_authors(from_schema_org(Array.wrap(meta.fetch("agents", nil))))
contributor = get_authors(from_schema_org(Array.wrap(meta.fetch("editor", nil))))
dates = []
dates << { "date" => meta.fetch("datePublished"), "dateType" => "Issued" } if meta.fetch("datePublished", nil).present?
dates << { "date" => meta.fetch("dateCreated"), "dateType" => "Created" } if meta.fetch("dateCreated", nil).present?
dates << { "date" => meta.fetch("dateModified"), "dateType" => "Updated" } if meta.fetch("dateModified", nil).present?
publication_year = meta.fetch("datePublished")[0..3] if meta.fetch("datePublished", nil).present?
publisher = meta.fetch("publisher", nil)
state = meta.present? || read_options.present? ? "findable" : "not_found"
schema_org = meta.fetch("@type", nil)
types = {
"resourceTypeGeneral" => Bolognese::Utils::SO_TO_DC_TRANSLATIONS[schema_org],
"resourceType" => meta.fetch("additionalType", nil),
"schemaOrg" => schema_org,
"citeproc" => Bolognese::Utils::SO_TO_CP_TRANSLATIONS[schema_org] || "article-journal",
"bibtex" => Bolognese::Utils::SO_TO_BIB_TRANSLATIONS[schema_org] || "misc",
"ris" => Bolognese::Utils::SO_TO_RIS_TRANSLATIONS[schema_org] || "GEN"
}.compact
subjects = Array.wrap(meta.fetch("tags", nil)).map do |s|
{ "subject" => s }
end
{ "id" => id,
"types" => types,
"identifier" => identifier,
"doi" => validate_doi(id),
"url" => normalize_id(meta.fetch("codeRepository", nil)),
"titles" => [{ "title" => meta.fetch("title", nil) }],
"creator" => author,
"contributor" => contributor,
"publisher" => publisher,
"dates" => dates,
"publication_year" => publication_year,
"descriptions" => meta.fetch("description", nil).present? ? [{ "description" => sanitize(meta.fetch("description")), "descriptionType" => "Abstract" }] : nil,
"rights_list" => [{ "rightsUri" => meta.fetch("license", nil) }.compact],
"version_info" => meta.fetch("version", nil),
"subjects" => subjects,
"state" => state
}.merge(read_options)
end
|