Class: IsoCountryCodes

Inherits:
Object
  • Object
show all
Defined in:
lib/iso_country_codes/continent.rb,
lib/iso_country_codes/code.rb,
lib/iso_country_codes/calling.rb,
lib/iso_country_codes/iso_4217.rb,
lib/iso_country_codes/iso_3166_1.rb,
lib/iso_country_codes/iso_13616_1.rb,
lib/iso_country_codes/iso_country_codes.rb

Overview

:nodoc:

Defined Under Namespace

Classes: Code, UnknownCodeError

Constant Summary collapse

DEFAULT_FALLBACK =
lambda { |error| raise UnknownCodeError, error }

Class Method Summary collapse

Class Method Details

.allObject



10
11
12
# File 'lib/iso_country_codes/iso_country_codes.rb', line 10

def all
  Code.all
end

.find(code, &fallback) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/iso_country_codes/iso_country_codes.rb', line 16

def find(code, &fallback)
  fallback ||= DEFAULT_FALLBACK
  code     = code.to_s.upcase
  instance = nil

  if code.match(/^\d{2}$/)
    code = "0#{code}" # Make numeric codes three digits
  end

  if code.match(/^\d{3}$/)
    instance = all.find { |c| c.numeric == code }
  elsif code.match(/^[A-Z]{2}$/)
    instance = all.find { |c| c.alpha2 == code }
  elsif code.match(/^[A-Z]{3}$/)
    instance = all.find { |c| c.alpha3 == code }
  end

  return fallback.call "No ISO 3166-1 code could be found for '#{code}'." if instance.nil?

  instance
end

.for_select(*args) ⇒ Object



6
7
8
# File 'lib/iso_country_codes/iso_country_codes.rb', line 6

def for_select(*args)
  Code.for_select(*args)
end

.search_by_calling(code, &fallback) ⇒ Object

Alias of search_by_calling_code



62
63
64
# File 'lib/iso_country_codes/iso_country_codes.rb', line 62

def search_by_calling(code, &fallback) # Alias of search_by_calling_code
  search_by_calling_code code, &fallback
end

.search_by_calling_code(code, &fallback) ⇒ Object



51
52
53
54
55
56
57
58
59
60
# File 'lib/iso_country_codes/iso_country_codes.rb', line 51

def search_by_calling_code(code, &fallback)
  fallback ||= DEFAULT_FALLBACK

  code = "+#{code.to_i}" # Normalize code
  instances = all.select { |c| c.calling == code }

  return fallback.call "No ISO 3166-1 codes could be found searching with calling code '#{code}'." if instances.empty?

  instances
end

.search_by_currency(code, &fallback) ⇒ Object



66
67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'lib/iso_country_codes/iso_country_codes.rb', line 66

def search_by_currency(code, &fallback)
  fallback ||= DEFAULT_FALLBACK

  code = code.to_s.upcase
  instances = all.select { |c|
    c.currencies.select { |currency|
      currency != code
    }.empty?
  }

  return fallback.call "No ISO 3166-1 codes could be found searching with currency '#{code}'." if instances.empty?

  instances
end

.search_by_iban(code, &fallback) ⇒ Object



81
82
83
84
85
86
87
88
89
90
# File 'lib/iso_country_codes/iso_country_codes.rb', line 81

def search_by_iban(code, &fallback)
  fallback ||= DEFAULT_FALLBACK

  code = code.to_s.upcase
  instances = all.select { |c| c.iban == code }

  return fallback.call "No ISO 3166-1 codes could be found searching with IBAN '#{code}'." if instances.empty?

  instances
end

.search_by_name(str, &fallback) ⇒ Object



38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/iso_country_codes/iso_country_codes.rb', line 38

def search_by_name(str, &fallback)
  fallback ||= DEFAULT_FALLBACK

  instances = all.select { |c| c.name.to_s.upcase == str.to_s.upcase }
  instances = all.select { |c| c.name.to_s.match(/^#{Regexp.escape(str)}/i) } if instances.empty?
  instances = all.select { |c| c.name.to_s.match(/#{Regexp.escape(str)}/i) } if instances.empty?
  instances = all.select { |c| word_set(c.name) == word_set(str) } if instances.empty?

  return fallback.call "No ISO 3166-1 codes could be found searching with name '#{str}'." if instances.empty?

  instances
end