Class: Spree::ShippingMethod

Inherits:
Base
  • Object
show all
Includes:
CalculatedAdjustments, SoftDeletable
Defined in:
app/models/spree/shipping_method.rb

Overview

Represents a means of having a shipment delivered, such as FedEx or UPS.

Class Method Summary collapse

Instance Method Summary collapse

Methods included from CalculatedAdjustments

#calculator_type, #calculator_type=

Methods inherited from Base

display_includes

Methods included from Core::Permalinks

#generate_permalink, #save_permalink

Class Method Details

.available_for_address(address) ⇒ ActiveRecord::Relation

Returns shipping methods which are associated with zones matching the provided address.

Parameters:

Returns:

  • (ActiveRecord::Relation)

    shipping methods which are associated with zones matching the provided address



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

def self.available_for_address(address)
  joins(:zones).merge(Zone.for_address(address))
end

.available_in_stock_location(stock_location) ⇒ ActiveRecord::Relation

Returns shipping methods which are available with the stock location or are marked available_to_all.

Parameters:

Returns:

  • (ActiveRecord::Relation)

    shipping methods which are available with the stock location or are marked available_to_all



55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'app/models/spree/shipping_method.rb', line 55

def self.available_in_stock_location(stock_location)
  smsl_table = Spree::ShippingMethodStockLocation.arel_table

  # We are searching for either a matching entry in the stock location join
  # table or available_to_all being true.
  # We need to use an outer join otherwise a shipping method with no
  # associated stock locations will be filtered out of the results. In
  # rails 5 this will be easy using .left_join and .or, but for now we must
  # use arel to achieve this.
  arel_join =
    arel_table.join(smsl_table, Arel::Nodes::OuterJoin).
    on(arel_table[:id].eq(smsl_table[:shipping_method_id])).
    join_sources
  arel_condition =
    arel_table[:available_to_all].eq(true).or(smsl_table[:stock_location_id].eq(stock_location.id))

  joins(arel_join).where(arel_condition).distinct
end

.with_all_shipping_category_ids(shipping_category_ids) ⇒ ActiveRecord::Relation

Returns shipping methods which are associated with all of the provided shipping categories.

Parameters:

  • shipping_category_ids (Array<Integer>)

    ids of desired shipping categories

Returns:

  • (ActiveRecord::Relation)

    shipping methods which are associated with all of the provided shipping categories



38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'app/models/spree/shipping_method.rb', line 38

def self.with_all_shipping_category_ids(shipping_category_ids)
  # Some extra care is needed with the having clause to ensure we are
  # counting distinct records of the join table. Otherwise a join could
  # cause this to return incorrect results.
  join_table = Spree::ShippingMethodCategory.arel_table
  having = join_table[:id].count(true).eq(shipping_category_ids.count)
  subquery = joins(:shipping_method_categories).
    where(spree_shipping_method_categories: { shipping_category_id: shipping_category_ids }).
    group('spree_shipping_methods.id').
    having(having)

  where(id: subquery.select(:id))
end

Instance Method Details

#build_tracking_url(tracking) ⇒ Object



88
89
90
91
# File 'app/models/spree/shipping_method.rb', line 88

def build_tracking_url(tracking)
  return if tracking.blank? || tracking_url.blank?
  tracking_url.gsub(/:tracking/, ERB::Util.url_encode(tracking)) # :url_encode exists in 1.8.7 through 2.1.0
end

#include?(address) ⇒ Boolean

Returns:

  • (Boolean)


81
82
83
84
85
86
# File 'app/models/spree/shipping_method.rb', line 81

def include?(address)
  return false unless address
  zones.any? do |zone|
    zone.include?(address)
  end
end