Sha256: 6680df12bd504aefba935af50a6ab836a668174ad7bc9404b06d22529d2ff3fc

Contents?: true

Size: 1.62 KB

Versions: 9

Compression:

Stored size: 1.62 KB

Contents

module Hyrax
  module FilterByType
    extend ActiveSupport::Concern

    included do
      self.default_processor_chain += [:filter_models]
    end

    # Add queries that excludes everything except for works and collections
    def filter_models(solr_parameters)
      solr_parameters[:fq] ||= []
      solr_parameters[:fq] << "{!terms f=has_model_ssim}#{models_to_solr_clause}"
    end

    protected

      def only_collections?
        generic_type_field.include?('Collection')
      end

      def only_works?
        generic_type_field.include?('Work')
      end

      # Override this method if you want to filter for a different set of models.
      # @return [Array<Class>] a list of classes to include
      def models
        work_classes + collection_classes
      end

    private

      def models_to_solr_clause
        # to_class_uri is deprecated in AF 11
        [ActiveFedora::Base.respond_to?(:to_rdf_representation) ? models.map(&:to_rdf_representation) : models.map(&:to_class_uri)].join(',')
      end

      def generic_type_field
        Array.wrap(blacklight_params.fetch(:f, {}).fetch(:generic_type_sim, []))
      end

      # Override this method if you want to limit some of the registered
      # types from appearing in search results
      # @return [Array<Class>] the list of work types to include in searches
      def work_types
        Hyrax.config.curation_concerns
      end

      def work_classes
        return [] if only_collections?
        work_types
      end

      def collection_classes
        return [] if only_works?
        # to_class_uri is deprecated in AF 11
        [::Collection]
      end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
hyrax-1.1.1 app/search_builders/hyrax/filter_by_type.rb
hyrax-1.1.0 app/search_builders/hyrax/filter_by_type.rb
hyrax-1.0.5 app/search_builders/hyrax/filter_by_type.rb
hyrax-1.0.4 app/search_builders/hyrax/filter_by_type.rb
hyrax-1.0.3 app/search_builders/hyrax/filter_by_type.rb
hyrax-1.0.2 app/search_builders/hyrax/filter_by_type.rb
hyrax-1.0.1 app/search_builders/hyrax/filter_by_type.rb
hyrax-1.0.0.rc2 app/search_builders/hyrax/filter_by_type.rb
hyrax-1.0.0.rc1 app/search_builders/hyrax/filter_by_type.rb