Class: RelatonNist::NistBibliography

Inherits:
Object
  • Object
show all
Defined in:
lib/relaton_nist/nist_bibliography.rb

Class Method Summary collapse

Class Method Details

.get(code, year = nil, opts = {}) ⇒ String

Returns Relaton XML serialisation of reference.

Parameters:

  • code (String)

    the NIST standard Code to look up (e..g “8200”)

  • year (String) (defaults to: nil)

    the year the standard was published (optional)

  • opts (Hash) (defaults to: {})

    options

Options Hash (opts):

  • :all_parts (TrueClass, FalseClass)

    restricted to all parts if all-parts reference is required

  • :bibdata (TrueClass, FalseClass)

Returns:

  • (String)

    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
# File 'lib/relaton_nist/nist_bibliography.rb', line 31

def get(code, year = nil, opts = {}) # rubocop:disable Metrics/AbcSize, Metrics/MethodLength, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
  return fetch_ref_err(code, year, []) if code.match?(/\sEP$/)

  /^(?<code2>[^(]+)(?:\((?<date2>\w+\s(?:\d{2},\s)?\d{4})\))?\s?\(?(?:(?<=\()(?<stage>[^\)]+))?/ =~ code
  stage ||= /(?<=\.)PD-\w+(?=\.)/.match(code)&.to_s
  if code2
    code = code2.strip
    if date2
      case date2
      when /\w+\s\d{4}/
        opts[:issued_date] = Date.strptime date2, "%B %Y"
      when /\w+\s\d{2},\s\d{4}/
        opts[:updated_date] = Date.strptime date2, "%B %d, %Y"
      end
    end
    opts[:stage] = stage if stage
  end

  if year.nil?
    /^(?<code1>[^:]+):(?<year1>[^:]+)$/ =~ code
    unless code1.nil?
      code = code1
      year = year1
    end
  end

  code += "-1" if opts[:all_parts]
  nistbib_get1(code, year, opts)
end

.search(text, year = nil, opts = {}) ⇒ RelatonNist::HitCollection

Parameters:

  • text (String)

Returns:



16
17
18
19
20
# File 'lib/relaton_nist/nist_bibliography.rb', line 16

def search(text, year = nil, opts = {})
  HitCollection.search text, year, opts
rescue OpenURI::HTTPError, SocketError, OpenSSL::SSL::SSLError => e
  raise RelatonBib::RequestError, e.message
end