Module: Hoodoo::ActiveRecord::Finder::ClassMethods

Defined in:
lib/hoodoo/active/active_record/finder.rb

Overview

Collection of class methods that get defined on an including class via Hoodoo::ActiveRecord::Finder::included.

Instance Method Summary collapse

Instance Method Details

#acquire(ident) ⇒ Object

“Polymorphic” find - support for finding a model by fields other than just :id, based on a single unique identifier. Use #acquire just like you’d use find_by_id and only bother with it if you support finding a resource instance by id and one or more other model fields. Otherwise, just use find_by_id.

In the model, you declare the list of fields in addition to id by calling #acquire_with thus:

class SomeModel < ActiveRecord::Base
  include Hoodoo::ActiveRecord::Finder
  acquire_with ... # <list-of-other-fields>
end

For example, maybe you allow some resource to be looked up by fields id or code, both of which are independently unique sets. Since id is always automatically included, you only need to do this:

class SomeModel < ActiveRecord::Base
  include Hoodoo::ActiveRecord::Finder
  acquire_with :code
end

Then, in a resource’s implementation:

def show( context )
  found = SomeModel.acquire( context.request.ident )
  return context.response.not_found( context.request.ident ) if found.nil?

  # ...map 'found' to whatever resource you're representing,
  # e.g. via a Hoodoo::Presenters::Base subclass with resource
  # schema and the subclass's Hoodoo::Presenters::Base::render
  # call, then...

  context.response.set_resource( resource_representation_of_found )
end

There is nothing magic “under the hood” - Hoodoo just tries to find records with a value matching the incoming identifier for each of the fields in turn. It starts with id then runs through any other fields in the order given through #acquire_with.

This can only be used if your searched fields are strings in the database. This includes, for example, the id column; Hoodoo usually expects to be a string field holding a 32-character UUID. If any of the fields contain non-string types, attempts to use the #acquire mechanism (or a related one) may result in database errors due to type mismatches, depending upon the database engine in use.

In more complex scenarious, you can just call #acquire at the end of any chain of AREL queries just as you would call ActiveRecord’s own #find_by_id method, e.g.:

SomeModel.where( :foo => :bar ).acquire( context.request.ident )

Usually for convenience you should use #acquire_in instead, or only call #acquire with (say) a secure scope via for example a call to Hoodoo::ActiveRecord::Secure::ClassMethods#secure. Other scopes may be needed depending on the mixins your model uses.

ident

The value to search for in the fields (attributes) specified via #acquire_with, matched using calls to where( attr => ident ).

Returns a found model instance or nil for no match.



178
179
180
# File 'lib/hoodoo/active/active_record/finder.rb', line 178

def acquire( ident )
  return acquisition_scope( ident ).first
end

#acquire_in(context) ⇒ Object

Implicily secure, translated, dated etc. etc. version of #acquire, according to which modules are mixed into your model class. Uses #scoped_in to obtain a base scope in which to operate, so it is “mixin aware” and incorporates other Hoodoo extensions within the wider scope chain. See that method’s documentation for more information.

For example, if you are using or at some point intend to mix in and use the mechanism described by the likes of Hoodoo::ActiveRecord::Secure::ClassMethods#secure, call here as a convenience to both obtain a secure context and find a record (with or without additional find-by fields other than id) in one go. Building on the example from Hoodoo::ActiveRecord::Secure::ClassMethods#secure, we might have an Audit model as follows:

class Audit < ActiveRecord::Base
  include Hoodoo::ActiveRecord::Secure

  secure_with( {
    :creating_caller_uuid => :authorised_caller_uuid
  } )

  # Plus perhaps a call to "acquire_with"
end

Then, in a resource’s implementation:

def show( context )
  found = SomeModel.acquire_in( context )
  return context.response.not_found( context.request.ident ) if found.nil?

  # ...map 'found' to whatever resource you're representing,
  # e.g. via a Hoodoo::Presenters::Base subclass with resource
  # schema and the subclass's Hoodoo::Presenters::Base::render
  # call, then...

  context.response.set_resource( resource_representation_of_found )
end

