module Ransack::Adapters::ActiveRecord::Base
def self.extended(base)
def self.extended(base) base.class_eval do class_attribute :_ransackers class_attribute :_ransack_aliases self._ransackers ||= {} self._ransack_aliases ||= {} end end
def authorizable_ransackable_associations
base for exclusions.
allowing almost everything to be searched, this list can be used as a
`ransackable_associations` method in each model, but if you're
associations need to be explicitly allowlisted through the
Bare list of all potentially searchable associations. Searchable
def authorizable_ransackable_associations reflect_on_all_associations.map { |a| a.name.to_s } end
def authorizable_ransackable_attributes
searched, this list can be used as a base for exclusions.
method in each model, but if you're allowing almost everything to be
need to be explicitly allowlisted through the `ransackable_attributes`
Bare list of all potentially searchable attributes. Searchable attributes
def authorizable_ransackable_attributes if Ransack::SUPPORTS_ATTRIBUTE_ALIAS column_names + _ransackers.keys + _ransack_aliases.keys + attribute_aliases.keys else column_names + _ransackers.keys + _ransack_aliases.keys end.uniq end
def deprecated_ransackable_list(method)
def deprecated_ransackable_list(method) list_type = method.to_s.delete_prefix("ransackable_") if explicitly_defined?(method) warn_deprecated <<~ERROR Ransack's builtin `#{method}` method is deprecated and will result in an error in the future. If you want to authorize the full list of searchable #{list_type} for this model, use `authorizable_#{method}` instead of delegating to `super`. ERROR public_send("authorizable_#{method}") else raise <<~MESSAGE Ransack needs #{name} #{list_type} explicitly allowlisted as searchable. Define a `#{method}` class method in your `#{name}` model, watching out for items you DON'T want searchable (for example, `encrypted_password`, `password_reset_token`, `owner` or other sensitive information). You can use the following as a base: ```ruby class #{name} < ApplicationRecord # ... def self.#{method}(auth_object = nil) #{public_send("authorizable_#{method}").sort.inspect} end # ... end ``` MESSAGE end end
def explicitly_defined?(method)
def explicitly_defined?(method) definer_ancestor = singleton_class.ancestors.find do |ancestor| ancestor.instance_methods(false).include?(method) end definer_ancestor != Ransack::Adapters::ActiveRecord::Base end
def ransack(params = {}, options = {})
def ransack(params = {}, options = {}) Search.new(self, params, options) end
def ransack!(params = {}, options = {})
def ransack!(params = {}, options = {}) ransack(params, options.merge(ignore_unknown_conditions: false)) end
def ransack_alias(new_name, old_name)
def ransack_alias(new_name, old_name) self._ransack_aliases = _ransack_aliases.merge new_name.to_s => old_name.to_s end
def ransackable_associations(auth_object = nil)
For overriding with a whitelist array of strings.
of all associations as an array of strings.
Ransackable_associations, by default, returns the names
def ransackable_associations(auth_object = nil) @ransackable_associations ||= deprecated_ransackable_list(:ransackable_associations) end
def ransackable_attributes(auth_object = nil)
For overriding with a whitelist array of strings.
and any defined ransackers as an array of strings.
Ransackable_attributes, by default, returns all column names
def ransackable_attributes(auth_object = nil) @ransackable_attributes ||= deprecated_ransackable_list(:ransackable_attributes) end
def ransackable_scopes(auth_object = nil)
For overriding with a whitelist array of *symbols*.
i.e. no class methods/scopes are authorized.
Ransackable_scopes, by default, returns an empty array
def ransackable_scopes(auth_object = nil) [] end
def ransackable_scopes_skip_sanitize_args
For overriding with a list of scopes which should be passed the args as-is.
i.e. use the sanitize_scope_args setting to determine if args should be converted.
ransack_scope_skip_sanitize_args, by default, returns an empty array.
def ransackable_scopes_skip_sanitize_args [] end
def ransacker(name, opts = {}, &block)
def ransacker(name, opts = {}, &block) self._ransackers = _ransackers.merge name.to_s => Ransacker .new(self, name, opts, &block) end
def ransortable_attributes(auth_object = nil)
For overriding with a whitelist array of strings.
of all attributes available for sorting as an array of strings.
Ransortable_attributes, by default, returns the names
def ransortable_attributes(auth_object = nil) ransackable_attributes(auth_object) end
def warn_deprecated(message)
def warn_deprecated(message) caller_location = caller_locations.find { |location| !location.path.start_with?(File.expand_path("../..", __dir__)) } warn "DEPRECATION WARNING: #{message.squish} (called at #{caller_location.path}:#{caller_location.lineno})" end