Class: Caboose::PageBarGenerator

Inherits:
Object
  • Object
show all
Defined in:
app/models/caboose/page_bar_generator.rb

Direct Known Subclasses

Pager

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(post_get, params = nil, options = nil) ⇒ PageBarGenerator

def initialize(post_get, params = nil, options = nil, &custom_url_vars = nil)



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'app/models/caboose/page_bar_generator.rb', line 27

def initialize(post_get, params = nil, options = nil)
  
  params  = {} if params.nil?
  options = {} if options.nil?
  
	# Note: a few keys are required:
	# base_url, page, itemCount, itemsPerPage
	@post_get = post_get
	@original_params = {}
	@params = {}
	@options = {
	  'model'            => '',
		'sort' 			       => '',
		'desc' 			       => 0,
		'base_url'		     => '',
		'page'			       => 1,
		'item_count'		   => 0,
		'items_per_page'   => 10,  			
		'abbreviations'    => {},
		'skip'             => [], # params to skip when printing the page bar
     'additional_where' => [],
		'includes'         => nil # Hash of association includes
		                         # {
		                         #   search_field_1 => [association_name, join_table, column_name],
		                         #   search_field_2 => [association_name, join_table, column_name]
		                         # }  			
	}      
	params.each do |key, val|
	  @original_params[key] = val
	  @params[key] = val 
	end
	options.each { |key, val| @options[key] = val }
	
	#@params.each  { |key, val|  		  
	#  k = @options['abbreviations'].include?(key) ? @options['abbreviations'][key] : nil  		  
	#  @params[key] = post_get[key].nil? ? (k && !post_get[k].nil? ? post_get[k] : val) : post_get[key]  		          
	#}
	
	new_params = {}
	keys_to_delete = []
	@params.each  { |key, val|
	  next if !@options['abbreviations'].has_key?(key)  		  
	  long_key = @options['abbreviations'][key]  		  
     new_params[long_key] = post_get[key] ? post_get[key] : val
     keys_to_delete << key        
	}  	
	keys_to_delete.each { |k| @params.delete(k) }
	new_params.each { |k,v| @params[k] = v }  		
	@original_params.each { |k,v| @original_params[k] = post_get[k] ? post_get[k] : v }  		
	@params.each  { |k,v| @params[k]  = post_get[k] ? post_get[k] : v }  		
	@options.each { |k,v| @options[k] = ok(post_get[k]) ? post_get[k] : v }  		  		
	#@custom_url_vars = custom_url_vars if !custom_url_vars.nil?
	@use_url_params = @options['use_url_params'].nil? ? Caboose.use_url_params : @options['use_url_params']
   
	fix_desc
	set_item_count
end

Instance Attribute Details

#custom_url_varsObject

Parameters: params: array of key/value pairs that must include the following: base_url: url without querystring onto which the parameters are added. itemCount: Total number of items.

In addition, the following parameters are not required but may be included in the array: itemsPerPage: Number of items you want to show per page. Defaults to 10 if not present. page: Current page number. Defaults to 0 if not present.



24
25
26
# File 'app/models/caboose/page_bar_generator.rb', line 24

def custom_url_vars
  @custom_url_vars
end

#optionsObject

Parameters: params: array of key/value pairs that must include the following: base_url: url without querystring onto which the parameters are added. itemCount: Total number of items.

In addition, the following parameters are not required but may be included in the array: itemsPerPage: Number of items you want to show per page. Defaults to 10 if not present. page: Current page number. Defaults to 0 if not present.



24
25
26
# File 'app/models/caboose/page_bar_generator.rb', line 24

def options
  @options
end

#original_paramsObject

Parameters: params: array of key/value pairs that must include the following: base_url: url without querystring onto which the parameters are added. itemCount: Total number of items.

In addition, the following parameters are not required but may be included in the array: itemsPerPage: Number of items you want to show per page. Defaults to 10 if not present. page: Current page number. Defaults to 0 if not present.



24
25
26
# File 'app/models/caboose/page_bar_generator.rb', line 24

def original_params
  @original_params
end

#paramsObject

Parameters: params: array of key/value pairs that must include the following: base_url: url without querystring onto which the parameters are added. itemCount: Total number of items.