The value of found will be acquired within the secure context determined by the prevailing call context (and its session), so the data it finds is inherently correctly scoped - provided your model’s Hoodoo::ActiveRecord::Secure::ClassMethods#secure_with call describes things correctly.

This method is for convenience and safety - you can’t accidentally forget the secure scope:

SomeModel.secure( context ).acquire( context.request.ident )

# ...has the same result as...

SomeModel.acquire_in( context )

The same applies to forgetting dated scopes, translated scopes, or anything else that #scoped_in might include for you.

Parameters:

context

Hoodoo::Services::Context instance describing a call context. This is typically a value passed to one of the Hoodoo::Services::Implementation instance methods that a resource subclass implements.

Returns a found model instance or nil for no match.



249
250
251
# File 'lib/hoodoo/active/active_record/finder.rb', line 249

def acquire_in( context )
  return scoped_in( context ).acquire( context.request.ident )
end

#acquire_with(*args) ⇒ Object

Describe the list of model fields in addition to id which are to be used to “find-by-identifier” through calls #acquire and #acquire_in. See those methods for more details.

Fields will be searched in the order listed. If duplicate items are present, the first occurrence is kept and the rest are removed.

*args

One or more field names as Strings or Symbols.

See also: #acquired_with

#acquire_with_id_substitute


265
266
267
268
# File 'lib/hoodoo/active/active_record/finder.rb', line 265

def acquire_with( *args )
  self.nz_co_loyalty_hoodoo_show_id_fields = args.map( & :to_s )
  self.nz_co_loyalty_hoodoo_show_id_fields.uniq!()
end

#acquire_with_id_substitute(attr) ⇒ Object

The #acquire_with method allows methods like #acquire and #acquire_in to transparently find a record based on one or more columns in the database. The columns (and corresponding model attributes) specified through a call to #acquire_with will normally be used in addition to a lookup on the id column, but in rare circumstances you might need to bypass that and use an entirely different field. This is distinct from the ActiveRecord-level concept of the model’s primary key column.

To permanently change the use of the id attribute as the first search parameter in #acquire and #acquire_in, by modifying the behaviour of #acquisition_scope, call here and pass in the new attribute name.

attr

Attribute name as a Symbol or String to use instead of id, as a default mandatory column in #acquisition_scope.



300
301
302
# File 'lib/hoodoo/active/active_record/finder.rb', line 300

def acquire_with_id_substitute( attr )
  self.nz_co_loyalty_hoodoo_show_id_substitute = attr.to_sym
end

#acquired_withObject

Return the list of model fields in addition to id which are being used to “find-by-identifier” through calls to #acquire and #acquire_in. The returned Array contains de-duplicated String values only.

See also: #acquire_with

#acquire_with_id_substitute


278
279
280
# File 'lib/hoodoo/active/active_record/finder.rb', line 278

def acquired_with
  self.nz_co_loyalty_hoodoo_show_id_fields || []
end

#acquisition_scope(ident) ⇒ Object

Back-end to #acquire and therefore, in turn, #acquire_in. Returns an ActiveRecord::Relation instance which scopes the search for a record by id and across any other columns specified by #acquire_with, via SQL OR.

If you need to change the use of attribute id, specify a different attribute with #acquire_with_id_substitute. In that case, the given attribute is searched for instead of id; either way, a default starting attribute will be used in scope in addition to any extra fields specified using #acquire_with.

Normally such a scope could only ever return a single record based on an assuption of uniqueness constraints around columns which one might use in an equivalent of a find call. This scope is often chained on top of a wider listing scope provided by #scoped_in to create a fully context-aware, secure, dated, translated etc. query. It is possible however that the chosen ident value might not resolve to a single unique record depending on how your data works and you may need to manually apply additional constraints to the returned ActiveRecord::Relation instance.



325
326
327
328
329
330
331
332
333
334
335
# File 'lib/hoodoo/active/active_record/finder.rb', line 325

def acquisition_scope( ident )
  extra_fields = self.acquired_with()
  arel_table   = self.arel_table()
  arel_query   = arel_table[ self.nz_co_loyalty_hoodoo_show_id_substitute || :id ].eq( ident )

  extra_fields.each do | field |
    arel_query = arel_query.or( arel_table[ field ].eq( ident ) )
  end

  return where( arel_query )
