Module: Relaton::ThreeGpp::Bibliography

Extended by:
Bibliography
Included in:
Bibliography
Defined in:
lib/relaton/3gpp/bibliography.rb

Overview

Methods for search IANA standards.

Constant Summary collapse

SOURCE =
"https://raw.githubusercontent.com/relaton/relaton-data-3gpp/refs/heads/data-v2/"

Instance Method Summary collapse

Instance Method Details

#get(ref, _year = nil, _opts = {}) ⇒ RelatonBib::BibliographicItem

Parameters:

  • ref (String)

    the W3C standard Code to look up

  • year (String, NilClass)

    not used

  • opts (Hash)

    options

Returns:

  • (RelatonBib::BibliographicItem)


35
36
37
38
39
40
41
42
43
44
45
# File 'lib/relaton/3gpp/bibliography.rb', line 35

def get(ref, _year = nil, _opts = {})
  Util.info "Fetching from Relaton repository ...", key: ref
  result = search(ref)
  unless result
    Util.info "Not found.", key: ref
    return
  end

  Util.info "Found: `#{result.docidentifier[0].content}`", key: ref
  result
end

#search(text) ⇒ RelatonBib::BibliographicItem

Parameters:

  • text (String)

Returns:

  • (RelatonBib::BibliographicItem)


12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/relaton/3gpp/bibliography.rb', line 12

def search(text) # rubocop:disable Metrics/MethodLength, Metrics/AbcSize
  index = Relaton::Index.find_or_create "3GPP", url: "#{SOURCE}#{INDEXFILE}.zip", file: "#{INDEXFILE}.yaml"
  row = index.search(text.sub(/^3GPP\s/, "")).min_by { |r| r[:id] }
  return unless row

  # file = text.sub(/^3GPP\s/, "").gsub(/[\s,:\/]/, "_").squeeze("_").upcase
  url = "#{SOURCE}#{row[:file]}"
  resp = Net::HTTP.get_response URI(url)
  return unless resp.code == "200"

  item = Item.from_yaml(resp.body)
  item.fetched = Date.today.to_s
  item
rescue SocketError, Timeout::Error, Errno::EINVAL, Errno::ECONNRESET,
      EOFError, Net::HTTPBadResponse, Net::HTTPHeaderSyntaxError,
      Net::ProtocolError, Errno::ETIMEDOUT => e
  raise Relaton::RequestError, e.message
end