Class: Queries::Attribution::Filter
- Inherits:
-
Object
- Object
- Queries::Attribution::Filter
- Defined in:
- lib/queries/attribution/filter.rb
Overview
!! does not inherit from base query
Instance Attribute Summary collapse
-
#options ⇒ Object
General annotator options handling happens directly on the params as passed through to the controller, keep them together here.
Instance Method Summary collapse
- #all ⇒ ActiveRecord::Relation
- #and_clauses ⇒ ActiveRecord::Relation
-
#initialize(params) ⇒ Filter
constructor
A new instance of Filter.
- #table ⇒ Arel::Table
Constructor Details
#initialize(params) ⇒ Filter
Returns a new instance of Filter.
16 17 18 |
# File 'lib/queries/attribution/filter.rb', line 16 def initialize(params) @options = params end |
Instance Attribute Details
#options ⇒ Object
General annotator options handling happens directly on the params as passed through to the controller, keep them together here
11 12 13 |
# File 'lib/queries/attribution/filter.rb', line 11 def @options end |
Instance Method Details
#all ⇒ ActiveRecord::Relation
34 35 36 37 38 39 40 |
# File 'lib/queries/attribution/filter.rb', line 34 def all if a = and_clauses ::Attribution.where(and_clauses) else ::Attribution.all end end |
#and_clauses ⇒ ActiveRecord::Relation
21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/queries/attribution/filter.rb', line 21 def and_clauses clauses = [ Queries::Annotator.annotator_params(, ::Attribution), ].compact a = clauses.shift clauses.each do |b| a = a.and(b) end a end |
#table ⇒ Arel::Table
43 44 45 |
# File 'lib/queries/attribution/filter.rb', line 43 def table ::Attribution.arel_table end |