Sha256: 499144d3e99a16047ee9f66cbdc40e873c691f9e1c710aa7c7b5ec950c88fee1

Contents?: true

Size: 977 Bytes

Versions: 12

Compression:

Stored size: 977 Bytes

Contents

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[:"facet.field"].concat([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

    # only get work information
    solr_parameters[:fq] = CurationConcerns::WorkRelation.new.search_model_clause

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

  def self.depositor_field
    @depositor_field ||= Solrizer.solr_name('depositor', :symbol).freeze
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
sufia-7.4.1 app/search_builders/deposit_search_builder.rb
sufia-7.4.0 app/search_builders/deposit_search_builder.rb
sufia-7.3.1 app/search_builders/deposit_search_builder.rb
sufia-7.3.0 app/search_builders/deposit_search_builder.rb
sufia-7.3.0.rc3 app/search_builders/deposit_search_builder.rb
sufia-7.3.0.rc2 app/search_builders/deposit_search_builder.rb
sufia-7.3.0.rc1 app/search_builders/deposit_search_builder.rb
sufia-7.2.0 app/search_builders/deposit_search_builder.rb
sufia-7.1.0 app/search_builders/deposit_search_builder.rb
sufia-7.0.0 app/search_builders/deposit_search_builder.rb
sufia-7.0.0.rc2 app/search_builders/deposit_search_builder.rb
sufia-7.0.0.rc1 app/search_builders/deposit_search_builder.rb