2004-11-23 20:04:44 -05:00
|
|
|
class Customer < ActiveRecord::Base
|
2006-05-21 13:32:37 -04:00
|
|
|
composed_of :address, :mapping => [ %w(address_street street), %w(address_city city), %w(address_country country) ], :allow_nil => true
|
2007-10-23 13:39:35 -04:00
|
|
|
composed_of(:balance, :class_name => "Money", :mapping => %w(balance amount)) { |balance| balance.to_money }
|
2006-05-21 13:32:37 -04:00
|
|
|
composed_of :gps_location, :allow_nil => true
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
class Address
|
|
|
|
attr_reader :street, :city, :country
|
|
|
|
|
|
|
|
def initialize(street, city, country)
|
|
|
|
@street, @city, @country = street, city, country
|
|
|
|
end
|
2008-01-18 02:27:03 -05:00
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
def close_to?(other_address)
|
|
|
|
city == other_address.city && country == other_address.country
|
|
|
|
end
|
2006-04-06 12:16:29 -04:00
|
|
|
|
|
|
|
def ==(other)
|
|
|
|
other.is_a?(self.class) && other.street == street && other.city == city && other.country == country
|
2008-01-18 02:27:03 -05:00
|
|
|
end
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
class Money
|
|
|
|
attr_reader :amount, :currency
|
2008-01-18 02:27:03 -05:00
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
EXCHANGE_RATES = { "USD_TO_DKK" => 6, "DKK_TO_USD" => 0.6 }
|
2008-01-18 02:27:03 -05:00
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
def initialize(amount, currency = "USD")
|
|
|
|
@amount, @currency = amount, currency
|
|
|
|
end
|
2008-01-18 02:27:03 -05:00
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
def exchange_to(other_currency)
|
|
|
|
Money.new((amount * EXCHANGE_RATES["#{currency}_TO_#{other_currency}"]).floor, other_currency)
|
|
|
|
end
|
2005-03-01 18:52:36 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
class GpsLocation
|
|
|
|
attr_reader :gps_location
|
2008-01-18 02:27:03 -05:00
|
|
|
|
2005-03-01 18:52:36 -05:00
|
|
|
def initialize(gps_location)
|
|
|
|
@gps_location = gps_location
|
|
|
|
end
|
2008-01-18 02:27:03 -05:00
|
|
|
|
2005-03-01 18:52:36 -05:00
|
|
|
def latitude
|
|
|
|
gps_location.split("x").first
|
|
|
|
end
|
2008-01-18 02:27:03 -05:00
|
|
|
|
2005-03-01 18:52:36 -05:00
|
|
|
def longitude
|
|
|
|
gps_location.split("x").last
|
|
|
|
end
|
2005-12-07 23:46:57 -05:00
|
|
|
|
|
|
|
def ==(other)
|
|
|
|
self.latitude == other.latitude && self.longitude == other.longitude
|
|
|
|
end
|
2007-10-23 13:39:35 -04:00
|
|
|
end
|