Module: Bolognese::Readers::RisReader

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

Constant Summary collapse

RIS_TO_SO_TRANSLATIONS =
{
  "BLOG" => "BlogPosting",
  "GEN" => "CreativeWork",
  "CTLG" => "DataCatalog",
  "DATA" => "Dataset",
  "FIGURE" => "ImageObject",
  "THES" => "Thesis",
  "MPCT" => "Movie",
  "JOUR" => "ScholarlyArticle",
  "COMP" => "SoftwareSourceCode",
  "VIDEO" => "VideoObject",
  "ELEC" => "WebPage"
}
RIS_TO_CP_TRANSLATIONS =
{
  "JOUR" => "article-journal"
}
RIS_TO_BIB_TRANSLATIONS =
{
  "JOUR" => "article",
  "BOOK" => "book",
  "CHAP" => "inbook",
  "CPAPER" => "inproceedings",
  "GEN" => "misc",
  "THES" => "phdthesis",
  "CONF" => "proceedings",
  "RPRT" => "techreport",
  "UNPD" => "unpublished"
}

Instance Method Summary collapse

Instance Method Details

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



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

def read_ris(string: nil, **options)
  meta = ris_meta(string: string)

  ris_type = meta.fetch("TY", nil) || "GEN"
  type = RIS_TO_SO_TRANSLATIONS[ris_type] || "CreativeWork"

  doi = validate_doi(meta.fetch("DO", nil))
  author = Array.wrap(meta.fetch("AU", nil)).map { |a| { "name" => a } }
  container_title = meta.fetch("T2", nil)
  date_parts = meta.fetch("PY", nil).to_s.split("/")
  date_published = get_date_from_parts(*date_parts)
  is_part_of = if container_title.present?
                 { "type" => "Periodical",
                   "title" => container_title,
                   "issn" => meta.fetch("SN", nil) }.compact
               else
                 nil
               end
  state = doi.present? ? "findable" : "not_found"

  { "id" => normalize_doi(doi),
    "type" => type,
    "citeproc_type" => RIS_TO_CP_TRANSLATIONS[type] || "misc",
    "ris_type" => ris_type,
    "resource_type_general" => Metadata::SO_TO_DC_TRANSLATIONS[type],
    "doi" => doi,
    "b_url" => meta.fetch("UR", nil),
    "title" => meta.fetch("T1", nil),
    "author" => get_authors(author),
    "publisher" => meta.fetch("PB", nil),
    "is_part_of" => is_part_of,
    "date_created" => meta.fetch("Y1", nil),
    "date_published" => date_published,
    "date_accessed" => meta.fetch("Y2", nil),
    "description" => meta.fetch("AB", nil).present? ? { "text" => sanitize(meta.fetch("AB")) } : nil,
    "volume" => meta.fetch("VL", nil),
    "issue" => meta.fetch("IS", nil),
    "first_page" => meta.fetch("SP", nil),
    "last_page" => meta.fetch("EP", nil),
    "keywords" => meta.fetch("KW", nil),
    "language" => meta.fetch("LA", nil),
    "state" => state
  }
end

#ris_meta(string: nil) ⇒ Object



81
82
83
84
85
86
87
88
# File 'lib/bolognese/readers/ris_reader.rb', line 81

def ris_meta(string: nil)
  h = Hash.new { |h,k| h[k] = [] }
  string.split("\n").reduce(h) do |sum, line|
    k, v = line.split("-")
    h[k.strip] << v.to_s.strip
    sum
  end.map { |k,v| [k, v.unwrap] }.to_h.compact
end