In addition, the following parameters are not required but may be included in the array: itemsPerPage: Number of items you want to show per page. Defaults to 10 if not present. page: Current page number. Defaults to 0 if not present.



24
25
26
# File 'app/models/caboose/page_bar_generator.rb', line 24

def params
  @params
end

#post_getObject

Parameters: params: array of key/value pairs that must include the following: base_url: url without querystring onto which the parameters are added. itemCount: Total number of items.

In addition, the following parameters are not required but may be included in the array: itemsPerPage: Number of items you want to show per page. Defaults to 10 if not present. page: Current page number. Defaults to 0 if not present.



24
25
26
# File 'app/models/caboose/page_bar_generator.rb', line 24

def post_get
  @post_get
end

Instance Method Details

#all_itemsObject



160
161
162
163
164
165
# File 'app/models/caboose/page_bar_generator.rb', line 160

def all_items
 m = model_with_includes.where(self.where)
 n = self.near
 m = m.near(n[0], n[1]) if n
 return m.all
end

#association_for_table_name(table_name) ⇒ Object



116
117
118
119
120
121
# File 'app/models/caboose/page_bar_generator.rb', line 116

def association_for_table_name(table_name)
 @options['includes'].each do |field, arr|
   return arr[0] if table_name_of_association(arr[0]) == table_name                              
  end
  return false
end

#fix_descObject



127
128
129
130
131
132
133
134
# File 'app/models/caboose/page_bar_generator.rb', line 127

def fix_desc
  @options['desc'] = 0 and return if @options['desc'].nil?
  return if @options['desc'] == 1
  return if @options['desc'] == 0
  @options['desc'] = 1 and return if @options['desc'] == 'true' || @options['desc'].is_a?(TrueClass)
  @options['desc'] = 0 and return if @options['desc'] == 'false' || @options['desc'].is_a?(FalseClass)  	  
  @options['desc'] = @options['desc'].to_i 
end

#generate(summary = true) ⇒ Object



178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
# File 'app/models/caboose/page_bar_generator.rb', line 178

def generate(summary = true)
    	  
	# Check for necessary parameter values
	return false if !ok(@options['base_url']) # Error: base_url is required for the page bar generator to work.
	return false if !ok(@options['item_count']) # Error: itemCount is required for the page bar generator to work.
	
	# Set default parameter values if not present
	@options['items_per_page'] = 10  if @options["items_per_page"].nil?
	@options['page']           = 1   if @options["page"].nil?		
	
	page = @options["page"].to_i
			
	# Max links to show (must be odd) 
	total_links = 5
	prev_page = page - 1
	next_page = page + 1
	total_pages = (@options['item_count'].to_f / @options['items_per_page'].to_f).ceil
	
	if (total_pages < total_links)
		start = 1
		stop = total_pages			
	else
		start = page - (total_links/2).floor			
		start = 1 if start < 1
		stop = start + total_links - 1
		
		if (stop > total_pages)
			stop = total_pages				
			start = stop - total_links  				
			start = 1 if start < 1
		end
	end
	
	base_url = url_with_vars      
   base_url << (@use_url_params ? "/" : (base_url.include?("?") ? "&" : "?"))      
   keyval_delim = @use_url_params ? "/" : "="
	var_delim    = @use_url_params ? "/" : "&"            
	
	str = ''
	str << "<p>Results: showing page #{page} of #{total_pages}</p>\n" if summary
	
	if (total_pages > 1)
	  str << "<div class='page_links'>\n"
	  if (page > 1)
	    str << "<a href='#{base_url}page#{keyval_delim}#{prev_page}'>Previous</a>"
    end
	  for i in start..stop
	  	if (page != i)
	  	  str << "<a href='#{base_url}page#{keyval_delim}#{i}'>#{i}</a>"
	  	else
	  		str << "<span class='current_page'>#{i}</span>"
	  	end
	  end
	  if (page < total_pages)
	  	str << "<a href='#{base_url}page#{keyval_delim}#{next_page}'>Next</a>"
	  end
	  str << "</div>\n"
   end
   
	return str
end

#item_values(attribute) ⇒ Object



167
168
169
170
171
172
173
174
175
176
# File 'app/models/caboose/page_bar_generator.rb', line 167

