Class: RelatonIso::IsoBibliography
- Inherits:
-
Object
- Object
- RelatonIso::IsoBibliography
- Defined in:
- lib/relaton_iso/iso_bibliography.rb
Overview
Class methods for search ISO standards.
Class Method Summary collapse
- .filter_hits_by_year(hit_collection, year) ⇒ RelatonIso::HitCollection
-
.get(ref, year = nil, opts = {}) ⇒ RelatonIsoBib::IsoBibliographicItem
Relaton XML serialisation of reference.
-
.matches_base?(query_pubid, pubid, any_types_stages: false) ⇒ <Type>
Matches base of query_pubid and pubid.
- .matches_parts?(query_pubid, pubid, all_parts: false) ⇒ Boolean
- .search(text) ⇒ RelatonIso::HitCollection
Class Method Details
.filter_hits_by_year(hit_collection, year) ⇒ RelatonIso::HitCollection
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
# File 'lib/relaton_iso/iso_bibliography.rb', line 124 def filter_hits_by_year(hit_collection, year) # rubocop:disable Metrics/MethodLength,Metrics/AbcSize,Metrics/CyclomaticComplexity,Metrics/PerceivedComplexity missed_years = [] return { hits: hit_collection, missed_years: missed_years } if year.nil? # filter by year hits = hit_collection.select do |hit| if (hit.pubid.base.nil? && hit.pubid.year.to_s == year.to_s) || (!hit.pubid.base.nil? && hit.pubid.base.year.to_s == year.to_s) || (!hit.pubid.base.nil? && hit.pubid.year.to_s == year.to_s) true elsif hit.pubid.year.nil? && hit.hit[:year].to_s == year hit.pubid.year = year true else missed_year = (hit.pubid.year || hit.hit[:year]).to_s if missed_year && !missed_year.empty? && !missed_years.include?(missed_year) missed_years << missed_year end false end end { hits: hits, missed_years: missed_years } end |
.get(ref, year = nil, opts = {}) ⇒ RelatonIsoBib::IsoBibliographicItem
Returns Relaton XML serialisation of reference.
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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/relaton_iso/iso_bibliography.rb', line 31 def get(ref, year = nil, opts = {}) # rubocop:disable Metrics/CyclomaticComplexity,Metrics/MethodLength,Metrics/PerceivedComplexity,Metrics/AbcSize code = ref.gsub(/\u2013/, "-") # parse "all parts" request code.sub! " (all parts)", "" opts[:all_parts] ||= $~ && opts[:all_parts].nil? query_pubid = Pubid::Iso::Identifier.parse(code) query_pubid.year = year if year resp = isobib_search_filter(query_pubid, opts) # Try with ISO/IEC prefix if ISO not found if resp[:hits].empty? && query_pubid.copublisher.nil? && query_pubid.publisher == "ISO" resp_isoiec = retry_isoiec_prefix(query_pubid, opts) resp = resp_isoiec unless resp_isoiec.nil? end # return only first one if not all_parts ret = if !opts[:all_parts] || resp[:hits].size == 1 resp[:hits].any? && resp[:hits].first.fetch(opts[:lang]) else resp[:hits].to_all_parts(opts[:lang]) end return fetch_ref_err(query_pubid) unless ret # puts "xxxxx #{ret.docidentifier.first.id.inspect}" response_docid = ret.docidentifier.first.id.sub(" (all parts)", "") response_pubid = Pubid::Iso::Identifier.parse(response_docid) # puts "xxxxx query_pubid(#{query_pubid}) response_pubid(#{response_pubid})" if query_pubid.to_s == response_pubid.to_s warn "[relaton-iso] (\"#{query_pubid}\") Found exact match." elsif matches_base?(query_pubid, response_pubid) warn "[relaton-iso] (\"#{query_pubid}\") " \ "Found (\"#{response_pubid}\")." elsif matches_base?(query_pubid, response_pubid, any_types_stages: true) warn "[relaton-iso] (\"#{query_pubid}\") TIP: " \ "Found with different type/stage, " \ "please amend to (\"#{response_pubid}\")." else # when there are all parts warn "[relaton-iso] (\"#{query_pubid}\") Found (\"#{response_pubid}\")." end get_all = ( (query_pubid.year && opts[:keep_year].nil?) || opts[:keep_year] || opts[:all_parts] ) return ret if get_all ret.to_most_recent_reference rescue Pubid::Core::Errors::ParseError warn "[relaton-iso] (\"#{code}\") is not recognized as a standards identifier." end |
.matches_base?(query_pubid, pubid, any_types_stages: false) ⇒ <Type>
Matches base of query_pubid and pubid.
111 112 113 114 115 116 117 118 119 |
# File 'lib/relaton_iso/iso_bibliography.rb', line 111 def matches_base?(query_pubid, pubid, any_types_stages: false) # rubocop:disable Metrics/AbcSize,Metrics/CyclomaticComplexity,Metrics?PerceivedComplexity return unless pubid.respond_to?(:publisher) query_pubid.publisher == pubid.publisher && query_pubid.number == pubid.number && query_pubid.copublisher == pubid.copublisher && ((any_types_stages && query_pubid.stage.nil?) || query_pubid.stage == pubid.stage) && ((any_types_stages && query_pubid.type.nil?) || query_pubid.type == pubid.type) end |
.matches_parts?(query_pubid, pubid, all_parts: false) ⇒ Boolean
95 96 97 98 99 100 |
# File 'lib/relaton_iso/iso_bibliography.rb', line 95 def matches_parts?(query_pubid, pubid, all_parts: false) # match only with documents with part number return !pubid.part.nil? if all_parts query_pubid.part == pubid.part end |
.search(text) ⇒ RelatonIso::HitCollection
14 15 16 17 18 19 20 21 |
# File 'lib/relaton_iso/iso_bibliography.rb', line 14 def search(text) HitCollection.new text.gsub(/\u2013/, "-") rescue SocketError, Timeout::Error, Errno::EINVAL, Errno::ECONNRESET, EOFError, Net::HTTPBadResponse, Net::HTTPHeaderSyntaxError, Net::ProtocolError, OpenSSL::SSL::SSLError, Errno::ETIMEDOUT, Algolia::AlgoliaUnreachableHostError => e raise RelatonBib::RequestError, e. end |