3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# File 'lib/kasket/select_manager_mixin.rb', line 3
def to_kasket_query(klass, binds = [])
begin
query = Kasket::Visitor.new(klass, binds).accept(ast)
rescue TypeError return nil
end
return nil if query.nil? || query == :unsupported
return nil if query[:attributes].blank?
query[:index] = query[:attributes].map(&:first)
if query[:limit]
return nil if query[:limit] > 1
end
if query[:index].size > 1 && query[:attributes].any? { |attribute, value| value.is_a?(Array) }
return nil
end
query[:key] = klass.kasket_key_for(query[:attributes])
query[:key] << '/first' if query[:limit] == 1 && !query[:index].include?(:id)
query
end
|