def item_values(attribute)
 arr = []
 m = model_with_includes.where(self.where)
 n = self.near
 m = m.near(n[0], n[1]) if n
 m.all.each do |m2|  	  
   arr << m2[attribute]
 end    	
	return arr.uniq
end

#itemsObject



150
151
152
153
154
155
156
157
158
# File 'app/models/caboose/page_bar_generator.rb', line 150

def items
  assoc = model_with_includes.where(self.where)
   n = self.near
   assoc = assoc.near(n[0], n[1]) if n        		
 	if @options['items_per_page'] != -1
 	  assoc = assoc.limit(self.limit).offset(self.offset)
 	end
 	return assoc.reorder(self.reorder).all
end

#limitObject



425
426
427
# File 'app/models/caboose/page_bar_generator.rb', line 425

def limit
  return @options['items_per_page'].to_i
end

#model_with_includesObject



92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'app/models/caboose/page_bar_generator.rb', line 92

def model_with_includes
  m = @options['model'].constantize
	return m if @options['includes'].nil?
	
	associations = []
	# See if any fields that we know have includes have values 
	@params.each do |k,v|
     next if v.nil? || (v.kind_of?(String) && k.length == 0)
     k.split('_concat_').each do |k2|
       next if !@options['includes'].has_key?(k2)
       associations << @options['includes'][k2][0]
     end
   end        		
   # See if any fields in the sort option are listed in a table_name.column_name format
   if @options['sort']
     @options['sort'].split(',').each do |col|
       tbl_col = col.split('.')
       associations << association_for_table_name(tbl_col[0]) if tbl_col && tbl_col.count > 1          
     end
   end      
	associations.uniq.each { |assoc| m = m.includes(assoc) }
	return m
end

#nearObject



410
411
412
413
414
415
416
417
418
419
420
421
422
423
# File 'app/models/caboose/page_bar_generator.rb', line 410

def near      
 @params.each do |k,v|
    next if !k.ends_with?('_near')        
    arr = k.split('_')
    if arr.length == 3          
      location = @post_get[arr[0]]
      radius = @post_get[arr[1]]          
      v = [location, radius] if location && radius && location.strip.length > 0 && radius.strip.length > 0
    end                
    next if v.nil? || !v.is_a?(Array) || v.count != 2
    return v
  end
  return nil        	  
end

#offsetObject



429
430
431
# File 'app/models/caboose/page_bar_generator.rb', line 429

def offset
  return (@options['page'].to_i - 1) * @options['items_per_page'].to_i
end

#ok(val) ⇒ Object



136
137
138
139
140
141
142
143
144
145
146
147
148
# File 'app/models/caboose/page_bar_generator.rb', line 136

def ok(val)
   return false if val.nil?
   return true  if val.is_a? Array
   return true  if val.is_a? Hash
   return true  if val.is_a? Integer
   return true  if val.is_a? Fixnum
   return true  if val.is_a? Float
   return true  if val.is_a? Bignum
   return true  if val.is_a? TrueClass
   return true  if val.is_a? FalseClass
   return false if val == ""
   return true
end

#reorderObject



433
434
435
436
437
438
439
440
# File 'app/models/caboose/page_bar_generator.rb', line 433

def reorder
  str = "id"
  if (!@options['sort'].nil? && @options['sort'].length > 0)
    str = "#{@options['sort']}"
  end
  str << " desc" if @options['desc'] == 1       
  return str
end

#set_item_countObject



85
86
87
88
89
90
# File 'app/models/caboose/page_bar_generator.rb', line 85

def set_item_count
  m = model_with_includes.where(self.where)
  n = self.near
  m = m.near(n[0], n[1]) if n
  @options['item_count'] = m.count
end


299
300
301
302
303
304
305
306
307
308
309
310
# File 'app/models/caboose/page_bar_generator.rb', line 299

def sortable_links(cols)
  base_url = url_with_vars
  base_url << (base_url.include?("?") ? "&" : "?")
	h = {}
	# key = sort field, value = text to display
	cols.each do |sort, text|    		
		arrow = @options['sort'] == sort ? (@options['desc'] == 1 ? ' &uarr;' : ' &darr;') : ''    		
    link = "#{base_url}sort=#{sort}&desc=" + (@options['desc'] == 1 ? "0" : "1")            		
		h[sort] = [link, "#{text}#{arrow}"]
	end
	return h  	