end

#dataset_sizeObject

Given some scope - typically that obtained from a prior call to #list or #list_in, with possibly other query modifiers too - return the total dataset size. This is basically a COUNT operation, but run without offset or limit considerations (ignoring pagination).

This is particularly useful if you are calling Hoodoo::Services::Response#set_resources and want to fill in its dataset_size parameter.



497
498
499
# File 'lib/hoodoo/active/active_record/finder.rb', line 497

def dataset_size
  return all.limit( nil ).offset( nil ).count
end

#filter_with(hash) ⇒ Object

As #search_with, but used in where.not queries.

IMPORTANT: Beware null column values and filters given SQL’s strange behaviour with such things. The search helpers in Hoodoo::ActiveRecord::Finder::SearchHelper class will work as logically expected (“field not ‘foo’” will find fields with a null value), though if you’re expecting SQL-like behaviour it might come as a surprise! Using ...AND field IS NOT NULL in queries for filter_with tends to work reasonably when the query is negated for filter use via ...NOT(...).... Examining the implementation of Hoodoo::ActiveRecord::Finder::SearchHelper may help if confused. See also:

map

As #search_with.



601
602
603
# File 'lib/hoodoo/active/active_record/finder.rb', line 601

def filter_with( hash )
  self.nz_co_loyalty_hoodoo_filter_with = Hoodoo::ActiveRecord::Support.process_to_map( hash )
end

#list(list_parameters) ⇒ Object

Generate an ActiveRecord::Relation instance which can be used to count, retrieve or further refine a list of model instances from the database.

Usually for convenience you should use #list_in instead, or only call #acquire with (say) a secure scope via for example a call to Hoodoo::ActiveRecord::Secure::ClassMethods#secure. An example of this second option is shown below.

Pass a Hoodoo::Services::Request::ListParameters instance, e.g. via the Hoodoo::Services::Context instance passed to resource endpoint implementations and accessor context.request.list. It takes into account the list offset, limit, sort key and sort direction automatically. In addition, it can do simple search and filter operations if search and filter mappings are set up via #search_with and #filter_with.

For exampe, in a simple case where a model can be listed without any unusual constraints, we might do this:

class SomeModel < ActiveRecord::Base
  include Hoodoo::ActiveRecord::Finder

  search_with # ...<field-to-search-info mapping>
  # ...and/or...
  filter_with # ...<field-to-search-info mapping>
end

# ...then, in the resource implementation...

def list( context )
  finder = SomeModel.list( context.request.list )
  results = finder.all.map do | item |
    # ...map database objects to response objects...
  end
  context.response.set_resources( results, finder.dataset_size )
end

Note the use of helper method #dataset_size to count the total amount of results in the dataset without pagination.

The service middleware enforces sane values for things like list offsets, sort keys and so-on according to service interface definitions, so if using the middleware you don’t need to do any extra checking yourself.

Since the returned object is just a relation, adding further constraints is easy - call things like where, group and so-on as normal. You can also list in a secure context via the included Hoodoo::ActiveRecord::Secure::ClassMethods#secure, assuming appropriate data is set in the model via Hoodoo::ActiveRecord::Secure::ClassMethods#secure_with:

def list( context )
  finder = SomeModel.secure( context ).list( context.request.list )
  finder = finder.where( :additional_filter => 'some value' )
  results = finder.all.map do | item |
    # ...map database objects to response objects...
  end
  context.response.set_resources( results, finder.dataset_size )
end

Since it’s just a chained scope, you can call in any order:

SomeModel.secure( context ).list( context.request.list )

# ...has the same result as...

SomeModel.list( context.request.list ).secure( context )

Any of the ActiveRecord::QueryMethods can be called on the returned value. See:

api.rubyonrails.org/classes/ActiveRecord/QueryMethods.html

list_parameters

Hoodoo::Services::Request::ListParameters instance, typically obtained from the Hoodoo::Services::Context instance passed to a service implementation in Hoodoo::Services::Implementation#list, via context.request.list (i.e. Hoodoo::Services::Context#request / Hoodoo::Services::Request#list).



