Module: RelatonEtsi::Bibliography
Overview
Methods for search IANA standards.
Constant Summary collapse
- SOURCE =
"https://raw.githubusercontent.com/relaton/relaton-data-etsi/main/"
- INDEX_FILE =
"index-v1.yaml"
Instance Method Summary collapse
- #get(ref, _year = nil, _opts = {}) ⇒ RelatonEtsi::BibliographicItem
- #search(text) ⇒ RelatonBib::BibliographicItem
Instance Method Details
#get(ref, _year = nil, _opts = {}) ⇒ RelatonEtsi::BibliographicItem
34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/relaton_etsi/bibliography.rb', line 34 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].id}`", key: ref result end |
#search(text) ⇒ RelatonBib::BibliographicItem
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/relaton_etsi/bibliography.rb', line 11 def search(text) # rubocop:disable Metrics/MethodLength, Metrics/AbcSize index = Relaton::Index.find_or_create :etsi, url: "#{SOURCE}index-v1.zip", file: INDEX_FILE row = index.search(text).min_by { |r| r[:id] } return unless row url = "#{SOURCE}#{row[:file]}" resp = Net::HTTP.get_response URI(url) return unless resp.code == "200" hash = YAML.safe_load resp.body bib_hash = HashConverter.hash_to_bib(hash) bib_hash[:fetched] = Date.today.to_s BibliographicItem.new(**bib_hash) rescue SocketError, Timeout::Error, Errno::EINVAL, Errno::ECONNRESET, EOFError, Net::HTTPBadResponse, Net::HTTPHeaderSyntaxError, Net::ProtocolError, Errno::ETIMEDOUT => e raise RelatonBib::RequestError, e. end |