Module: MoneyRails::ActiveRecord::Monetizable::ClassMethods

Defined in:
lib/money-rails/active_record/monetizable.rb

Instance Method Summary collapse

Instance Method Details

#monetize(*fields) ⇒ Object



22
23
24
25
26
27
28
29
30
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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
# File 'lib/money-rails/active_record/monetizable.rb', line 22

def monetize(*fields)
  options = fields.extract_options!

  fields.each do |field|
    # Stringify model field name
    subunit_name = field.to_s

    if options[:field_currency] || options[:target_name] || options[:model_currency]
      ActiveSupport::Deprecation.warn("You are using the old " \
                                      "argument keys of the monetize command! Instead use :as, " \
                                      ":with_currency or :with_model_currency")
    end

    # Optional accessor to be run on an instance to detect currency
    instance_currency_name = options[:with_model_currency] ||
      options[:model_currency] ||
      MoneyRails::Configuration.currency_column[:column_name]

    instance_currency_name = instance_currency_name &&
      instance_currency_name.to_s

    # This attribute allows per column currency values
    # Overrides row and default currency
    field_currency_name = options[:with_currency] ||
      options[:field_currency] || nil

    name = options[:as] || options[:target_name] || nil

    # Form target name for the money backed ActiveModel field:
    # if a target name is provided then use it
    # if there is a "{column.postfix}" suffix then just remove it to create the target name
    # if none of the previous is the case then use a default suffix
    if name
      name = name.to_s
    elsif subunit_name =~ /#{MoneyRails::Configuration.amount_column[:postfix]}$/
      name = subunit_name.sub(/#{MoneyRails::Configuration.amount_column[:postfix]}$/, "")
    else
      # FIXME: provide a better default
      name = [subunit_name, "money"].join("_")
    end

    # Create a reverse mapping of the monetized attributes
    track_monetized_attribute name, subunit_name

    # Include numericality validations if needed.
    # There are two validation options:
    #
    # 1. Subunit field validation (e.g. cents should be > 100)
    # 2. Money field validation (e.g. euros should be > 10)
    #
    # All the options which are available for Rails numericality
    # validation, are also available for both types.
    # E.g.
    #   monetize :price_in_a_range_cents, :allow_nil => true,
    #     :subunit_numericality => {
    #       :greater_than_or_equal_to => 0,
    #       :less_than_or_equal_to => 10000,
    #     },
    #     :numericality => {
    #       :greater_than_or_equal_to => 0,
    #       :less_than_or_equal_to => 100,
    #       :message => "Must be greater than zero and less than $100"
    #     }
    #
    # To disable validation entirely, use :disable_validation, E.g:
    #   monetize :price_in_a_range_cents, :disable_validation => true
    if validation_enabled = MoneyRails.include_validations && !options[:disable_validation]

      # This is a validation for the subunit
      if subunit_numericality = options.fetch(:subunit_numericality, true)
        validates subunit_name, {
          :allow_nil => options[:allow_nil],
          :numericality => subunit_numericality
        }
      end

      # Allow only Money objects or Numeric values!
      if numericality = options.fetch(:numericality, true)
        validates name.to_sym, {
          :allow_nil => options[:allow_nil],
          'money_rails/active_model/money' => numericality
        }
      end
    end


    define_method name do |*args|

      # Get the cents
      amount = public_send(subunit_name, *args)

      # Get the currency object
      attr_currency = public_send("currency_for_#{name}")

      # Get the cached value
      memoized = instance_variable_get("@#{name}")

      # Dont create a new Money instance if the values haven't been changed.
      return memoized if memoized && memoized.cents == amount &&
        memoized.currency == attr_currency

      # If amount is NOT nil (or empty string) load the amount in a Money
      amount = Money.new(amount, attr_currency) unless amount.blank?

      # Cache and return the value (it may be nil)
      instance_variable_set "@#{name}", amount
    end

    define_method "#{name}=" do |value|

      # Lets keep the before_type_cast value
      instance_variable_set "@#{name}_money_before_type_cast", value

      # Use nil or get a Money object
      if options[:allow_nil] && value.blank?
        money = nil
      else
        if value.is_a?(Money)
          money = value
        else
          begin
            money = value.to_money(public_send("currency_for_#{name}"))
          rescue NoMethodError
            return nil
          rescue ArgumentError
            raise if MoneyRails.raise_error_on_money_parsing
            return nil
          rescue Money::Currency::UnknownCurrency
            raise if MoneyRails.raise_error_on_money_parsing
            return nil
          end
        end
      end

      # Update cents
      if !validation_enabled
        # We haven't defined our own subunit writer, so we can invoke
        # the regular writer, which works with store_accessors
        public_send("#{subunit_name}=", money.try(:cents))
      elsif self.class.respond_to?(:attribute_aliases) &&
          self.class.attribute_aliases.key?(subunit_name)
        # If the attribute is aliased, make sure we write to the original
        # attribute name or an error will be raised.
        # (Note: 'attribute_aliases' doesn't exist in Rails 3.x, so we
        # can't tell if the attribute was aliased.)
        original_name = self.class.attribute_aliases[subunit_name.to_s]
        write_attribute(original_name, money.try(:cents))
      else
        write_attribute(subunit_name, money.try(:cents))
      end

      money_currency = money.try(:currency)

      # Update currency iso value if there is an instance currency attribute
      if instance_currency_name.present? && respond_to?("#{instance_currency_name}=")
        public_send("#{instance_currency_name}=", money_currency.try(:iso_code))
      else
        current_currency = public_send("currency_for_#{name}")
        if money_currency && current_currency != money_currency.id
          raise ReadOnlyCurrencyException.new("Can't change readonly currency '#{current_currency}' to '#{money_currency}' for field '#{name}'")
        end
      end

      # Save and return the new Money object
      instance_variable_set "@#{name}", money
    end

    if validation_enabled
      # Ensure that the before_type_cast value is cleared when setting
      # the subunit value directly
      define_method "#{subunit_name}=" do |value|
        instance_variable_set "@#{name}_money_before_type_cast", nil
        write_attribute(subunit_name, value)
      end
    end

    define_method "currency_for_#{name}" do
      instance_currency_name_with_postfix = "#{name}#{MoneyRails::Configuration.currency_column[:postfix]}"

      if instance_currency_name.present? && respond_to?(instance_currency_name) &&
          Money::Currency.find(public_send(instance_currency_name))

        Money::Currency.find(public_send(instance_currency_name))
      elsif field_currency_name.respond_to?(:call)
        Money::Currency.find(field_currency_name.call(self))
      elsif field_currency_name
        Money::Currency.find(field_currency_name)
      elsif respond_to?(instance_currency_name_with_postfix) &&
          Money::Currency.find(public_send(instance_currency_name_with_postfix))

        Money::Currency.find(public_send(instance_currency_name_with_postfix))
      elsif self.class.respond_to?(:currency)
        self.class.currency
      else
        Money.default_currency
      end
    end

    attr_reader "#{name}_money_before_type_cast"

    # Hook to ensure the reset of before_type_cast attr
    # TODO: think of a better way to avoid this
    after_save do
      instance_variable_set "@#{name}_money_before_type_cast", nil
    end
  end
end

#monetized_attributesObject



12
13
14
15
16
17
18
19
20
# File 'lib/money-rails/active_record/monetizable.rb', line 12

def monetized_attributes
  monetized_attributes = @monetized_attributes || {}

  if superclass.respond_to?(:monetized_attributes)
    monetized_attributes.merge(superclass.monetized_attributes)
  else
    monetized_attributes
  end
end

#register_currency(currency_name) ⇒ Object

Raises:

  • (ArgumentError)


230
231
232
233
234
235
236
237
238
239
240
241
242
# File 'lib/money-rails/active_record/monetizable.rb', line 230

def register_currency(currency_name)
  # Lookup the given currency_name and raise exception if
  # no currency is found
  currency_object = Money::Currency.find currency_name
  raise(ArgumentError, "Can't find #{currency_name} currency code") unless currency_object

  class_eval do
    @currency = currency_object
    class << self
      attr_reader :currency
    end
  end
end