Sha256: 1523c3683fb96522056c83f04cbd30069feec0375f3d248d4319654c6f5b68a9

Contents?: true

Size: 1.85 KB

Versions: 5

Compression:

Stored size: 1.85 KB

Contents

module DiscoApp
  module Shop
    extend ActiveSupport::Concern

    # Include the base ShopifyApp functionality.
    include ShopifyApp::Shop

    included do
      # Define possible installation statuses as an enum.
      enum status: [:never_installed, :awaiting_install, :installing, :installed, :awaiting_uninstall, :uninstalling, :uninstalled]

      # Define possible charge statuses as an enum.
      enum charge_status: [:charge_none, :charge_pending, :charge_accepted, :charge_declined, :charge_active, :charge_cancelled, :charge_waived]

      # Define some useful scopes.
      scope :status, -> (status) { where status: status }
      scope :installed, -> { where status: ::Shop.statuses[:installed] }
      scope :has_active_shopify_plan, -> { where.not(plan_name: [:cancelled, :frozen]) }

      # Alias 'with_shopify_session' as 'temp', as per our existing conventions.
      alias_method :temp, :with_shopify_session
    end

    # Return a hash of attributes that should be used to create a new charge for this shop.
    # This method can be overridden by the inheriting Shop class in order to provide charges
    # customised to a particular shop. Otherwise, the default settings configured in application.rb
    # will be used.
    def new_charge_attributes
      {
          type: Rails.configuration.x.shopify_charges_default_type,
          name: Rails.configuration.x.shopify_app_name,
          price: Rails.configuration.x.shopify_charges_default_price,
          trial_days: Rails.configuration.x.shopify_charges_default_trial_days,
      }
    end

    # Update this Shop's charge_status attribute based on the given Shopify charge object.
    def update_charge_status(shopify_charge)
      status_update_method_name = "charge_#{shopify_charge.status}!"
      self.public_send(status_update_method_name) if self.respond_to? status_update_method_name
    end

  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
disco_app-0.5.2 app/models/disco_app/shop.rb
disco_app-0.5.3 app/models/disco_app/shop.rb
disco_app-0.5.4 app/models/disco_app/shop.rb
disco_app-0.5.5 app/models/disco_app/shop.rb
disco_app-0.5.6 app/models/disco_app/shop.rb