Class: Card::Query::CardClause

Inherits:
Clause show all
Defined in:
lib/card/query/card_clause.rb

Constant Summary collapse

PLUS_ATTRIBUTES =
%w{ plus left_plus right_plus }
ATTRIBUTES =
{
  :basic           => %w{ name type_id content id key updater_id left_id right_id creator_id updater_id codename },
  :relational      => %w{ type part left right editor_of edited_by last_editor_of last_edited_by creator_of created_by member_of member },
  :plus_relational => PLUS_ATTRIBUTES,
  :ref_relational  => %w{ refer_to referred_to_by link_to linked_to_by include included_by },
  :conjunction     => %w{ and or all any },
  :special         => %w{ found_by not sort match complete extension_type },
  :ignore          => %w{ prepend append view params vars size }
}.inject({}) {|h,pair| pair[1].each {|v| h[v.to_sym]=pair[0] }; h }
DEFAULT_ORDER_DIRS =
{ :update => "desc", :relevance => "desc" }
CONJUNCTIONS =
{ :any=>:or, :in=>:or, :or=>:or, :all=>:and, :and=>:and }

Instance Attribute Summary collapse

Attributes inherited from Clause

#clause

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Clause

#cast_type, #match_prep, #quote, #safe_sql

Constructor Details

#initialize(query) ⇒ CardClause

Returns a new instance of CardClause.



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/card/query/card_clause.rb', line 30

def initialize query
  @mods = MODIFIERS.clone
  @clause, @joins = {}, {}
  @selfname, @parent = '', nil
  @sql = SqlStatement.new

  @query = query.clone
  @query.merge! @query.delete(:params) if @query[:params]
  @vars = @query.delete(:vars) || {}
  @vars.symbolize_keys!
  @query = clean(@query)
  @rawclause = @query.deep_clone

  @sql.distinct = 'DISTINCT' if @parent

  self
end

Instance Attribute Details

#join_countObject

Returns the value of attribute join_count.



21
22
23
# File 'lib/card/query/card_clause.rb', line 21

def join_count
  @join_count
end

#joinsObject

Returns the value of attribute joins.



21
22
23
# File 'lib/card/query/card_clause.rb', line 21

def joins
  @joins
end

#queryObject (readonly)

Returns the value of attribute query.



20
21
22
# File 'lib/card/query/card_clause.rb', line 20

def query
  @query
end

#rawclauseObject (readonly)

Returns the value of attribute rawclause.



20
21
22
# File 'lib/card/query/card_clause.rb', line 20

def rawclause
  @rawclause
end

#selfnameObject (readonly)

Returns the value of attribute selfname.



20
21
22
# File 'lib/card/query/card_clause.rb', line 20

def selfname
  @selfname
end

#sqlObject (readonly)

Returns the value of attribute sql.



20
21
22
# File 'lib/card/query/card_clause.rb', line 20

def sql
  @sql
end

Class Method Details

.build(query) ⇒ Object



24
25
26
27
# File 'lib/card/query/card_clause.rb', line 24

def build query
  cardclause = self.new query
  cardclause.merge cardclause.rawclause
end

Instance Method Details

#absolute_name(name) ⇒ Object



83
84
85
# File 'lib/card/query/card_clause.rb', line 83

def absolute_name name
  name =~ /\b_/ ? name.to_name.to_absolute(root.selfname) : name
end

#action_clause(field, linkfield, val) ⇒ Object



406
407
408
409
410
411
# File 'lib/card/query/card_clause.rb', line 406

def action_clause(field, linkfield, val)
  card_select = CardClause.build(:_parent=>self, :return=>'id').merge(val).to_sql
  sql =  "(SELECT DISTINCT #{field} AS join_card_id FROM card_acts INNER JOIN card_actions ON card_acts.id = card_act_id "
  sql += " JOIN (#{card_select}) AS ss ON #{linkfield}=ss.id AND (draft is not true))"
  add_join :ac, sql, :id, :join_card_id
end

#add_join(name, table, cardfield, otherfield, opts = {}) ⇒ Object



374
375
376
377
378
379
380
381
382
383
384
385
386
# File 'lib/card/query/card_clause.rb', line 374

def add_join(name, table, cardfield, otherfield, opts={})
  root.join_count = root.join_count.to_i + 1
  join_alias = "#{name}_#{root.join_count}"
  on = "#{table_alias}.#{cardfield} = #{join_alias}.#{otherfield}"
  #is_subselect = !table.is_a?( Symbol )

  if @mods[:conj] == 'or'  #and is_subselect
    opts[:side] ||= 'LEFT'
    merge field(:cond) => SqlCond.new(on)
  end
  @joins[join_alias] = ["\n  ", opts[:side], 'JOIN', table, 'AS', join_alias, 'ON', on, "\n"].compact.join ' '
  join_alias
