Sha256: a8d2fc4663b0c5c4c456005dc1c60e89d59f3c304b030a9e5d6183c0a7dc2ce3

Contents?: true

Size: 941 Bytes

Versions: 11

Compression:

Stored size: 941 Bytes

Contents

# frozen_string_literal: true
module Hyrax
  class DepositSearchBuilder < ::SearchBuilder
    # includes the depositor_facet to get information on deposits.
    # use caution when combining this with other searches as it sets the rows to
    # zero to just get the facet information
    # @param solr_parameters the current solr parameters
    def include_depositor_facet(solr_parameters)
      solr_parameters.append_facet_fields(DepositSearchBuilder.depositor_field)

      # default facet limit is 10, which will only show the top 10 users.
      # As we want to show all user deposits, so set the facet.limit to the
      # the number of users in the database
      solr_parameters[:"facet.limit"] = ::User.count

      # we only want the facte counts not the actual data
      solr_parameters[:rows] = 0
    end

    def self.depositor_field
      "depositor_ssim"
    end

    private

    def only_works?
      true
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
hyrax-5.0.1 app/search_builders/hyrax/deposit_search_builder.rb
hyrax-5.0.0 app/search_builders/hyrax/deposit_search_builder.rb
hyrax-5.0.0.rc3 app/search_builders/hyrax/deposit_search_builder.rb
hyrax-5.0.0.rc2 app/search_builders/hyrax/deposit_search_builder.rb
hyrax-5.0.0.rc1 app/search_builders/hyrax/deposit_search_builder.rb
hyrax-4.0.0 app/search_builders/hyrax/deposit_search_builder.rb
hyrax-4.0.0.rc3 app/search_builders/hyrax/deposit_search_builder.rb
hyrax-4.0.0.rc2 app/search_builders/hyrax/deposit_search_builder.rb
hyrax-4.0.0.rc1 app/search_builders/hyrax/deposit_search_builder.rb
hyrax-4.0.0.beta2 app/search_builders/hyrax/deposit_search_builder.rb
hyrax-4.0.0.beta1 app/search_builders/hyrax/deposit_search_builder.rb