Class: Queries::Query::Filter
- Inherits:
-
Queries::Query
- Object
- Queries::Query
- Queries::Query::Filter
- Includes:
- Concerns::Users
- Defined in:
- lib/queries/query/filter.rb
Overview
Overview
This class manages params and nesting of filter queries.
Each inheriting class defines a PARAMS variable. Each concern defines ‘self.params`. Together these two lists are used to compose a list of acceptable params, dynamically, based on the nature of the nested queries.
Test coverage is currently in /spec/lib/queries/.
!! When adding a new query tests do some linting of parameters, constants etc. Run them early and often !!
Direct Known Subclasses
AlternateValue::Filter, AnatomicalPart::Filter, AssertedDistribution::Filter, Attribution::Filter, BiocurationClassification::Filter, BiologicalAssociation::Filter, BiologicalAssociationsGraph::Filter, Citation::Filter, CollectingEvent::Filter, CollectionObject::Filter, CommonName::Filter, Confidence::Filter, Container::Filter, Content::Filter, ControlledVocabularyTerm::Filter, Conveyance::Filter, DataAttribute::Filter, Depiction::Filter, Descriptor::Filter, Document::Filter, Documentation::Filter, Download::Filter, DwcOccurrence::Filter, Extract::Filter, FieldOccurrence::Filter, Gazetteer::Filter, GeographicArea::Filter, GeographicItem::Filter, Georeference::Filter, Identifier::Filter, Image::Filter, Loan::Filter, Namespace::Filter, Note::Filter, Observation::Filter, ObservationMatrix::Filter, ObservationMatrixRow::Filter, OriginRelationship::Filter, Otu::Filter, Person::Filter, ProtocolRelationship::Filter, Role::Filter, Serial::Filter, Sound::Filter, Source::Filter, SqedDepiction::Filter, Tag::Filter, TaxonDetermination::Filter, TaxonName::Filter, TaxonNameClassification::Filter, TaxonNameRelationship::Filter
Constant Summary collapse
- SUBQUERIES =
!! SUBQUERIES is cross-referenced in app/javascript/vue/components/radials/filter/links/*.js models. !! When you add a reference here, ensure corresponding js model is aligned. There are tests that will catch if they are not.
For example: github.com/SpeciesFileGroup/taxonworks/app/javascript/vue/components/radials/filter/constants/queryParam.js github.com/SpeciesFileGroup/taxonworks/app/javascript/vue/components/radials/filter/constants/filterLinks.js github.com/SpeciesFileGroup/taxonworks/app/javascript/vue/components/radials/filter/links/CollectionObject.js
You may also need a reference in app/javascript/vue/routes/routes.js app/javascript/vue/components/radials/linker/links
This is read as :to <- [:from1, from2…] ].
!! If you add a ‘def <model>_query_facet“ to a filter you will get warnings if that !! model is not referencened in this constant.
{ anatomical_part: [:collection_object, :field_occurrence, :otu, :observation, :extract, :sound, :biological_association], asserted_distribution: [:source, :otu, :biological_association, :taxon_name, :dwc_occurrence, :observation], biological_association: [:source, :collecting_event, :otu, :collection_object, :field_occurrence, :taxon_name, :asserted_distribution, :anatomical_part], biological_associations_graph: [:biological_association, :source], collecting_event: [:source, :collection_object, :field_occurrence, :biological_association, :otu, :image, :taxon_name, :dwc_occurrence], collection_object: [:source, :loan, :otu, :taxon_name, :collecting_event, :biological_association, :extract, :image, :observation, :dwc_occurrence, :anatomical_part], content: [:source, :otu, :taxon_name, :image], conveyance: [:sound], controlled_vocabulary_term: [:data_attribute], data_attribute: [:collection_object, :collecting_event, :field_occurrence, :taxon_name, :otu], dwc_occurrence: [:asserted_distribution, :collection_object, :collecting_event, :field_occurrence], depiction: [:image], descriptor: [:source, :observation, :otu], extract: [:source, :otu, :collection_object, :observation, :anatomical_part], field_occurrence: [:collecting_event, :otu, :biological_association, :dwc_occurrence, :image, :observation, :taxon_name, :anatomical_part], # [:source, :otu, :collecting_event, :biological_association, :observation, :taxon_name, :extract], image: [:content, :collection_object, :collecting_event, :field_occurrence, :otu, :observation, :source, :taxon_name ], loan: [:collection_object, :otu], observation: [:asserted_distribution, :collection_object, :descriptor, :extract, :field_occurrence, :image, :otu, :sound, :source, :taxon_name, :anatomical_part], otu: [:asserted_distribution, :biological_association, :collection_object, :dwc_occurrence, :field_occurrence, :collecting_event, :content, :descriptor, :extract, :image, :loan, :observation, :source, :taxon_name, :anatomical_part ], person: [], source: [:asserted_distribution, :biological_association, :collecting_event, :collection_object, :content, :descriptor, :extract, :image, :observation, :otu, :taxon_name, :taxon_name_relationship], sound: [:observation, :anatomical_part], taxon_name: [:asserted_distribution, :biological_association, :collection_object, :collecting_event, :image, :otu, :source, :taxon_name_relationship], taxon_name_relationship: [:taxon_name, :source], }.freeze
- FILTER_QUERIES =
We could consider ‘.safe_constantize` to make this a f(n), but we’d have to have a list somewhere else anyways to further restrict allowed classes.
{ anatomical_part_query: '::Queries::AnatomicalPart::Filter', asserted_distribution_query: '::Queries::AssertedDistribution::Filter', biological_association_query: '::Queries::BiologicalAssociation::Filter', biological_associations_graph_query: '::Queries::BiologicalAssociationsGraph::Filter', collecting_event_query: '::Queries::CollectingEvent::Filter', collection_object_query: '::Queries::CollectionObject::Filter', content_query: '::Queries::Content::Filter', controlled_vocabulary_term_query: '::Queries::ControlledVocabularyTerm::Filter', conveyance_query: '::Queries::Conveyance::Filter', data_attribute_query: '::Queries::DataAttribute::Filter', depiction_query: '::Queries::Depiction::Filter', descriptor_query: '::Queries::Descriptor::Filter', document_query: '::Queries::Document::Filter', dwc_occurrence_query: '::Queries::DwcOccurrence::Filter', extract_query: '::Queries::Extract::Filter', field_occurrence_query: '::Queries::FieldOccurrence::Filter', image_query: '::Queries::Image::Filter', loan_query: '::Queries::Loan::Filter', observation_query: '::Queries::Observation::Filter', otu_query: '::Queries::Otu::Filter', person_query: '::Queries::Person::Filter', sound_query: '::Queries::Sound::Filter', source_query: '::Queries::Source::Filter', taxon_name_query: '::Queries::TaxonName::Filter', taxon_name_relationship_query: '::Queries::TaxonNameRelationship::Filter', }.freeze
Instance Attribute Summary collapse
- #anatomical_part_query ⇒ Query::AnatomicalPart::Filter?
-
#api ⇒ Object
Boolean When true api_except_params is applied and other restrictions are placed: - :venn param is ignored - is_public=true is applied.
- #asserted_distribution_query ⇒ Query::AssertedDistribution::Filter?
- #biological_association_query ⇒ Query::BiologicalAssociation::Filter?
- #biological_associations_graph_query ⇒ Query::BiologicalAssociationsGraph::Filter?
- #collecting_event_query ⇒ Query::CollectingEvent::Filter?
- #collection_object_query ⇒ Query::TaxonName::Filter?
- #content_query ⇒ Query::Content::Filter?
- #controlled_vocabulary_term_query ⇒ Query::ControlledVocabularyTerm::Filter?
- #conveyance_query ⇒ Query::Conveyance::Filter?
- #data_attribute_query ⇒ Query::DataAttribute::Filter?
- #depiction_query ⇒ Query::Depiction::Filter?
- #descriptor_query ⇒ Query::Descriptor::Filter?
- #document_query ⇒ Query::Document::Filter?
- #dwc_occurrence_query ⇒ Query::DwcOccurrence::Filter?
- #extract_query ⇒ Query::Extract::Filter?
- #field_occurrence_query ⇒ Query::TaxonName::Filter?
- #image_query ⇒ Query::Image::Filter?
- #loan_query ⇒ Query::Loan::Filter?
-
#object_global_id ⇒ Array
Locally these look like gid://taxon-works/Otu/1 Using a global id is equivalent to using <model>_id.
- #observation_query ⇒ Query::Observation::Filter?
-
#order_by ⇒ Object
Supported values: * ‘match_identifiers` - sort by the order of the identifiers in provided.
- #otu_query ⇒ Query::Otu::Filter?
-
#page ⇒ Object
Integer, nil required if paginate == true.
-
#paginate ⇒ Object
Apply pagination within Filter scope true - apply per and page false, nil - ignored.
-
#params ⇒ Object
readonly
!! Using setters directly on query parameters will not alter this variable !! !! This is used strictly during the permission process of ActionController::Parameters !!.
-
#per ⇒ Object
Integer, nil paginate must equal true page must be !nil?.
- #person_query ⇒ Query::Person::Filter?
- #project_id ⇒ Array
-
#recent ⇒ Object
Boolean Applies an order on updated.
-
#recent_target ⇒ Object
Symbol :created_at, :updated_at defaults to :updated_at if blank.
-
#roll_call ⇒ Object
If true then *_facet methods need only return scope.none to indicate that the facet is active given the current parameters.
- #sound_query ⇒ Query::Sound::Filter?
- #taxon_name_query ⇒ Query::TaxonName::Filter?
- #taxon_name_relationship_query ⇒ Query::TaxonNameRelationship::Filter?
-
#venn ⇒ Object
String A JSON full URL containing the base string for a query.
-
#venn_ignore_pagination ⇒ Object
When true, all paging parameters will be removed from the B query and it will return its full result set for venn processing.
-
#venn_mode ⇒ Object
( A ( B ) C ).
Attributes inherited from Queries::Query
Class Method Summary collapse
-
.annotator_params ⇒ Object
to be merged into included params.
-
.api_except_params ⇒ Object
Any params set here, and in corresponding subclasses will not be permitted when api: true is present.
- .api_excluded_params ⇒ Object
-
.base_filter(params) ⇒ Filter?
The class of filter that is referenced at the base of this parameter set.
- .base_query_name(params) ⇒ Object
-
.base_query_to_h(params) ⇒ Object
base_query, as params, like ‘{}` This sanitizes params.
- .included_annotator_facets ⇒ Object
-
.instantiated_base_filter(params) ⇒ Object
An instiatied filter, with params set, for params with patterns like ‘otu_query={}`.
-
.inverted_subqueries ⇒ Hash
Only referenced in specs.
-
.params ⇒ Object
Array merges ‘[:a, []]` into [:a].
- .query_name ⇒ Object
-
.set_paging(query, state) ⇒ ActiveQuery
Query with paging set to state.
Instance Method Summary collapse
-
#all(nil_empty = false) ⇒ ActiveRecord::Relation
See /lib/queries/ARCHITECTURE.md for additional explanation.
- #all_and_clauses ⇒ ActiveRecord::Relation?
-
#all_merge_clauses ⇒ Scope?
Of interest, the previous native ‘merge()` (and `and()“) make things complicated:.
-
#and_clauses ⇒ Object
Defined in inheriting classes.
- #annotator_and_clauses ⇒ Object
- #annotator_merge_clauses ⇒ Object
- #apply_venn(query) ⇒ Object
-
#attribute_exact_facet(attribute = nil) ⇒ Object
params attribute [Symbol] a facet for use when params include ‘author`, and `exact_author` pattern combinations See queries/source/filter.rb for example use See /spec/lib/queries/source/filter_spec.rb !! Whitespace (e.g. tabs, newlines) is ignored when exact is used !!!.
-
#deep_permit(params) ⇒ Object
ActionController::Parameters.
- #disable_paging ⇒ Object
-
#initialize(query_params) ⇒ Filter
constructor
A new instance of Filter.
-
#merge_clauses ⇒ Object
Defined in inheriting classes.
-
#model_id_facet ⇒ Object
Returns id= facet, automatically added to all queries.
- #object_global_id_facet ⇒ Object
-
#only_project? ⇒ Boolean
!! WARNING: this will “fail” (i.e. return false) in background jobs where Current.project_id isn’t set.
-
#only_project_or_less? ⇒ Boolean
See also only_project?.
- #paging_state ⇒ Object
-
#permitted_params(hsh) ⇒ Object
This method is a preprocessor that discovers, by finding the nested subqueries, which params should be permitted.
- #process_url_into_params(url) ⇒ Object
- #project_id_facet ⇒ Object
-
#set_nested_queries(params) ⇒ Object
TODO: when a nesting problem is found we need to flag the query as invalid.
- #set_paging(query) ⇒ Object
- #shared_and_clauses ⇒ Object
-
#subquery_vector(hsh) ⇒ Array of Symbol
Since queries nest linearly we don’t need to recursion.
- #target_and_clauses ⇒ Object
- #venn_query ⇒ Object
Methods inherited from Queries::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.
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 |
# File 'lib/queries/query/filter.rb', line 291 def initialize(query_params) # Reference to query_params, i.e. always permitted @api = boolean_param(query_params, :api) @recent = boolean_param(query_params, :recent) @recent_target = query_params[:recent_target] @object_global_id = query_params[:object_global_id] @venn = query_params[:venn] @venn_mode = query_params[:venn_mode] @venn_ignore_pagination = boolean_param(query_params, :venn_ignore_pagination) # !! This is the *only* place Current.project_id should be seen !! It's still not the best # way to implement this, but we use it to optimize the scope of sub/nested-queries efficiently. # Ideally we'd have a global class param that stores this that all Filters would have access to, # rather than an instance variable @project_id = case when query_params[:project_id] == false # !! Only internal should pass this, therefor no type conversions nil when query_params[:project_id].blank? Current.project_id else query_params[:project_id] end @paginate = boolean_param(query_params, :paginate) @per = query_params[:per] @page = query_params[:page] @order_by = query_params[:order_by] @roll_call = false # After this point, if you started with ActionController::Parameters, # then all values have been explicitly permitted. if query_params.kind_of?(Hash) @params = query_params elsif query_params.kind_of?(ActionController::Parameters) @params = deep_permit(query_params).to_hash.deep_symbolize_keys elsif query_params.nil? @params = {} else raise TaxonWorks::Error, "can not initialize filter with #{query_params.class.name}" end set_identifier_params(params) set_nested_queries(params) set_user_dates(params) end |
Instance Attribute Details
#anatomical_part_query ⇒ Query::AnatomicalPart::Filter?
157 158 159 |
# File 'lib/queries/query/filter.rb', line 157 def anatomical_part_query @anatomical_part_query end |
#api ⇒ Object
Returns Boolean When true api_except_params is applied and other restrictions are placed:
- :venn param is ignored
- is_public=true is applied.
241 242 243 |
# File 'lib/queries/query/filter.rb', line 241 def api @api end |
#asserted_distribution_query ⇒ Query::AssertedDistribution::Filter?
160 161 162 |
# File 'lib/queries/query/filter.rb', line 160 def asserted_distribution_query @asserted_distribution_query end |
#biological_association_query ⇒ Query::BiologicalAssociation::Filter?
163 164 165 |
# File 'lib/queries/query/filter.rb', line 163 def biological_association_query @biological_association_query end |
#biological_associations_graph_query ⇒ Query::BiologicalAssociationsGraph::Filter?
166 167 168 |
# File 'lib/queries/query/filter.rb', line 166 def biological_associations_graph_query @biological_associations_graph_query end |
#collecting_event_query ⇒ Query::CollectingEvent::Filter?
175 176 177 |
# File 'lib/queries/query/filter.rb', line 175 def collecting_event_query @collecting_event_query end |
#collection_object_query ⇒ Query::TaxonName::Filter?
172 173 174 |
# File 'lib/queries/query/filter.rb', line 172 def collection_object_query @collection_object_query end |
#content_query ⇒ Query::Content::Filter?
178 179 180 |
# File 'lib/queries/query/filter.rb', line 178 def content_query @content_query end |
#controlled_vocabulary_term_query ⇒ Query::ControlledVocabularyTerm::Filter?
169 170 171 |
# File 'lib/queries/query/filter.rb', line 169 def controlled_vocabulary_term_query @controlled_vocabulary_term_query end |
#conveyance_query ⇒ Query::Conveyance::Filter?
181 182 183 |
# File 'lib/queries/query/filter.rb', line 181 def conveyance_query @conveyance_query end |
#data_attribute_query ⇒ Query::DataAttribute::Filter?
184 185 186 |
# File 'lib/queries/query/filter.rb', line 184 def data_attribute_query @data_attribute_query end |
#depiction_query ⇒ Query::Depiction::Filter?
190 191 192 |
# File 'lib/queries/query/filter.rb', line 190 def depiction_query @depiction_query end |
#descriptor_query ⇒ Query::Descriptor::Filter?
187 188 189 |
# File 'lib/queries/query/filter.rb', line 187 def descriptor_query @descriptor_query end |
#document_query ⇒ Query::Document::Filter?
193 194 195 |
# File 'lib/queries/query/filter.rb', line 193 def document_query @document_query end |
#dwc_occurrence_query ⇒ Query::DwcOccurrence::Filter?
196 197 198 |
# File 'lib/queries/query/filter.rb', line 196 def dwc_occurrence_query @dwc_occurrence_query end |
#extract_query ⇒ Query::Extract::Filter?
214 215 216 |
# File 'lib/queries/query/filter.rb', line 214 def extract_query @extract_query end |
#field_occurrence_query ⇒ Query::TaxonName::Filter?
199 200 201 |
# File 'lib/queries/query/filter.rb', line 199 def field_occurrence_query @field_occurrence_query end |
#image_query ⇒ Query::Image::Filter?
202 203 204 |
# File 'lib/queries/query/filter.rb', line 202 def image_query @image_query end |
#loan_query ⇒ Query::Loan::Filter?
220 221 222 |
# File 'lib/queries/query/filter.rb', line 220 def loan_query @loan_query end |
#object_global_id ⇒ Array
Locally these look like gid://taxon-works/Otu/1 Using a global id is equivalent to using <model>_id. I.e. it simply restricts the filter to those matching Model#id.
!! If any global id model name does not match the current filter, then then facet is completely rejected.
152 153 154 |
# File 'lib/queries/query/filter.rb', line 152 def object_global_id @object_global_id end |
#observation_query ⇒ Query::Observation::Filter?
217 218 219 |
# File 'lib/queries/query/filter.rb', line 217 def observation_query @observation_query end |
#order_by ⇒ Object
Supported values:
* `match_identifiers` - sort by the order of the identifiers in provided
!! Does not sub-sort
270 271 272 |
# File 'lib/queries/query/filter.rb', line 270 def order_by @order_by end |
#otu_query ⇒ Query::Otu::Filter?
211 212 213 |
# File 'lib/queries/query/filter.rb', line 211 def otu_query @otu_query end |
#page ⇒ Object
Returns Integer, nil required if paginate == true.
134 135 136 |
# File 'lib/queries/query/filter.rb', line 134 def page @page end |
#paginate ⇒ Object
Apply pagination within Filter scope
true - apply per and page
false, nil - ignored
130 131 132 |
# File 'lib/queries/query/filter.rb', line 130 def paginate @paginate end |
#params ⇒ Object (readonly)
!! Using setters directly on query parameters will not alter this variable !! !! This is used strictly during the permission process of ActionController::Parameters !!
277 278 279 |
# File 'lib/queries/query/filter.rb', line 277 def params @params end |
#per ⇒ Object
Returns Integer, nil paginate must equal true page must be !nil?.
139 140 141 |
# File 'lib/queries/query/filter.rb', line 139 def per @per end |
#person_query ⇒ Query::Person::Filter?
223 224 225 |
# File 'lib/queries/query/filter.rb', line 223 def person_query @person_query end |
#project_id ⇒ Array
125 126 127 |
# File 'lib/queries/query/filter.rb', line 125 def project_id @project_id end |
#recent ⇒ Object
Returns Boolean Applies an order on updated.
230 231 232 |
# File 'lib/queries/query/filter.rb', line 230 def recent @recent end |
#recent_target ⇒ Object
Returns symbol :created_at, :updated_at defaults to :updated_at if blank.
234 235 236 |
# File 'lib/queries/query/filter.rb', line 234 def recent_target @recent_target end |
#roll_call ⇒ Object
If true then *_facet methods need only return scope.none to indicate that the facet is active given the current parameters. Facet return scopes are never actually queried in this case. If you’re a facet that does work to create your scope then you should check this attribute and not do that work when it’s true. Otherwise you can safely ignore this.
288 289 290 |
# File 'lib/queries/query/filter.rb', line 288 def roll_call @roll_call end |
#sound_query ⇒ Query::Sound::Filter?
226 227 228 |
# File 'lib/queries/query/filter.rb', line 226 def sound_query @sound_query end |
#taxon_name_query ⇒ Query::TaxonName::Filter?
205 206 207 |
# File 'lib/queries/query/filter.rb', line 205 def taxon_name_query @taxon_name_query end |
#taxon_name_relationship_query ⇒ Query::TaxonNameRelationship::Filter?
208 209 210 |
# File 'lib/queries/query/filter.rb', line 208 def taxon_name_relationship_query @taxon_name_relationship_query end |
#venn ⇒ Object
Returns String A JSON full URL containing the base string for a query.
245 246 247 |
# File 'lib/queries/query/filter.rb', line 245 def venn @venn end |
#venn_ignore_pagination ⇒ Object
When true, all paging parameters will be removed from the B query and it will return its full result set for venn processing. When false, the B venn query will use only the single page indicated by whatever paging parameters are set on the query.
257 258 259 |
# File 'lib/queries/query/filter.rb', line 257 def venn_ignore_pagination @venn_ignore_pagination end |
#venn_mode ⇒ Object
( A ( B ) C )
250 251 252 |
# File 'lib/queries/query/filter.rb', line 250 def venn_mode @venn_mode end |
Class Method Details
.annotator_params ⇒ Object
to be merged into included params
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 |
# File 'lib/queries/query/filter.rb', line 458 def self.annotator_params h = nil if i = included_annotator_facets # Setup with the first a = i.shift h = a.params if !h.last.kind_of?(Hash) h << {} end c = h.last # Now do the rest i.each do |j| p = j.params if p.last.kind_of?(Hash) c.merge!(p.pop) end h = p + h end end h end |
.api_except_params ⇒ Object
Any params set here, and in corresponding subclasses will not be permitted when api: true is present
451 452 453 |
# File 'lib/queries/query/filter.rb', line 451 def self.api_except_params [:venn, :venn_mode] end |
.api_excluded_params ⇒ Object
485 486 487 488 489 |
# File 'lib/queries/query/filter.rb', line 485 def self.api_excluded_params [ # if there are things like created_by_id that we deem universally out they go here ] + api_except_params end |
.base_filter(params) ⇒ Filter?
Returns the class of filter that is referenced at the base of this parameter set.
378 379 380 381 382 383 384 385 386 387 388 389 390 391 |
# File 'lib/queries/query/filter.rb', line 378 def self.base_filter(params) if s = base_query_name(params) t = s.gsub('_query', '').to_sym if SUBQUERIES.include?(t) k = t.to_s.camelcase return "Queries::#{k}::Filter".constantize else return nil end else nil end end |
.base_query_name(params) ⇒ Object
402 403 404 |
# File 'lib/queries/query/filter.rb', line 402 def self.base_query_name(params) params.keys.select{|s| s =~ /\A.+_query\z/}.first end |
.base_query_to_h(params) ⇒ Object
base_query, as params, like ‘{}` This sanitizes params.
409 410 411 |
# File 'lib/queries/query/filter.rb', line 409 def self.base_query_to_h(params) return { base_query_name(params) => instantiated_base_filter(params).params } end |
.included_annotator_facets ⇒ Object
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 |
# File 'lib/queries/query/filter.rb', line 413 def self.included_annotator_facets f = [ ::Queries::Concerns::Users ] if referenced_klass.annotates? f.push ::Queries::Concerns::Polymorphic if self < ::Queries::Concerns::Polymorphic else # TODO There is room for an AlternateValue concern here f.push ::Queries::Concerns::Attributes if self < ::Queries::Concerns::Attributes f.push ::Queries::Concerns::Citations if self < ::Queries::Concerns::Citations f.push ::Queries::Concerns::Confidences if self < ::Queries::Concerns::Confidences f.push ::Queries::Concerns::Containable if self < ::Queries::Concerns::Containable f.push ::Queries::Concerns::Conveyances if self < ::Queries::Concerns::Conveyances f.push ::Queries::Concerns::DataAttributes if self < ::Queries::Concerns::DataAttributes f.push ::Queries::Concerns::DateRanges if self < ::Queries::Concerns::DateRanges f.push ::Queries::Concerns::Depictions if self < ::Queries::Concerns::Depictions f.push ::Queries::Concerns::Identifiers if self < ::Queries::Concerns::Identifiers f.push ::Queries::Concerns::Notes if self < ::Queries::Concerns::Notes f.push ::Queries::Concerns::Protocols if self < ::Queries::Concerns::Protocols f.push ::Queries::Concerns::Tags if self < ::Queries::Concerns::Tags f.push ::Queries::Concerns::Verifiers if self < ::Queries::Concerns::Verifiers f.push ::Queries::Concerns::PreparationTypes if self < ::Queries::Concerns::PreparationTypes end f end |
.instantiated_base_filter(params) ⇒ Object
An instiatied filter, with params set, for params with patterns like ‘otu_query={}`
394 395 396 397 398 399 400 |
# File 'lib/queries/query/filter.rb', line 394 def self.instantiated_base_filter(params) if s = base_filter(params) s.new(params[base_query_name(params)]) else nil end end |
.inverted_subqueries ⇒ Hash
Returns only referenced in specs.
76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/queries/query/filter.rb', line 76 def self.inverted_subqueries r = {} SUBQUERIES.each do |k,v| v.each do |m| if r[m] r[m].push k else r[m] = [k] end end end r end |
.params ⇒ Object
Returns Array merges ‘[:a, []]` into [:a].
443 444 445 446 447 |
# File 'lib/queries/query/filter.rb', line 443 def self.params a = self::PARAMS.dup b = a.pop.keys (a + b).uniq end |
.query_name ⇒ Object
68 69 70 |
# File 'lib/queries/query/filter.rb', line 68 def self.query_name base_name + '_query' end |
.set_paging(query, state) ⇒ ActiveQuery
Returns query with paging set to state.
646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 |
# File 'lib/queries/query/filter.rb', line 646 def self.set_paging(query, state) return query if !state state = state.symbolize_keys if state[:paginate] if state[:ordered] # Order has already been set. query = query.page(state[:page]).per(state[:per]) else query = query.order(:id).page(state[:page]).per(state[:per]) end end query end |
Instance Method Details
#all(nil_empty = false) ⇒ ActiveRecord::Relation
See /lib/queries/ARCHITECTURE.md for additional explanation.
TODO: consider “true” for default, changing to false on controller Filter calls
860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 |
# File 'lib/queries/query/filter.rb', line 860 def all(nil_empty = false) # TODO: should turn off/on project_id here on nil empty? a = all_and_clauses b = all_merge_clauses # TODO: do not consider project_id alone a parameter on nil_empty # Limited use within the UI because project_id is set return nil if nil_empty && a.nil? && b.nil? # !! Do not apply `.distinct here` q = nil if a && b q = b.where(a) elsif a q = referenced_klass.where(a) elsif b q = b else q = referenced_klass.all end if venn_mode && venn && !api q = apply_venn(q) end # TODO: collides with recent, and needs isolation/generic application # probably through native .order() use. # Order in general likely belongs outside the scope of filters, but # see this param use, where we depend on the incoming values # # See spec/lib/queries/otu/filter_spec.rb for tests # See lib/queries/concerns/identifiers.rb if order_by q = match_identifier_order_by(q) end if recent q = referenced_klass.from(q.all, table.name).order(recent_target => :desc) end if api if referenced_klass.column_names.include?('is_public') q = q.where(is_public: [nil, true]) end end q = set_paging(q) # TODO: canonically address whether or not to use `.distinct` at this point, we should be able to, however # some incoming queries may have joins/group/etc. alone?! I.e. why can't we? q end |
#all_and_clauses ⇒ ActiveRecord::Relation?
760 761 762 763 764 765 766 767 768 769 |
# File 'lib/queries/query/filter.rb', line 760 def all_and_clauses clauses = target_and_clauses return nil if clauses.empty? a = clauses.shift clauses.each do |b| a = a.and(b) end a end |
#all_merge_clauses ⇒ Scope?
Of interest, the previous native ‘merge()` (and `and()“) make things complicated:
For example a.merge(b) != b.merge(a) in some cases. This is because certain clauses are tossed without warning (notably ‘.from()`). See:
We presently use SQL with INTERSECTION to combine facets.
791 792 793 794 795 796 797 798 799 800 801 802 803 804 |
# File 'lib/queries/query/filter.rb', line 791 def all_merge_clauses clauses = merge_clauses + annotator_merge_clauses clauses.compact! return nil if clauses.empty? # TODO: consider whether to implement this. # It should be safe, except, possibly for aggregate based queries # that include custom attributes, would these get cleared. # We could requier that at this level they are wrapped in a From etc. # a = clauses.collect{|q| q.unscope(:select).select(:id) } referenced_klass_intersection(clauses) end |
#and_clauses ⇒ Object
Defined in inheriting classes
755 756 757 |
# File 'lib/queries/query/filter.rb', line 755 def and_clauses [] end |
#annotator_and_clauses ⇒ Object
732 733 734 735 736 737 738 739 740 741 742 743 744 |
# File 'lib/queries/query/filter.rb', line 732 def annotator_and_clauses a = [] self.class.included_annotator_facets.each do |c| if c.respond_to?(:and_clauses) c.and_clauses.each do |f| if v = send(f) a.push v end end end end a end |
#annotator_merge_clauses ⇒ Object
713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 |
# File 'lib/queries/query/filter.rb', line 713 def annotator_merge_clauses a = [] # !! Interesting `.compact` removes #<ActiveRecord::Relation []>, # so patterns that us collect.flatten.compact return empty, # `.present?` fails as well, so verbose loops here self.class.included_annotator_facets.each do |c| if c.respond_to?(:merge_clauses) next if c.name == 'Queries::Concerns::Identifiers' && no_identifier_clauses c.merge_clauses.each do |f| if v = send(f) a.push v end end end end a end |
#apply_venn(query) ⇒ Object
806 807 808 |
# File 'lib/queries/query/filter.rb', line 806 def apply_venn(query) Queries.venn(query, venn_query.all, venn_mode) end |
#attribute_exact_facet(attribute = nil) ⇒ Object
params attribute [Symbol]
a facet for use when params include `author`, and `exact_author` pattern combinations
See queries/source/filter.rb for example use
See /spec/lib/queries/source/filter_spec.rb
!! Whitespace (e.g. tabs, newlines) is ignored when exact is used !!!
694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 |
# File 'lib/queries/query/filter.rb', line 694 def attribute_exact_facet(attribute = nil) a = attribute.to_sym return nil if send(a).blank? if send("exact_#{a}".to_sym) # TODO: Think we need to handle ' and ' v = send(a) v.gsub!(/\s+/, ' ') v = ::Regexp.escape(v) v.gsub!(/\\\s+/, '\s*') # spaces are escaped, but we need to expand them in case we dont' get them caught v = '^\s*' + v + '\s*$' table[a].matches_regexp(v) else table[a].matches('%' + send(a).strip.gsub(/\s+/, '%') + '%') end end |
#deep_permit(params) ⇒ Object
Returns ActionController::Parameters.
587 588 589 |
# File 'lib/queries/query/filter.rb', line 587 def deep_permit(params) p = params.permit( permitted_params(params.to_unsafe_hash)) end |
#disable_paging ⇒ Object
630 631 632 633 634 635 636 |
# File 'lib/queries/query/filter.rb', line 630 def disable_paging r = paging_state self.paginate = false r end |
#merge_clauses ⇒ Object
Defined in inheriting classes
776 777 778 |
# File 'lib/queries/query/filter.rb', line 776 def merge_clauses [] end |
#model_id_facet ⇒ Object
Returns id= facet, automatically added to all queries. Over-ridden in some base classes.
665 666 667 668 669 |
# File 'lib/queries/query/filter.rb', line 665 def model_id_facet m = (base_name + '_id').to_sym return nil if send(m).empty? table[:id].in(send(m)) end |
#object_global_id_facet ⇒ Object
676 677 678 679 680 681 682 683 684 685 686 687 |
# File 'lib/queries/query/filter.rb', line 676 def object_global_id_facet return nil if object_global_id.empty? ids = [] object_global_id.each do |i| g = GlobalID.parse(i) # If any global_ids do not reference this Class, abort return nil unless g.model_class.base_class.name == referenced_klass.name ids.push g.model_id end table[:id].in(ids) end |
#only_project? ⇒ Boolean
!! WARNING: this will “fail” (i.e. return false) in background jobs where
Current.project_id isn't set. !!
You may want only_project_or_less? instead.
836 837 838 839 840 841 842 843 844 |
# File 'lib/queries/query/filter.rb', line 836 def only_project? @roll_call = true a = project_id_facet && target_and_clauses.size == 1 && all_merge_clauses.nil? @roll_call = false a end |
#only_project_or_less? ⇒ Boolean
See also only_project?
847 848 849 850 |
# File 'lib/queries/query/filter.rb', line 847 def only_project_or_less? only_project? || (target_and_clauses.size == 0 && all_merge_clauses.nil?) end |
#paging_state ⇒ Object
615 616 617 618 619 620 621 622 623 624 625 626 627 628 |
# File 'lib/queries/query/filter.rb', line 615 def paging_state if paginate { paginate: true, per:, page:, # This shouldn't be here, but see order_by processing for identifiers # in #all. ordered: order_by.present? } else { paginate: false } end end |
#permitted_params(hsh) ⇒ Object
This method is a preprocessor that discovers, by finding the nested subqueries, which params should be permitted. It is used to build a permitable profile of parameters.
That profile is then used in the actual .permit() call.
An alternate solution, first tried, is to permit the params directly during inspection for subqueries. This also would work, however there are some nice benefits to having a profile of the allowed params available as an Array, for example we can use it for API documentation a little easier(?!).
In essence what we needed was for ActionController::Parameters to be able to accumulate (remember) all permitted params (not just their actual data) over multiple .permit() calls. If we had that, then we could do something like params.permitted_params => Array after multiple calls like params.permit(:a), params.permit(:b).
any parameter set for the query.
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 |
# File 'lib/queries/query/filter.rb', line 512 def permitted_params(hsh) h = self.class::PARAMS.deep_dup h.unshift(:per) h.unshift(:page) h.unshift(:paginate) if !h.last.kind_of?(Hash) h << {} end c = h.last # a {} if n = self.class.annotator_params c.merge!(n.pop) h = n + h end b = subquery_vector(hsh) parent = self.class while !b.empty? a = b.shift next unless SUBQUERIES[parent.base_name.to_sym].include?( a.to_s.gsub('_query', '').to_sym ) q = FILTER_QUERIES[a].safe_constantize p = q::PARAMS.deep_dup p.unshift(:per) p.unshift(:page) p.unshift(:paginate) if !p.last.kind_of?(Hash) p << {} end if n = q.annotator_params p.last.merge!(n.pop) p = n + p end c[a] = p c = p.last parent = q end if api self.class.api_excluded_params.each do |a| h.delete_if{|k,v| a == k} h.last.delete_if{|k,v| a == k } end end h end |
#process_url_into_params(url) ⇒ Object
371 372 373 |
# File 'lib/queries/query/filter.rb', line 371 def process_url_into_params(url) Rack::Utils.parse_nested_query(url) end |
#project_id_facet ⇒ Object
671 672 673 674 |
# File 'lib/queries/query/filter.rb', line 671 def project_id_facet return nil if project_id.empty? table[:project_id].in(project_id) end |
#set_nested_queries(params) ⇒ Object
TODO: when a nesting problem is found we need to flag the query as invalid
595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 |
# File 'lib/queries/query/filter.rb', line 595 def set_nested_queries(params) if n = params.select{|k, p| k.to_s =~ /_query/ } return nil if n.keys.count != 1 # !!! can't have multiple nested queries inside one level !!! This lets us eliminate infinite loops at the cost of expressiveness?! query_name = n.first.first return nil unless SUBQUERIES[base_name.to_sym].include?( query_name.to_s.gsub('_query', '').to_sym ) # must be registered query_params = n.first.last q = FILTER_QUERIES[query_name].safe_constantize.new(query_params) # assign to @<model>_query send("#{query_name}=".to_sym, q) end true end |
#set_paging(query) ⇒ Object
639 640 641 |
# File 'lib/queries/query/filter.rb', line 639 def set_paging(query) self.class.set_paging(query, paging_state) end |
#shared_and_clauses ⇒ Object
746 747 748 749 750 751 752 |
# File 'lib/queries/query/filter.rb', line 746 def shared_and_clauses [ project_id_facet, model_id_facet, object_global_id_facet, ] end |
#subquery_vector(hsh) ⇒ Array of Symbol
Since queries nest linearly we don’t need to recursion.
575 576 577 578 579 580 581 582 583 |
# File 'lib/queries/query/filter.rb', line 575 def subquery_vector(hsh) result = [] while !hsh.keys.select{|k| k =~ /_query/}.empty? a = hsh.keys.select{|k| k =~ /_query/} result += a hsh = hsh[a.first] end result.map(&:to_sym) end |
#target_and_clauses ⇒ Object
771 772 773 |
# File 'lib/queries/query/filter.rb', line 771 def target_and_clauses [and_clauses + annotator_and_clauses + shared_and_clauses].flatten.compact end |
#venn_query ⇒ Object
810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 |
# File 'lib/queries/query/filter.rb', line 810 def venn_query u = ::Addressable::URI.parse(venn).query # Brackets may be multi-encoded t = nil i = 0 max = 10 while t != u && i < max t = u u = Addressable::URI.unencode(t) i += 1 end p = ::Rack::Utils.parse_nested_query(u) # nested supports brackets p = p.except('per', 'page', 'paginate') if venn_ignore_pagination a = ActionController::Parameters.new(p) self.class.new(a) end |