421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
# File 'lib/hoodoo/active/active_record/finder.rb', line 421

def list( list_parameters )
  finder = all.offset( list_parameters.offset ).limit( list_parameters.limit )
  finder = finder.order( list_parameters.sort_data )

  # DRY up the 'each' loops below. Use a Proc not a method because any
  # methods we define will end up being defined on the including Model,
  # increasing the chance of a name collision.
  #
  dry_proc = Proc.new do | data, attr, proc |
    value = data[ attr ]
    proc.call( attr, value ) unless value.nil?
  end

  search_map = self.nz_co_loyalty_hoodoo_search_with

  unless search_map.nil?
    search_map.each do | attr, proc |
      args   = dry_proc.call( list_parameters.search_data, attr, proc )
      finder = finder.where( *args ) unless args.nil?
    end
  end

  filter_map = self.nz_co_loyalty_hoodoo_filter_with

  unless filter_map.nil?
    filter_map.each do | attr, proc |
      args   = dry_proc.call( list_parameters.filter_data, attr, proc )
      finder = finder.where.not( *args ) unless args.nil?
    end
  end

  return finder
end

#list_filter_map(map) ⇒ Object

Deprecated interface replaced by #filter_with (this is an alias).

map

Passed to #filter_with.



658
659
660
661
# File 'lib/hoodoo/active/active_record/finder.rb', line 658

def list_filter_map( map )
  $stderr.puts( 'Hoodoo:ActiveRecord::Finder#list_filter_map is deprecated - rename call to "#filter_with"' )
  filter_with( map )
end

#list_finder(list_parameters) ⇒ Object

Deprecated interface replaced by #list (this is an alias).

list_parameters

Passed to #list.



640
641
642
643
# File 'lib/hoodoo/active/active_record/finder.rb', line 640

def list_finder( list_parameters )
  $stderr.puts( 'Hoodoo:ActiveRecord::Finder#list_finder is deprecated - rename call to "#list"' )
  return list( list_parameters )
end

#list_in(context) ⇒ Object

Implicily secure, translated, dated etc. etc. version of #list, according to which modules are mixed into your model class. See #scoped_in to see the list of things that get included in the scope according to the mixins that are in use.

For example, if you have included Hoodoo::ActiveRecord::Secure, this method provides you with an implicitly secure query. Read the documentation on #acquire_in versus #acquire for information on the use of secure scopes; as with #acquire_in and the “Secure” mixin, this method becomes for convenience and safety - you can’t accidentally forget the secure scope:

SomeModel.secure( context ).list( context.request.list )

# ...has the same result as...

SomeModel.list_in( context )

The same applies to forgetting dated scopes, translated scopes, or anything else that #scoped_in might include for you.

context

Hoodoo::Services::Context instance describing a call context. This is typically a value passed to one of the Hoodoo::Services::Implementation instance methods that a resource subclass implements.

Returns a secure list scope, for either further modification with query methods like where or fetching from the database with all.



484
485
486
# File 'lib/hoodoo/active/active_record/finder.rb', line 484

def list_in( context )
  return scoped_in( context ).list( context.request.list )
end

#list_search_map(map) ⇒ Object

Deprecated interface replaced by #search_with (this is an alias).

map

Passed to #search_with.



649
650
651
652
# File 'lib/hoodoo/active/active_record/finder.rb', line 649

def list_search_map( map )
  $stderr.puts( 'Hoodoo:ActiveRecord::Finder#list_search_map is deprecated - rename call to "#search_with"' )
  search_with( map )
end

#polymorphic_find(finder, ident) ⇒ Object

Deprecated interface replaced by #acquire. Instead of:

Model.polymorphic_find( foo, ident )

…use:

foo.acquire( ident )

This implementation is for legacy support and just calls through to #acquire.

finder

#acquire is called on this.

ident

Passed to #acquire.

Returns a found model instance or nil for no match.



622
623
624
625
# File 'lib/hoodoo/active/active_record/finder.rb', line 622

