Sha256: c4ca25474a2c3eafc2faefebbd3f0eb1ef8aadb925ecbb3e2b3c2829127d1234

Contents?: true

Size: 1.61 KB

Versions: 4

Compression:

Stored size: 1.61 KB

Contents

module DiscoApp::Concerns::Synchronises

  extend ActiveSupport::Concern

  class_methods do
    # Define the number of resources per page to fetch.
    SYNCHRONISES_PAGE_LIMIT = 250

    def should_synchronise?(_shop, _data)
      true
    end

    def synchronise_by(_shop, data)
      { id: data[:id] }
    end

    def synchronise(shop, data)
      data = JSON.parse(data.to_json) if data.is_a?(ShopifyAPI::Base)
      data = data.with_indifferent_access

      return unless should_synchronise?(shop, data)

      begin
        instance = find_or_create_by!(synchronise_by(shop, data)) do |new_instance|
          new_instance.shop = shop
          new_instance.data = data
        end
      rescue ActiveRecord::RecordNotUnique, PG::UniqueViolation
        retry
      end

      instance.update(data: data)

      instance
    end

    def should_synchronise_deletion?(_shop, _data)
      true
    end

    def synchronise_deletion(shop, data)
      data = data.with_indifferent_access

      return unless should_synchronise_deletion?(shop, data)

      where(shop: shop, id: data[:id]).destroy_all
    end

    def synchronise_all(shop, params = {})
      resource_count = shop.with_api_context { self::SHOPIFY_API_CLASS.count(params) }

      (1..(resource_count / SYNCHRONISES_PAGE_LIMIT.to_f).ceil).each do |page|
        DiscoApp::SynchroniseResourcesJob.perform_later(shop, name, params.merge(page: page, limit: SYNCHRONISES_PAGE_LIMIT))
      end
    end
  end

  included do
    # Override the "read" data attribute to allow indifferent access.
    def data
      read_attribute(:data).with_indifferent_access
    end
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
disco_app-0.17.0 app/models/disco_app/concerns/synchronises.rb
disco_app-0.18.0 app/models/disco_app/concerns/synchronises.rb
disco_app-0.18.2 app/models/disco_app/concerns/synchronises.rb
disco_app-0.18.1 app/models/disco_app/concerns/synchronises.rb