Class: Spree::Zone

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

page

Methods included from Preferences::Preferable

#clear_preferences, #default_preferences, #defined_preferences, #get_preference, #has_preference!, #has_preference?, #preference_default, #preference_type, #set_preference

Class Method Details

.default_taxObject



20
21
22
# File 'app/models/spree/zone.rb', line 20

def self.default_tax
  where(default_tax: true).first
end

.match(address) ⇒ Object

Returns the matching zone with the highest priority zone type (State, Country, Zone.) Returns nil in the case of no matches.



49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'app/models/spree/zone.rb', line 49

def self.match(address)
  return unless address and matches = self.includes(:zone_members).
    order('spree_zones.zone_members_count', 'spree_zones.created_at').
    where("(spree_zone_members.zoneable_type = 'Spree::Country' AND spree_zone_members.zoneable_id = ?) OR (spree_zone_members.zoneable_type = 'Spree::State' AND spree_zone_members.zoneable_id = ?)", address.country_id, address.state_id).
    references(:zones)

  ['state', 'country'].each do |zone_kind|
    if match = matches.detect { |zone| zone_kind == zone.kind }
      return match
    end
  end
  matches.first
end

.potential_matching_zones(zone) ⇒ Object



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'app/models/spree/zone.rb', line 24

def self.potential_matching_zones(zone)
  if zone.country?
    # Match zones of the same kind with simialr countries
    joins(countries: :zones).
      where('zone_members_spree_countries_join.zone_id = ? OR ' +
            'spree_zones.default_tax = ?', zone.id, true).
      uniq
  else
    # Match zones of the same kind with similar states in AND match zones
    # that have the states countries in
    joins(:zone_members).where(
      "(spree_zone_members.zoneable_type = 'Spree::State' AND
        spree_zone_members.zoneable_id IN (?))
       OR (spree_zone_members.zoneable_type = 'Spree::Country' AND
        spree_zone_members.zoneable_id IN (?))
       OR default_tax = ?",
      zone.state_ids,
      zone.states.pluck(:country_id),
      true
    ).uniq
  end
end

Instance Method Details

#<=>(other) ⇒ Object



105
106
107
# File 'app/models/spree/zone.rb', line 105

def <=>(other)
  name <=> other.name
end

#contains?(target) ⇒ Boolean

Indicates whether the specified zone falls entirely within the zone performing the check.

Returns:

  • (Boolean)


141
142
143
144
145
146
147
148
149
150
151
# File 'app/models/spree/zone.rb', line 141

def contains?(target)
  return false if kind == 'state' && target.kind == 'country'
  return false if zone_members.empty? || target.zone_members.empty?

  if kind == target.kind
    return false if (target.countries.pluck(:id) - countries.pluck(:id)).present?
  else
    return false if (target.states.pluck(:country_id) - countries.pluck(:id)).present?
  end
  true
end

#country?Boolean

Returns:

  • (Boolean)


73
74
75
# File 'app/models/spree/zone.rb', line 73

def country?
  kind == 'country'
end

#country_idsObject



115
116
117
118
119
120
121
# File 'app/models/spree/zone.rb', line 115

def country_ids
  if kind == 'country'
    members.pluck(:zoneable_id)
  else
    []
  end
end

#country_ids=(ids) ⇒ Object



131
132
133
# File 'app/models/spree/zone.rb', line 131

def country_ids=(ids)
  set_zone_members(ids, 'Spree::Country')
end

#country_listObject

convenience method for returning the countries contained within a zone



97
98
99
100
101
102
103
# File 'app/models/spree/zone.rb', line 97

def country_list
  @countries ||= case kind
                 when 'country' then zoneables
                 when 'state' then zoneables.collect(&:country)
                 else []
                 end.flatten.compact.uniq
end

#include?(address) ⇒ Boolean

Returns:

  • (Boolean)


81
82
83
84
85
86
87
88
89
90
91
92
93
94
# File 'app/models/spree/zone.rb', line 81

def include?(address)
  return false unless address

  members.any? do |zone_member|
    case zone_member.zoneable_type
    when 'Spree::Country'
      zone_member.zoneable_id == address.country_id
    when 'Spree::State'
      zone_member.zoneable_id == address.state_id
    else
      false
    end
  end
end

#kindObject



63
64
65
66
67
68
69
70
71
# File 'app/models/spree/zone.rb', line 63

def kind
  if kind?
    super
  else
    not_nil_scope = members.where.not(zoneable_type: nil)
    zone_type = not_nil_scope.order('created_at ASC').pluck(:zoneable_type).last
    zone_type.demodulize.underscore if zone_type
  end
end

#state?Boolean

Returns:

  • (Boolean)


77
78
79
# File 'app/models/spree/zone.rb', line 77

def state?
  kind == 'state'
end

#state_idsObject



123
124
125
126
127
128
129
# File 'app/models/spree/zone.rb', line 123

def state_ids
  if kind == 'state'
    members.pluck(:zoneable_id)
  else
    []
  end
end

#state_ids=(ids) ⇒ Object



135
136
137
# File 'app/models/spree/zone.rb', line 135

def state_ids=(ids)
  set_zone_members(ids, 'Spree::State')
end

#zoneablesObject

All zoneables belonging to the zone members. Will be a collection of either countries or states depending on the zone type.



111
112
113
# File 'app/models/spree/zone.rb', line 111

def zoneables
  members.includes(:zoneable).collect(&:zoneable)
end