Class: Queries::Note::Filter

Inherits:
Query::Filter show all
Includes:
Concerns::Polymorphic
Defined in:
lib/queries/note/filter.rb

Constant Summary collapse

PARAMS =
[
  *::Note.related_foreign_keys.map(&:to_sym),
  :note_id,
  :text,
  :note_object_type,
  :note_object_id,
  note_id: [],
  note_object_id: [],
  note_object_type: [],
].freeze

Constants inherited from Query::Filter

Query::Filter::FILTER_QUERIES, Query::Filter::SUBQUERIES

Instance Attribute Summary collapse

Attributes inherited from Query::Filter

#api, #asserted_distribution_query, #biological_association_query, #biological_associations_graph_query, #collecting_event_query, #collection_object_query, #content_query, #controlled_vocabulary_term_query, #data_attribute_query, #descriptor_query, #extract_query, #field_occurrence_query, #image_query, #loan_query, #object_global_id, #observation_query, #otu_query, #page, #paginate, #params, #per, #person_query, #project_id, #recent, #taxon_name_query

Attributes inherited from Query

#query_string, #terms

Instance Method Summary collapse

Methods inherited from Query::Filter

#all, #all_and_clauses, #all_merge_clauses, #annotator_and_clauses, #annotator_merge_clauses, annotator_params, api_except_params, api_excluded_params, #attribute_exact_facet, base_filter, #deep_permit, included_annotator_facets, inverted_subqueries, #merge_clauses, #model_id_facet, #object_global_id_facet, params, #permitted_params, #project_id_facet, query_name, #query_name, #set_nested_queries, #shared_and_clauses, #subquery_vector

Methods inherited from Query

#alphabetic_strings, #alphanumeric_strings, base_name, #base_name, #base_query, #build_terms, #cached_facet, #end_wildcard, #levenshtein_distance, #match_ordered_wildcard_pieces_in_cached, #no_terms?, referenced_klass, #referenced_klass, #referenced_klass_except, #referenced_klass_intersection, #referenced_klass_union, #start_and_end_wildcard, #start_wildcard, #table, #wildcard_pieces

Constructor Details

#initialize(query_params) ⇒ Filter

Returns a new instance of Filter.



34
35
36
37
38
39
40
41
42
43
# File 'lib/queries/note/filter.rb', line 34

def initialize(query_params)
  super

  @note_id = params[:note_id]
  @text = params[:text]
  @note_object_type = params[:note_object_type]
  @note_object_id = params[:note_object_id]

  set_polymorphic_params(params)
end

Instance Attribute Details

#note_idObject

Returns Array.

Returns:

  • Array



20
21
22
# File 'lib/queries/note/filter.rb', line 20

def note_id
  @note_id
end

#note_object_idArray

Returns:

  • (Array)


32
33
34
# File 'lib/queries/note/filter.rb', line 32

def note_object_id
  @note_object_id
end

#note_object_typeArray

Returns:

  • (Array)


28
29
30
# File 'lib/queries/note/filter.rb', line 28

def note_object_type
  @note_object_type
end

#textObject

Parameters:

  • text (String, nil)

    wildcard wrapped, always, to match against ‘text`



24
25
26
# File 'lib/queries/note/filter.rb', line 24

def text
  @text
end

Instance Method Details

#and_clausesObject



72
73
74
75
76
77
78
# File 'lib/queries/note/filter.rb', line 72

def and_clauses
  [
    text_facet,
    note_object_id_facet,
    note_object_type_facet,
  ]
end

#note_object_id_facetObject



67
68
69
70
# File 'lib/queries/note/filter.rb', line 67

def note_object_id_facet
  return nil if note_object_id.empty?
  table[:note_object_id].in(note_object_id)
end

#note_object_type_facetObject



62
63
64
65
# File 'lib/queries/note/filter.rb', line 62

def note_object_type_facet
  return nil if note_object_type.empty?
  table[:note_object_type].in(note_object_type)
end

#text_facetObject



57
58
59
60
# File 'lib/queries/note/filter.rb', line 57

def text_facet
  return nil if text.blank?
  table[:text].matches('%' + text + '%')
end