Sha256: 4782a6bbbd811d0fbaab0b81c81061d57514dec90208f6cebaee37a8ac49294f

Contents?: true

Size: 1.6 KB

Versions: 9

Compression:

Stored size: 1.6 KB

Contents

require "forwardable"
require "yaml"
require "relaton_bib/version"
require "relaton_bib/deep_dup"
require "relaton_bib/localized_string"
require "relaton_bib/bibliographic_item"
require "relaton_bib/hit_collection"
require "relaton_bib/hit"
require "relaton_bib/bibxml_parser"

module RelatonBib
  class Error < StandardError; end

  class RequestError < StandardError; end

  class << self
    # @param date [String, Integer, Date] date
    # @param str [Boolean] return string or Date
    # @return [Date, String, nil] date
    def parse_date(date, str = true) # rubocop:disable Metrics/CyclomaticComplexity,Metrics/MethodLength,Metrics/PerceivedComplexity,Metrics/AbcSize
      return date if date.is_a?(Date)

      case date.to_s
      when /(?<date>\w+\s\d{4})/ # February 2012
        d = Date.strptime($~[:date], "%B %Y")
        str ? d.strftime("%Y-%m") : d
      when /(?<date>\w+\s\d{1,2},\s\d{4})/ # February 11, 2012
        d = Date.strptime($~[:date], "%B %d, %Y")
        str ? d.strftime("%Y-%m-%d") : d
      when /(?<date>\d{4}-\d{2}-\d{2})/ # 2012-02-11
        str ? $~[:date] : Date.strptime($~[:date], "%Y-%m-%d")
      when /(?<date>\d{4}-\d{2})/ # 2012-02
        str ? $~[:date] : Date.strptime($~[:date], "%Y-%m")
      when /(?<date>\d{4})/ # 2012
        str ? $~[:date] : Date.strptime($~[:date], "%Y")
      end
    end
  end

  private

  # @param array [Array]
  # @return [Array<String>, String]
  def single_element_array(array)
    if array.size > 1
      array.map { |e| e.is_a?(String) ? e : e.to_hash }
    else
      array.first.is_a?(String) ? array[0] : array.first&.to_hash
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
relaton-bib-1.9.16 lib/relaton_bib.rb
relaton-bib-1.9.15 lib/relaton_bib.rb
relaton-bib-1.9.14 lib/relaton_bib.rb
relaton-bib-1.9.13 lib/relaton_bib.rb
relaton-bib-1.9.12 lib/relaton_bib.rb
relaton-bib-1.9.11 lib/relaton_bib.rb
relaton-bib-1.9.10 lib/relaton_bib.rb
relaton-bib-1.9.9 lib/relaton_bib.rb
relaton-bib-1.9.8 lib/relaton_bib.rb