Module: LiveRecord::PublicationsChannel::SearchAdapters::ActiveRecordDefaultAdapter

Defined in:
app/channels/live_record/publications_channel.rb

Class Method Summary collapse

Class Method Details

.mapped_active_record_relation(**args) ⇒ Object



96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# File 'app/channels/live_record/publications_channel.rb', line 96

def self.mapped_active_record_relation(**args)
  model_class = args.fetch(:model_class)
  conditions_hash = args.fetch(:conditions_hash)
  authorised_attributes = args.fetch(:authorised_attributes)

  current_active_record_relation = model_class.all

  conditions_hash.each do |key, value|
    operator = key.split('_').last
    # to get attribute_name, we subtract the end part of the string with size of operator substring; i.e.: created_at_lteq -> created_at
    attribute_name = key[0..(-1 - operator.size - 1)]

    if authorised_attributes == :all || authorised_attributes.include?(attribute_name)
      case operator
      when 'eq'
        current_active_record_relation = current_active_record_relation.where(attribute_name => value)
      when 'not_eq'
        current_active_record_relation = current_active_record_relation.where.not(attribute_name => value)
      when 'gt'
        current_active_record_relation = current_active_record_relation.where(model_class.arel_table[attribute_name].gt(value))
      when 'gteq'
        current_active_record_relation = current_active_record_relation.where(model_class.arel_table[attribute_name].gteq(value))
      when 'lt'
        current_active_record_relation = current_active_record_relation.where(model_class.arel_table[attribute_name].lt(value))
      when 'lteq'
        current_active_record_relation = current_active_record_relation.where(model_class.arel_table[attribute_name].lteq(value))
      when 'in'
        current_active_record_relation = current_active_record_relation.where(attribute_name => Array.wrap(value))
      when 'not_in'
        current_active_record_relation = current_active_record_relation.where.not(attribute_name => Array.wrap(value))
      end
    end
  end

  current_active_record_relation
end