Class: Spree::Address

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/spree/address.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.defaultObject



24
25
26
27
# File 'app/models/spree/address.rb', line 24

def self.default
  country = Spree::Country.find(Spree::Config[:default_country_id]) rescue Spree::Country.first
  new({:country => country}, :without_protection => true)
end

Instance Method Details

#==(other_address) ⇒ Object



57
58
59
60
61
62
63
64
# File 'app/models/spree/address.rb', line 57

def ==(other_address)
  self_attrs = self.attributes
  other_attrs = other_address.respond_to?(:attributes) ? other_address.attributes : {}

  [self_attrs, other_attrs].each { |attrs| attrs.except!('id', 'created_at', 'updated_at', 'order_id') }

  self_attrs == other_attrs
end

#active_merchant_hashObject

Generates an ActiveMerchant compatible address hash



71
72
73
74
75
76
77
78
79
80
81
82
# File 'app/models/spree/address.rb', line 71

def active_merchant_hash
  {
    :name => full_name,
    :address1 => address1,
    :address2 => address2,
    :city => city,
    :state => state_text,
    :zip => zipcode,
    :country => country.try(:iso),
    :phone => phone
  }
end

#cloneObject



53
54
55
# File 'app/models/spree/address.rb', line 53

def clone
  self.class.new(self.attributes.except('id', 'updated_at', 'created_at'))
end

#empty?Boolean

Returns:

  • (Boolean)


66
67
68
# File 'app/models/spree/address.rb', line 66

def empty?
  attributes.except('id', 'created_at', 'updated_at', 'order_id', 'country_id').all? { |_, v| v.nil? }
end

#full_nameObject

Can modify an address if it’s not been used in an order (but checkouts controller has finer control) def editable?

new_record? || (shipments.empty? && checkouts.empty?)

end



34
35
36
# File 'app/models/spree/address.rb', line 34

def full_name
  "#{firstname} #{lastname}".strip
end

#phone_validateObject

Disconnected since there’s no code to display error messages yet OR matching client-side validation



17
18
19
20
21
22
# File 'app/models/spree/address.rb', line 17

def phone_validate
  return if phone.blank?
  n_digits = phone.scan(/[0-9]/).size
  valid_chars = (phone =~ /^[-+()\/\s\d]+$/)
  errors.add :phone, :invalid unless (n_digits > 5 && valid_chars)
end

#same_as?(other) ⇒ Boolean Also known as: same_as

Returns:

  • (Boolean)


42
43
44
45
# File 'app/models/spree/address.rb', line 42

def same_as?(other)
  return false if other.nil?
  attributes.except('id', 'updated_at', 'created_at') == other.attributes.except('id', 'updated_at', 'created_at')
end

#state_textObject



38
39
40
# File 'app/models/spree/address.rb', line 38

def state_text
  state.try(:abbr) || state.try(:name) || state_name 
end

#to_sObject



49
50
51
# File 'app/models/spree/address.rb', line 49

def to_s
  "#{full_name}: #{address1}"
end