Merge branch 'master' into 4523-full-text-search
[arvados.git] / services / api / lib / record_filters.rb
1 # Mixin module providing a method to convert filters into a list of SQL
2 # fragments suitable to be fed to ActiveRecord #where.
3 #
4 # Expects:
5 #   model_class
6 # Operates on:
7 #   @objects
8 module RecordFilters
9
10   # Input:
11   # +filters+        array of conditions, each being [column, operator, operand]
12   # +model_class+    subclass of ActiveRecord being filtered
13   #
14   # Output:
15   # Hash with two keys:
16   # :cond_out  array of SQL fragments for each filter expression
17   # :param_out  array of values for parameter substitution in cond_out
18   def record_filters filters, model_class
19     conds_out = []
20     param_out = []
21
22     ar_table_name = model_class.table_name
23     filters.each do |filter|
24       attrs_in, operator, operand = filter
25       if attrs_in == 'any' && operator != '@@'
26         attrs = model_class.searchable_columns(operator)
27       elsif attrs_in.is_a? Array
28         attrs = attrs_in
29       else
30         attrs = [attrs_in]
31       end
32       if !filter.is_a? Array
33         raise ArgumentError.new("Invalid element in filters array: #{filter.inspect} is not an array")
34       elsif !operator.is_a? String
35         raise ArgumentError.new("Invalid operator '#{operator}' (#{operator.class}) in filter")
36       end
37
38       cond_out = []
39
40       if operator == '@@' # full-text-search
41         if attrs_in != 'any'
42           raise ArgumentError.new("Full text search on individual columns is not supported")
43         end
44         attrs = [] #  skip the generic per-column operator loop below
45         cond_out << model_class.full_text_tsvector+" @@ to_tsquery(?)"
46         param_out << operand.split.each {|s| s.concat(':*')}.join(' & ')
47       else
48        attrs.each do |attr|
49         if !model_class.searchable_columns(operator).index attr.to_s
50           raise ArgumentError.new("Invalid attribute '#{attr}' in filter")
51         end
52         case operator.downcase
53         when '=', '<', '<=', '>', '>=', '!=', 'like', 'ilike'
54           attr_type = model_class.attribute_column(attr).type
55           operator = '<>' if operator == '!='
56           if operand.is_a? String
57             if attr_type == :boolean
58               if not ['=', '<>'].include?(operator)
59                 raise ArgumentError.new("Invalid operator '#{operator}' for " \
60                                         "boolean attribute '#{attr}'")
61               end
62               case operand.downcase
63               when '1', 't', 'true', 'y', 'yes'
64                 operand = true
65               when '0', 'f', 'false', 'n', 'no'
66                 operand = false
67               else
68                 raise ArgumentError("Invalid operand '#{operand}' for " \
69                                     "boolean attribute '#{attr}'")
70               end
71             end
72             cond_out << "#{ar_table_name}.#{attr} #{operator} ?"
73             if (# any operator that operates on value rather than
74                 # representation:
75                 operator.match(/[<=>]/) and (attr_type == :datetime))
76               operand = Time.parse operand
77             end
78             param_out << operand
79           elsif operand.nil? and operator == '='
80             cond_out << "#{ar_table_name}.#{attr} is null"
81           elsif operand.nil? and operator == '<>'
82             cond_out << "#{ar_table_name}.#{attr} is not null"
83           elsif (attr_type == :boolean) and ['=', '<>'].include?(operator) and
84               [true, false].include?(operand)
85             cond_out << "#{ar_table_name}.#{attr} #{operator} ?"
86             param_out << operand
87           else
88             raise ArgumentError.new("Invalid operand type '#{operand.class}' "\
89                                     "for '#{operator}' operator in filters")
90           end
91         when 'in', 'not in'
92           if operand.is_a? Array
93             cond_out << "#{ar_table_name}.#{attr} #{operator} (?)"
94             param_out << operand
95             if operator == 'not in' and not operand.include?(nil)
96               # explicitly allow NULL
97               cond_out[-1] = "(#{cond_out[-1]} OR #{ar_table_name}.#{attr} IS NULL)"
98             end
99           else
100             raise ArgumentError.new("Invalid operand type '#{operand.class}' "\
101                                     "for '#{operator}' operator in filters")
102           end
103         when 'is_a'
104           operand = [operand] unless operand.is_a? Array
105           cond = []
106           operand.each do |op|
107             cl = ArvadosModel::kind_class op
108             if cl
109               cond << "#{ar_table_name}.#{attr} like ?"
110               param_out << cl.uuid_like_pattern
111             else
112               cond << "1=0"
113             end
114           end
115           cond_out << cond.join(' OR ')
116         end
117        end
118       end
119       conds_out << cond_out.join(' OR ') if cond_out.any?
120     end
121
122     {:cond_out => conds_out, :param_out => param_out}
123   end
124
125 end