end

#and(val) ⇒ Object Also known as: all

~~~~~~~ CONJUNCTION



258
259
260
# File 'lib/card/query/card_clause.rb', line 258

def and val
  subcondition val
end

#basic_conditionsObject



469
470
471
# File 'lib/card/query/card_clause.rb', line 469

def basic_conditions
  @clause.map { |key, val| val.to_sql field_root(key) }.compact.join " #{ current_conjunction } "
end

#clean(query) ⇒ Object



54
55
56
57
58
59
60
61
62
# File 'lib/card/query/card_clause.rb', line 54

def clean query
  query = query.symbolize_keys
  if s = query.delete(:context) then @selfname = s end
  if p = query.delete(:_parent) then @parent   = p end
  query.each do |key,val|
    query[key] = clean_val val
  end
  query
end

#clean_val(val) ⇒ Object



64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/card/query/card_clause.rb', line 64

def clean_val val
  case val
  when String
    if val =~ /^\$(\w+)$/
      val = @vars[$1.to_sym].to_s.strip
    end
    absolute_name val
  when Card::Name             ; clean_val val.s
  when Hash                   ; clean val
  when Array                  ; val.map { |v| clean_val v }
  when Integer, Float, Symbol ; val
  else                        ; raise BadQuery, "unknown WQL value type: #{val.class}"
  end
end

#complete(val) ⇒ Object



346
347
348
349
# File 'lib/card/query/card_clause.rb', line 346

def complete(val)
  no_plus_card = (val=~/\+/ ? '' : "and right_id is null")  #FIXME -- this should really be more nuanced -- it breaks down after one plus
  merge field(:cond) => SqlCond.new(" lower(name) LIKE lower(#{quote(val.to_s+'%')}) #{no_plus_card}")
end

#conjunction(val) ⇒ Object



171
172
173
174
175
# File 'lib/card/query/card_clause.rb', line 171

def conjunction val
  if [String, Symbol].member? val.class
    CONJUNCTIONS[val.to_sym]
  end
end

#created_by(val) ⇒ Object



223
224
225
# File 'lib/card/query/card_clause.rb', line 223

def created_by val
  restrict :creator_id, val
end

#creator_of(val) ⇒ Object



219
220
221
# File 'lib/card/query/card_clause.rb', line 219

def creator_of val
  restrict_by_join :id, val, :return=>'creator_id'
end

#current_conjunctionObject



473
474
475
# File 'lib/card/query/card_clause.rb', line 473

def current_conjunction
  @mods[:conj].blank? ? :and : @mods[:conj]
end

#edited_by(val) ⇒ Object



207
208
209
# File 'lib/card/query/card_clause.rb', line 207

def edited_by val
  action_clause "card_actions.card_id", :actor_id, val
end

#editor_of(val) ⇒ Object



203
204
205
# File 'lib/card/query/card_clause.rb', line 203

def editor_of val
  action_clause :actor_id, "card_actions.card_id", val
end

#extension_type(val) ⇒ Object



351
352
353
354
355
# File 'lib/card/query/card_clause.rb', line 351

def extension_type val
  # DEPRECATED LONG AGO!!!
  Rails.logger.info "using DEPRECATED extension_type in WQL"
  merge field(:right_plus) => AccountID
end

#field(name) ⇒ Object



388
389
390
391
392
393
# File 'lib/card/query/card_clause.rb', line 388

def field name
  @fields ||= {}
  @fields[name] ||= 0
  @fields[name] += 1
  "#{ name }_#{ @fields[name] }"
end

#field_root(key) ⇒ Object



395
396
397
# File 'lib/card/query/card_clause.rb', line 395

def field_root key
  key.to_s.gsub /\_\d+/, ''
end

#fields_to_sqlObject



485
486
487
488
489
490
491
492
493
494
495
# File 'lib/card/query/card_clause.rb', line 485

def fields_to_sql
  field = @mods[:return]
  case (field.blank? ? :card : field.to_sym)
  when :raw;  "#{table_alias}.*"
  when :card; "#{table_alias}.name"
  when :count; "coalesce(count(*),0) as count"
  when :content; "#{table_alias}.db_content"
  else
    ATTRIBUTES[field.to_sym]==:basic ? "#{table_alias}.#{field}" : safe_sql(field)
  end