end

#sortable_table_headings(cols) ⇒ Object



284
285
286
287
288
289
290
291
292
293
294
295
296
297
# File 'app/models/caboose/page_bar_generator.rb', line 284

def sortable_table_headings(cols)
  base_url = url_with_vars
  base_url << (base_url.include?("?") ? "&" : "?")
	str = ''
  
	# key = sort field, value = text to display
	cols.each do |sort, text|    		
		arrow = @options['sort'] == sort ? (@options['desc'] == 1 ? ' &uarr;' : ' &darr;') : ''
		#link = @options['base_url'] + "?#{vars}&sort=#{sort}&desc=" + (@options['desc'] == 1 ? "0" : "1")
    link = "#{base_url}sort=#{sort}&desc=" + (@options['desc'] == 1 ? "0" : "1")            		
		str += "<th><a href='#{link}'>#{text}#{arrow}</a></th>\n"
	end
	return str  	
end

#table_name_of_association(assoc) ⇒ Object



123
124
125
# File 'app/models/caboose/page_bar_generator.rb', line 123

def table_name_of_association(assoc)            
  return @options['model'].constantize.reflect_on_association(assoc.to_sym).class_name.constantize.table_name
end

#to_jsonObject



442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
# File 'app/models/caboose/page_bar_generator.rb', line 442

def to_json
  {
    :options        => @options,        
    :params         => @params,
    :use_url_params => @use_url_params
    
    #:base_url       => @options ? @options['base_url']       : nil,
    #:sort           => @options ? @options['sort']           : nil,
    #:desc           => @options ? @options['desc']           : nil,
    #:item_count     => @options ? @options['item_count']     : nil,  		
    #:items_per_page => @options ? @options['items_per_page'] : nil,
    #:page           => @options ? @options['page']           : nil,
    #:params         => @params,
    #:use_url_params => @use_url_params
  }.to_json
end

#url_with_varsObject



240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
# File 'app/models/caboose/page_bar_generator.rb', line 240

def url_with_vars()
  if !@custom_url_vars.nil?
    return @custom_url_vars.call @options['base_url'], @params
  end
    	  
  vars = []
  @original_params.each do |k,v|          	    
    next if @options['skip'].include?(k)
    k = @options['abbreviations'].include?(k) ? @options['abbreviations'][k] : k  	      	    
    if v.kind_of?(Array)
      v.each do |v2|  	        
        if @use_url_params
          vars.push("#{k}/#{v2}") if !v2.nil?
        else
          vars.push("#{k}[]=#{v2}") if !v2.nil?
        end
      end
    else  	      
      next if v.nil? || (v.kind_of?(String) && v.length == 0)
      if @use_url_params
        vars.push("#{k}/#{v}")
      else
        vars.push("#{k}=#{v}")
      end  	        
    end  	      	    
  end
  if @use_url_params
    vars.push("sort/#{@options['sort']}")
	  vars.push("desc/#{@options['desc']}")  		
	  #vars.push("page/#{@options['page']}")
   else
     vars.push("sort=#{@options['sort']}")
	  vars.push("desc=#{@options['desc']}")  		
	  #vars.push("page=#{@options['page']}")
	end  			
  return "#{@options['base_url']}" if vars.length == 0
  if @use_url_params
    vars = URI.escape(vars.join('/'))  	    
    return "#{@options['base_url']}/#{vars}"
  end
  vars = URI.escape(vars.join('&'))
  return "#{@options['base_url']}?#{vars}"
end

#whereObject



312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
# File 'app/models/caboose/page_bar_generator.rb', line 312