def polymorphic_find( finder, ident )
  $stderr.puts( 'Hoodoo:ActiveRecord::Finder#polymorphic_find is deprecated - use "foo.acquire( ident )" instead of "Model.polymorphic_find( foo, ident )"' )
  finder.acquire( ident ) # Ignore 'finder'
end

#polymorphic_id_fields(*args) ⇒ Object

Deprecated interface replaced by #acquire_with (this is an alias).

*args

Passed to #acquire_with.



631
632
633
634
# File 'lib/hoodoo/active/active_record/finder.rb', line 631

def polymorphic_id_fields( *args )
  $stderr.puts( 'Hoodoo:ActiveRecord::Finder#polymorphic_id_fields is deprecated - rename call to "#acquire_with"' )
  acquire_with( *args )
end

#scoped_in(context) ⇒ Object

Returns an ActiveRecord::Relation instance representing a primitive base scope that includes various context-related aspects according to the prevailing mixins included by “this” class, if any - e.g. security, dating and/or translation.

See Hoodoo::ActiveRecord::Support#full_scope_for to see the list of things that get included. If there are no “interesting” mixins, the returned scope will just return the same thing that the all method in ActiveRecord would have returned. Consequently, a default scope will be honoured if one has been declared, though default scopes are generally considered an anti-pattern to be avoided.

context

Hoodoo::Services::Context instance describing a call context. This is typically a value passed to one of the Hoodoo::Services::Implementation instance methods that a resource subclass implements.



108
109
110
# File 'lib/hoodoo/active/active_record/finder.rb', line 108

def scoped_in( context )
  Hoodoo::ActiveRecord::Support.full_scope_for( self, context )
end

#search_with(hash) ⇒ Object

Specify a search mapping for use by #list to automatically restrict list results.

In the simplest case, search query string entries and model field (attribute) names are assumed to be the same; if you wanted to search for values of model attributes name and colour using query string entries of name and colour you would just do this:

class SomeModel < ActiveRecord::Base
  search_with(
    :name   => nil,
    :colour => nil
  )
end

The nil values mean a default, case sensitive match is performed with the query string keys and values mapping directly to model query attribute names and values.

More complex example where colour is matched verbatim, but name is matched case-insensitive, assuming PostgreSQL’s ILIKE is there:

class SomeModel < ActiveRecord::Base
  search_with(
    :name => Proc.new { | attr, value |
      [ 'name ILIKE ?', value ]
    },
    :colour => nil
  )
end

Extending the above to use a single Proc that handles case insensitive matches across all attributes:

class SomeModel < ActiveRecord::Base
  CI_MATCH = Proc.new { | attr, value |
    [ "#{ attr } ILIKE ?", value ]
  }

  search_with(
    :name   => CI_MATCH,
    :colour => CI_MATCH
  )
end

If you wanted to match against an array of possible matches, something like this would work:

ARRAY_MATCH = Proc.new { | attr, value |
  [ { attr => [ value ].flatten } ]
}

Note the returned array (see input parameter details) inside which the usual hash syntax for AREL .where-style queries is present.

To help out with common cases other than just specifying nil, the Hoodoo::ActiveRecord::Finder::SearchHelper class provides a method chaining approach which builds up the Hash used by #search_with and filter_with. See that class’s API documentation for details.

*args

A Hash. Keys are both search field names and model attribute names, unless overridden by values; values of nil are used for simple cases - “where( { attr_name => value } )” will be the resulting query modification. Alternatively, pass a callable Proc/Lambda. This is pased the attribute under consideration (and so you can ignore that and query against one or more different-named model attributes) and the context-caller-supplied value to search for. Return AN ARRAY of parameters to pass to where. For parameters to where, see:

api.rubyonrails.org/classes/ActiveRecord/QueryMethods.html#method-i-where

The Hash keys giving the search attribute names can be specified as Strings or Symbols.

See Hoodoo::ActiveRecord::Finder::SearchHelper for methods which assist with filling in non-nil values for this Hash.



580
581
582
# File 'lib/hoodoo/active/active_record/finder.rb', line 580

def search_with( hash )
  self.nz_co_loyalty_hoodoo_search_with = Hoodoo::ActiveRecord::Support.process_to_map( hash )
end