end

#found_by(val) ⇒ Object



271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
# File 'lib/card/query/card_clause.rb', line 271

def found_by val

  cards = if Hash===val
    Query.new(val).run
  else
    Array.wrap(val).map do |v|
      Card.fetch absolute_name(val), :new=>{}
    end
  end

  cards.each do |c|
    unless c && [SearchTypeID,SetID].include?(c.type_id)
      raise BadQuery, %{"found_by" value needs to be valid Search, but #{c.name} is a #{c.type_name}}
    end
    restrict_by_join :id, CardClause.new(c.get_query).rawclause
  end
end

#hashify(s) ⇒ Object



101
102
103
104
105
106
107
108
# File 'lib/card/query/card_clause.rb', line 101

def hashify s
  case s
    when String;   { :key => s.to_name.key }
    when Integer;  { :id => s              }
    when Hash;     s
    else; raise BadQuery, "Invalid cardclause args #{s.inspect}"
  end
end

#id_from_clause(clause) ⇒ Object



413
414
415
416
417
418
# File 'lib/card/query/card_clause.rb', line 413

def id_from_clause clause
  case clause
  when Integer ; clause
  when String  ; Card.fetch_id(clause)
  end
end

#junction(side, val) ⇒ Object



250
251
252
253
# File 'lib/card/query/card_clause.rb', line 250

def junction side, val
  part_clause, junction_clause = val.is_a?(Array) ? val : [ val, {} ]
  restrict_by_join :id, junction_clause, side=>part_clause, :return=>"#{ side==:left ? :right : :left}_id"
end

#last_edited_by(val) ⇒ Object



215
216
217
# File 'lib/card/query/card_clause.rb', line 215

def last_edited_by val
  restrict :updater_id, val
end

#last_editor_of(val) ⇒ Object



211
212
213
# File 'lib/card/query/card_clause.rb', line 211

def last_editor_of val
  restrict_by_join :id, val, :return=>'updater_id'
end

#left(val) ⇒ Object



195
196
197
# File 'lib/card/query/card_clause.rb', line 195

def left val
  restrict :left_id, val
end

#left_plus(val) ⇒ Object

~~~~~~ PLUS RELATIONAL



238
239
240
# File 'lib/card/query/card_clause.rb', line 238

def left_plus val
  junction :left, val
end

#match(val) ⇒ Object



326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
# File 'lib/card/query/card_clause.rb', line 326

def match(val)
  cxn, val = match_prep val
  val.gsub! /[^#{Card::Name::OK4KEY_RE}]+/, ' '
  return nil if val.strip.empty?


  cond = begin
    val_list = val.split(/\s+/).map do |v|
      name_or_content = ["replace(#{self.table_alias}.name,'+',' ')","#{self.table_alias}.db_content"].map do |field|
        %{#{field} #{ cxn.match quote("[[:<:]]#{v}[[:>:]]") }}
      end
      "(#{name_or_content.join ' OR '})"
    end
    "(#{val_list.join ' AND '})"
  end

  merge field(:cond)=>SqlCond.new(cond)
end

#member(val) ⇒ Object



231
232
233
# File 'lib/card/query/card_clause.rb', line 231

def member val
  merge field(:referred_to_by) => {:left=>val, :right=>RolesID }
end

#member_of(val) ⇒ Object



227
228
229
# File 'lib/card/query/card_clause.rb', line 227

def member_of val
  merge field(:right_plus) => [RolesID, {:refer_to=>val}]
end

#merge(s) ⇒ Object



93
94
95
96
97
98
99
# File 'lib/card/query/card_clause.rb', line 93

def merge s
  s = hashify s
  translate_to_attributes s
  ready_to_sqlize s
  @clause.merge! s
  self
end

#not(val) ⇒ Object



289
290
291
292
293
# File 'lib/card/query/card_clause.rb', line 289

def not val
  subselect = CardClause.build(:return=>:id, :_parent=>self).merge(val).to_sql
  join_alias = add_join :not, subselect, :id, :id, :side=>'LEFT'
  merge field(:cond) => SqlCond.new("#{join_alias}.id is null")
end

#or(val) ⇒ Object Also known as: any



263
264
265
# File 'lib/card/query/card_clause.rb', line 263

def or val
  subcondition val, :conj=>:or
end

#part(val) ⇒ Object



189
190
191
192
# File 'lib/card/query/card_clause.rb', line 189

def part val
  right = Integer===val ? val : val.clone
  subcondition :left=>val, :right=>right, :conj=>:or
end

#permission_conditionsObject



477
478
479
480
481
482
483
# File 'lib/card/query/card_clause.rb', line 477

def permission_conditions
  unless Auth.always_ok? #or ( Card::Query.root_perms_only && !root? )
    read_rules = Auth.as_card.read_rules
    read_rule_list = read_rules.nil? ? 1 : read_rules.join(',')
    "(#{table_alias}.read_rule_id IN (#{ read_rule_list }))"
  end
end

#plus(val) ⇒ Object



246
247
248
# File 'lib/card/query/card_clause.rb', line 246

def plus val
  any( { :left_plus=>val, :right_plus=>val.deep_clone } )
end

#ready_to_sqlize(clause) ⇒ Object



128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# File 'lib/card/query/card_clause.rb', line 128

def ready_to_sqlize clause
  clause.each do |key,val|
    keyroot = field_root(key).to_sym
    if keyroot==:cond                            # internal SQL cond (already ready)
    elsif ATTRIBUTES[keyroot] == :basic          # sqlize knows how to handle these keys; just process value
      clause[key] = ValueClause.new(val, self)
    else                                         # keys need additional processing
      val = clause.delete key
      is_array = Array===val
      case ATTRIBUTES[keyroot]
        when :ignore                               #noop
        when :relational, :special, :conjunction ; relate is_array, keyroot, val, :send
        when :ref_relational                     ; relate is_array, keyroot, val, :refclause
        when :plus_relational
          # Arrays can have multiple interpretations for these, so we have to look closer...
          subcond = is_array && ( Array===val.first || conjunction(val.first) )

                                                   relate subcond, keyroot, val, :send
        else                                     ; raise BadQuery, "Invalid attribute #{key}"
      end
    end
  end

end

#refclause(key, val) ⇒ Object



166
167
168
# File 'lib/card/query/card_clause.rb', line 166

def refclause key, val
  add_join :ref, RefClause.new( key, val, self ).to_sql, :id, :ref_id
end

#relate(subcond, key, val, method) ⇒ Object



153
154
155
156
157
158
159
160
161
162
163
164
# File 'lib/card/query/card_clause.rb', line 153

def relate subcond, key, val, method
  if subcond
    conj = conjunction( val.first ) ? conjunction( val.shift ) : :and
    if conj == current_conjunction                # same conjunction as container, no need for subcondition
      val.each { |v| send method, key, v }
    else
      send conj, val.inject({}) { |h,v| h[field key] = v; h }  # subcondition
    end
  else
    send method, key, val
  end
end

#restrict(id_field, val, opts = {}) ⇒ Object



420
421
422
423
424
425
426
# File 'lib/card/query/card_clause.rb', line 420

def restrict id_field, val, opts={}
  if id = id_from_clause(val)
    merge field(id_field) => id
  else
    restrict_by_join id_field, val, opts
  end
end

#restrict_by_join(id_field, val, opts = {}) ⇒ Object



428
429
430
431
432
# File 'lib/card/query/card_clause.rb', line 428

def restrict_by_join id_field, val, opts={}
  opts.reverse_merge!(:return=>:id, :_parent=>self)
  subselect = CardClause.build(opts).merge(val).to_sql
  add_join "card_#{id_field}", subselect, id_field, opts[:return]
end

#right(val) ⇒ Object



199
200
201
# File 'lib/card/query/card_clause.rb', line 199

def right val
  restrict :right_id, val
end

#right_plus(val) ⇒ Object



242
243
244
# File 'lib/card/query/card_clause.rb', line 242

def right_plus val
  junction :right, val
end

#rootObject



79
80
81
# File 'lib/card/query/card_clause.rb', line 79

def root
  @parent ? @parent.root : self
end

#sort(val) ⇒ Object



295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
# File 'lib/card/query/card_clause.rb', line 295

def sort val
  return nil if @parent
  val[:return] = val[:return] ? safe_sql(val[:return]) : 'db_content'
  item = val.delete(:item) || 'left'

  if val[:return] == 'count'
    cs_args = { :return=>'count', :group=>'sort_join_field', :_parent=>self }
    @mods[:sort] = "coalesce(count,0)" # needed for postgres
    case item
    when 'referred_to'
      join_field = 'id'
      cs = CardClause.build cs_args.merge( field(:cond)=>SqlCond.new("referer_id in #{CardClause.build( val.merge(:return=>'id')).to_sql}") )
      cs.add_join :wr, :card_references, :id, :referee_id
    else
      raise BadQuery, "count with item: #{item} not yet implemented"
    end
  else
    join_field = case item
      when 'left'  ; 'left_id'
      when 'right' ; 'right_id'
      else         ;  raise BadQuery, "sort item: #{item} not yet implemented"
    end
    cs = CardClause.build(val)
  end

  cs.sql.fields << "#{cs.table_alias}.#{join_field} as sort_join_field"
  join_table = add_join :sort, cs.to_sql, :id, :sort_join_field, :side=>'LEFT'
  @mods[:sort] ||= "#{join_table}.#{val[:return]}"

end

#sort_field(key, as, dir) ⇒ Object



511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
# File 'lib/card/query/card_clause.rb', line 511

def sort_field key, as, dir
  order_field = case key
    when "id";              "#{table_alias}.id"
    when "update";          "#{table_alias}.updated_at"
    when "create";          "#{table_alias}.created_at"
    when /^(name|alpha)$/;  "LOWER( #{table_alias}.key )"
    when 'content';         "#{table_alias}.db_content"
    when "relevance";       "#{table_alias}.updated_at" #deprecated
    else
      safe_sql(key)
    end
  order_field = "CAST(#{order_field} AS #{cast_type(as)})" if as
  "#{order_field} #{dir}"

end

#sort_to_sqlObject



497
498
499
500
501
502
503
504
505
506
507
508
509
# File 'lib/card/query/card_clause.rb', line 497

def sort_to_sql
  #fail "order_key = #{@mods[:sort]}, class = #{order_key.class}"

  return nil if @parent or @mods[:return]=='count' #FIXME - extend to all root-only clauses
  order_key ||= @mods[:sort].blank? ? "update" : @mods[:sort]

  order_directives = [order_key].flatten.map do |key|
    dir = @mods[:dir].blank? ? (DEFAULT_ORDER_DIRS[key.to_sym]||'asc') : safe_sql(@mods[:dir]) #wonky
    sort_field key, @mods[:sort_as], dir
  end.join ', '
  "ORDER BY #{order_directives}"

end

#subcondition(val, args = {}) ⇒ Object



399
400
401
402
403
404
# File 'lib/card/query/card_clause.rb', line 399

def subcondition(val, args={})
  args = { :return=>:condition, :_parent=>self }.merge(args)
  cardclause = CardClause.build( args )
  merge field(:cond) => cardclause.merge(val)
  self.joins.merge! cardclause.joins
end

#table_aliasObject



363
364
365
366
367
368
369
370
371
372
# File 'lib/card/query/card_clause.rb', line 363

def table_alias
  case
  when @mods[:return]=='condition'
    @parent ? @parent.table_alias : "t"
  when @parent
    @parent.table_alias + "x"
  else
    "t"
  end
end

#to_sql(*args) ⇒ Object



439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
# File 'lib/card/query/card_clause.rb', line 439

def to_sql *args
  sql.conditions << basic_conditions

  if @mods[:return]=='condition'
    conds = sql.conditions.last
    return conds.blank? ? nil : "(#{conds})"
  end

  if pconds = permission_conditions
    sql.conditions << pconds
  end

  sql.fields.unshift fields_to_sql
  sql.order = sort_to_sql  # has side effects!
  sql.tables = "cards #{table_alias}"
  sql.joins += @joins.values

  sql.conditions << "#{table_alias}.trash is false"

  sql.group = "GROUP BY #{safe_sql(@mods[:group])}" if !@mods[:group].blank?
  unless @parent or @mods[:return]=='count'
    if @mods[:limit].to_i > 0
      sql.limit  = "LIMIT #{  @mods[:limit ].to_i }"
      sql.offset = "OFFSET #{ @mods[:offset].to_i }" if !@mods[:offset].blank?
    end
  end

  sql.to_s
end

#translate_to_attributes(clause) ⇒ Object



110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# File 'lib/card/query/card_clause.rb', line 110

def translate_to_attributes clause
  content = nil
  clause.each do |key,val|
    if key == :_parent
      @parent = clause.delete(key)
    elsif OPERATORS.has_key?(key.to_s) && !ATTRIBUTES[key]
      clause.delete(key)
      content = [key,val]
    elsif MODIFIERS.has_key?(key)
      next if clause[key].is_a? Hash
      val = clause.delete key
      @mods[key] = Array === val ? val : val.to_s
    end
  end
  clause[:content] = content if content
end

#type(val) ⇒ Object

~~~~~~ RELATIONAL



185
186
187
# File 'lib/card/query/card_clause.rb', line 185

def type val
  restrict :type_id, val
end