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
|
# File 'lib/briard/writers/codemeta_writer.rb', line 6
def codemeta
return nil unless valid? || show_errors
hsh = {
'@context' => id.present? ? 'https://raw.githubusercontent.com/codemeta/codemeta/master/codemeta.jsonld' : nil,
'@type' => types.present? ? types['schemaOrg'] : nil,
'@id' => normalize_doi(doi),
'identifier' => to_schema_org_identifiers(identifiers),
'codeRepository' => url,
'name' => parse_attributes(titles, content: 'title', first: true),
'authors' => creators,
'description' => parse_attributes(descriptions, content: 'description', first: true),
'version' => version_info,
'tags' => if subjects.present?
Array.wrap(subjects).map do |k|
parse_attributes(k, content: 'subject', first: true)
end
end,
'datePublished' => get_date(dates, 'Issued') || publication_year,
'dateModified' => get_date(dates, 'Updated'),
'publisher' => publisher,
'license' => Array.wrap(rights_list).map { |l| l['rightsUri'] }.compact.unwrap
}.compact
JSON.pretty_generate hsh.presence
end
|