# frozen_string_literal: true require 'active_support/concern' module SnFoil module Searcher extend ActiveSupport::Concern class_methods do attr_reader :i_model, :i_setup, :i_filters, :i_search_step def model(klass = nil) @i_model = klass end def setup(setup_method = nil, &setup_block) @i_setup = setup_method || setup_block end def filter(method = nil, **options, &block) raise ArgumentError, 'filter requires either a method name or a block' if method.nil? && block.nil? (@i_filters ||= []) << { method: method, block: block, if: options[:if], unless: options[:unless] } end end def model self.class.i_model end attr_reader :scope def initialize(scope: nil) @scope = scope || model.all end def search(params = {}) params = transform_params_booleans(params) # this is required for params coming in from http-like sources filtered_scope = filter || scope # start usimg the default scope of the class or the filter method filtered_scope = apply_setup(filtered_scope, params) apply_filters(filtered_scope, params) end def filter; end def setup self.class.i_setup end def filters self.class.i_filters || [] end private def apply_setup(filtered_scope, params) return filtered_scope if setup.nil? if setup.is_a?(Symbol) || setup.is_a?(String) send(setup, filtered_scope, params) else instance_exec filtered_scope, params, &setup end end def apply_filters(filtered_scope, params) filters&.reduce(filtered_scope) do |i_scope, i_filter| apply_filter(i_filter, i_scope, params) end end def apply_filter(i_filter, filtered_scope, params) return filtered_scope unless filter_valid?(i_filter, params) return send(i_filter[:method], filtered_scope, params) if i_filter[:method] instance_exec filtered_scope, params, &i_filter[:block] end def filter_valid?(i_filter, params) return false if !i_filter[:if].nil? && i_filter[:if].call(params) == false return false if !i_filter[:unless].nil? && i_filter[:unless].call(params) == true true end def transform_params_booleans(params) params.map do |key, value| value = if value == 'true' true elsif value == 'false' false else value end [key, value] end.to_h end end end