module Workarea module Search # This class exists to provide plugins and host applications a single # point of modification for changing the logic around indexing products # See workarea-browse_option or workarea-package_products for example. # class ProductEntries include Enumerable delegate :any?, :empty?, :each, :size, to: :entries def initialize(products) @products = Array.wrap(products) end def entries @entries ||= live_entries + release_entries end def live_entries @live_entries ||= @products.reduce([]) do |memo, product| memo + live_entries_for(product) end end def release_entries @release_entries ||= @products.reduce([]) do |memo, product| memo + release_entries_for(product) end end def live_entries_for(product) Array.wrap(index_entries_for(product.without_release)) end def release_entries_for(product) ProductReleases.new(product).releases.reduce([]) do |memo, release| memo + Array.wrap(index_entries_for(product.in_release(release))) end end def index_entries_for(product) Search::Storefront::Product.new(product) end end end end