Module: Monetize

Defined in:
lib/monetize.rb,
lib/monetize/version.rb

Constant Summary collapse

VERSION =
"0.1.3"

Class Method Summary collapse

Class Method Details

.extract_cents(input, currency = Money.default_currency) ⇒ Object



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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'lib/monetize.rb', line 62

def self.extract_cents(input, currency = Money.default_currency)
  num = input.gsub(/[^\d.,'-]/, '')

  negative = num =~ /^-|-$/ ? true : false

  decimal_char = currency.decimal_mark

  num = num.sub(/^-|-$/, '') if negative

  if num.include?('-')
    raise ArgumentError, "Invalid currency amount (hyphen)"
  end

  num.chop! if num.match(/[\.|,]$/)

  used_delimiters = num.scan(/[^\d]/)

  case used_delimiters.uniq.length
  when 0
    major, minor = num, 0
  when 2
    thousands_separator, decimal_mark = used_delimiters.uniq

    major, minor = num.gsub(thousands_separator, '').split(decimal_mark)
    min = 0 unless min
  when 1
    decimal_mark = used_delimiters.first

    if decimal_char == decimal_mark
      major, minor = num.split(decimal_char)
    else
      if num.scan(decimal_mark).length > 1 # multiple matches; treat as decimal_mark
        major, minor = num.gsub(decimal_mark, ''), 0
      else
        possible_major, possible_minor = num.split(decimal_mark)
        possible_major ||= "0"
        possible_minor ||= "00"

        if possible_minor.length != 3 # thousands_separator
          major, minor = possible_major, possible_minor
        else
          if possible_major.length > 3
            major, minor = possible_major, possible_minor
          else
            if decimal_mark == '.'
              major, minor = possible_major, possible_minor
            else
              major, minor = "#{possible_major}#{possible_minor}", 0
            end
          end
        end
      end
    end
  else
    raise ArgumentError, "Invalid currency amount"
  end

  cents = major.to_i * currency.subunit_to_unit
  minor = minor.to_s
  minor = if minor.size < currency.decimal_places
            (minor + ("0" * currency.decimal_places))[0,currency.decimal_places].to_i
          elsif minor.size > currency.decimal_places
            if minor[currency.decimal_places,1].to_i >= 5
              minor[0,currency.decimal_places].to_i+1
            else
              minor[0,currency.decimal_places].to_i
            end
          else
            minor.to_i
          end

  cents += minor

  negative ? cents * -1 : cents
end

.from_bigdecimal(value, currency = Money.default_currency) ⇒ Object



43
44
45
46
47
48
# File 'lib/monetize.rb', line 43

def self.from_bigdecimal(value, currency = Money.default_currency)
  currency = Money::Currency.wrap(currency)
  value = value * currency.subunit_to_unit
  value = value.round unless Money.infinite_precision
  Money.new(value, currency)
end

.from_fixnum(value, currency = Money.default_currency) ⇒ Object



32
33
34
35
36
# File 'lib/monetize.rb', line 32

def self.from_fixnum(value, currency = Money.default_currency)
  currency = Money::Currency.wrap(currency)
  value = value * currency.subunit_to_unit
  Money.new(value, currency)
end

.from_float(value, currency = Money.default_currency) ⇒ Object



38
39
40
41
# File 'lib/monetize.rb', line 38

def self.from_float(value, currency = Money.default_currency)
  value = BigDecimal.new(value.to_s)
  from_bigdecimal(value, currency)
end

.from_numeric(value, currency = Money.default_currency) ⇒ Object



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

def self.from_numeric(value, currency = Money.default_currency)
  case value
  when Fixnum
    from_fixnum(value, currency)
  when Numeric
    value = BigDecimal.new(value.to_s)
    from_bigdecimal(value, currency)
  else
    raise ArgumentError, "'value' should be a type of Numeric"
  end
end

.from_string(value, currency = Money.default_currency) ⇒ Object



27
28
29
30
# File 'lib/monetize.rb', line 27

def self.from_string(value, currency = Money.default_currency)
  value = BigDecimal.new(value.to_s)
  from_bigdecimal(value, currency)
end

.parse(input, currency = Money.default_currency) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/monetize.rb', line 7

def self.parse(input, currency = Money.default_currency)
  input = input.to_s.strip

  computed_currency = if Money.assume_from_symbol && input =~ /^(\$|€|£)/
                        case input
                        when /^\$/ then "USD"
                        when /^€/ then "EUR"
                        when /^£/ then "GBP"
                        end
                      else
                        input[/[A-Z]{2,3}/]
                      end

  currency = computed_currency || currency || Money.default_currency
  currency = Money::Currency.wrap(currency)

  fractional = extract_cents(input, currency)
  Money.new(fractional, currency)
end