def where
  sql = []
  values = []
  table = @options['model'].constantize.table_name      
 @params.each do |k,v|
    next if v.nil? || (v.kind_of?(String) && v.length == 0)
    next if k.ends_with?('_near')
    
    col = nil        
    if @options['includes'] && @options['includes'].include?(k)           
      arr = @options['includes'][k]
      col = "#{table_name_of_association(arr[0])}.#{arr[1]}"
    end        
    if k.include?('_concat_')
      #arr = k.split('_concat_')
      #col1 = arr[0]
      #col2 = arr[1]           
      #
      #col2 = col2[0..-5] if col2.ends_with?('_gte')
      #col2 = col2[0..-4] if col2.ends_with?('_gt')                        
      #col2 = col2[0..-5] if col2.ends_with?('_lte')                        
      #col2 = col2[0..-4] if col2.ends_with?('_lt')                                  
      #col2 = col2[0..-4] if col2.ends_with?('_bw')                                              
      #col2 = col2[0..-4] if col2.ends_with?('_ew')
      #col2 = col2[0..-6] if col2.ends_with?('_like')
      #                                  
      #col = "concat(#{col1},' ', #{col2})"
      
      arr = k.split('_concat_')                                         
      arr[arr.count-1] = arr[arr.count-1][0..-5] if k.ends_with?('_gte')
      arr[arr.count-1] = arr[arr.count-1][0..-4] if k.ends_with?('_gt')                        
      arr[arr.count-1] = arr[arr.count-1][0..-5] if k.ends_with?('_lte')                        
      arr[arr.count-1] = arr[arr.count-1][0..-4] if k.ends_with?('_lt')                                  
      arr[arr.count-1] = arr[arr.count-1][0..-4] if k.ends_with?('_bw')                                              
      arr[arr.count-1] = arr[arr.count-1][0..-4] if k.ends_with?('_ew')
      arr[arr.count-1] = arr[arr.count-1][0..-6] if k.ends_with?('_like')
      arr[arr.count-1] = arr[arr.count-1][0..-6] if k.ends_with?('_null')
      arr2 = []
      arr.each do |col|
        if @options['includes'] && @options['includes'].include?(col)           
          arr3 = @options['includes'][col]
          arr2 << "#{table_name_of_association(arr3[0])}.#{arr3[1]}"
        else
          arr2 << col
        end            
      end
      col = "concat(#{arr2.join(",' ',")})"
    end
    
    sql2 = ""
    if k.ends_with?('_gte')
      col = "#{table}.#{k[0..-5]}" if col.nil?
      sql2 = "#{col} >= ?"
    elsif k.ends_with?('_gt')
      col = "#{table}.#{k[0..-4]}" if col.nil?
      sql2 = "#{col} > ?"
    elsif k.ends_with?('_lte')
      col = "#{table}.#{k[0..-5]}" if col.nil?
      sql2 = "#{col} <= ?"
    elsif k.ends_with?('_lt')
      col = "#{table}.#{k[0..-4]}" if col.nil?          
      sql2 = "#{col} < ?"
    elsif k.ends_with?('_bw')
      col = "#{table}.#{k[0..-4]}" if col.nil?
      sql2 = "upper(#{col}) like ?"
      v = v.kind_of?(Array) ? v.collect{ |v2| "#{v2}%".upcase } : "#{v}%".upcase          
    elsif k.ends_with?('_ew')
      col = "#{table}.#{k[0..-4]}" if col.nil?
      sql2 = "upper(#{col}) like ?"
      v = v.kind_of?(Array) ? v.collect{ |v2| "%#{v2}".upcase } : "%#{v}".upcase
    elsif k.ends_with?('_like')
      col = "#{table}.#{k[0..-6]}" if col.nil?
      sql2 = "upper(#{col}) like ?"
      v = v.kind_of?(Array) ? v.collect{ |v2| "%#{v2}%".upcase } : "%#{v}%".upcase
    elsif k.ends_with?('_null')
      col = "#{table}.#{k[0..-6]}" if col.nil?
      sql2 = "#{col} #{v == true ? 'is' : 'is not'} null"
      #v = v == true ? 'is' : 'is not'          
    else
      col = "#{table}.#{k}" if col.nil?
      sql2 = "#{col} = ?"
    end
            
    if v.kind_of?(Array)
      sql2 = "(" + v.collect{ |v2| "#{sql2}" }.join(" or ") + ")"
      v.each { |v2| values << v2 }
    elsif !k.ends_with?('_null')              
      values << v
    end
    sql << sql2                          
 end
 @options['additional_where'].each { |x| sql << x }
 sql_str = sql.join(' and ')
 sql = [sql_str]  	   	  
 values.each { |v| sql << v }
 return sql        	  
end