Class: Caboose::Block

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/caboose/block.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.parse_checkbox_multiple_value(b, arr) ⇒ Object

Parses the value given for a checkbox multiple block



354
355
356
357
358
359
360
361
362
363
364
# File 'app/models/caboose/block.rb', line 354

def self.parse_checkbox_multiple_value(b, arr)
  current_value = b.value ? b.value.split('|') : []
  v = arr[0]
  checked = arr[1].to_i == 1
  if checked && !current_value.include?(v)
    current_value << v      
  elsif !checked && current_value.include?(v)
    current_value.delete(v)
  end
  return current_value.join('|')
end

Instance Method Details

#block_message(block, ex) ⇒ Object



206
207
208
209
210
211
212
213
214
# File 'app/models/caboose/block.rb', line 206

def block_message(block, ex)    
  msg = block ? (block.block_type ? "Error with #{block.block_type.name} block (block_type_id #{block.block_type.id}, block_id #{block.id})\n" : "Error with block (block_id #{block.id})\n") : ''
  if ex.is_a?(String)
    Caboose.log("#{msg}#{ex}")
  else
    Caboose.log("#{msg}#{ex.message}\n#{ex.backtrace.join("\n")}")
  end
  return msg
end

#caste_valueObject



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'app/models/caboose/block.rb', line 35

def caste_value
  if self.block_type_id.nil?
    bt = Caboose::BlockType.where(:field_type => 'text').first
    if bt.nil?
      bt = Caboose::BlockType.create(:name => 'text', :description => 'Text', :field_type => 'text', :default => '', :width => 800, :height => 400, :fixed_placeholder => false)
    end      
    self.block_type_id = bt.id
  end
  #if self.block_type_id.field_type.nil?
  #  self.block_type.field_type = 'text'      
  #end        
  #if self.block_type.field_type == 'checkbox'
  #  v = self.value
  #  self.value = v ? (v == 1 || v == '1' || v == true ? 1 : 0) : 0        
  #end
end

#child(name) ⇒ Object



65
66
67
# File 'app/models/caboose/block.rb', line 65

def child(name)
  Caboose::Block.where("parent_id = ? and name = ?", self.id, name).first
end

#child_value(name) ⇒ Object



57
58
59
60
61
62
63
# File 'app/models/caboose/block.rb', line 57

def child_value(name)
  b = self.child(name)
  return nil if b.nil?
  return b.image if b.block_type.field_type == 'image'
  return b.file  if b.block_type.field_type == 'file'
  return b.value        
end

#create_children(block_type_override = nil) ⇒ Object



69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'app/models/caboose/block.rb', line 69

def create_children(block_type_override = nil)
  bt = block_type_override ? block_type_override : block_type
  bt.children.each do |bt2|
    bt_id = bt2.id      
    #if bt2.parent_id
    #  new_bt_id = Caboose::BlockType.where(:name => bt2.field_type).first.id 
    #end      
    if self.child(bt2.name).nil?
      b = Caboose::Block.create(
        :page_id => self.page_id,
        :parent_id => self.id, 
        :block_type_id => bt_id,
        :name => bt2.name,
        :value => bt2.default
      )
      b.create_children(bt2)
    end
  end
end

#full_nameObject



52
53
54
55
# File 'app/models/caboose/block.rb', line 52

def full_name
  return self.name if parent_id.nil?
  return "#{parent.full_name}_#{self.name}"
end

#get_global_value(site_id) ⇒ Object

Returns the master block for this global block



329
330
331
332
333
334
335
336
337
338
339
# File 'app/models/caboose/block.rb', line 329

def get_global_value(site_id)
  return if !self.block_type.is_global    
  return if !Caboose::Block.includes(:page).where("blocks.id <> ? and block_type_id = ? and pages.site_id = ?", self.id, self.block_type_id, site_id).exists?        
  b = Caboose::Block.includes(:page).where("blocks.id <> ? and block_type_id = ? and pages.site_id = ?", self.id, self.block_type_id, site_id).reorder("blocks.id").first    
  self.value = b.value
  self.save
  
  self.children.each do |b2|
    b2.get_global_value(site_id) if b2.block_type.is_global
  end    
end

#js_hashObject



279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
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
# File 'app/models/caboose/block.rb', line 279

def js_hash
  kids = self.children.collect { |b| b.js_hash }
  bt = self.block_type    
  return {
    'id'             => self.id,           
    'page_id'        => self.page_id,      
    'parent_id'      => self.parent_id,
    'parent_title'   => self.parent ? self.parent.title : '',
    'block_type_id'  => self.block_type_id,    
    'sort_order'     => self.sort_order,
    'name'           => self.name,
    'value'          => self.value,
    'children'       => kids,      
    'block_type'     => {      
      'id'                              => bt.id,                            
      'parent_id'                       => bt.parent_id,                     
      'name'                            => bt.name,
      'description'                     => bt.description,
      'render_function'                 => bt.render_function,
      'use_render_function'             => bt.use_render_function,
      'use_render_function_for_layout'  => bt.use_render_function_for_layout,
      'allow_child_blocks'              => bt.allow_child_blocks,
      'field_type'                      => bt.field_type,
      'default'                         => bt.default,
      'width'                           => bt.width,
      'height'                          => bt.height,
      'fixed_placeholder'               => bt.fixed_placeholder,
      'options'                         => bt.options,
      'options_function'                => bt.options_function,
      'options_url'                     => bt.options_url
    },
    'file' => {
      'url' => self.file.url
    },
    'image' => {
      'tiny_url'  => self.image.url(:tiny),
      'thumb_url' => self.image.url(:thumb),
      'large_url' => self.image.url(:large),
    }
  }
end

#log_helper(prefix = '') ⇒ Object



321
322
323
324
325
326
# File 'app/models/caboose/block.rb', line 321

def log_helper(prefix = '')
  puts "#{prefix}#{self.id}"
  self.children.each do |b|
    b.log_helper("#{prefix}-")
  end
end

#move_downObject

Move a block down



387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
# File 'app/models/caboose/block.rb', line 387

def move_down
  siblings = Caboose::Block.where(:parent_id => self.parent_id).reorder(:sort_order).all        
  siblings.each_with_index do |b2, i|      
    b2.sort_order = i
    b2.save
  end
  changed = false
  siblings.each_with_index do |b2, i|      
    if i < (siblings.count-1) && b2.id == self.id                
      siblings[i+1].sort_order = i
      siblings[i+1].save        
      b2.sort_order = i + 1
      b2.save
      changed = true
    end      
  end
  return changed            
end

#move_upObject

Move a block up



367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
# File 'app/models/caboose/block.rb', line 367

def move_up    
  siblings = Caboose::Block.where(:parent_id => self.parent_id).reorder(:sort_order).all        
  siblings.each_with_index do |b2, i|      
    b2.sort_order = i
    b2.save
  end
  changed = false
  siblings.each_with_index do |b2, i|      
    if i > 0 && b2.id == self.id                
      siblings[i-1].sort_order = i
      siblings[i-1].save        
      b2.sort_order = i - 1
      b2.save
      changed = true
    end      
  end
  return changed            
end

#partial(name, options) ⇒ Object



224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
# File 'app/models/caboose/block.rb', line 224

def partial(name, options)    
  defaults = { :modal => false, :empty_text => '', :editing => false, :css => nil, :js => nil }
  options2 = nil
  if options.is_a?(Hash)
    options2 = defaults.merge(options)
  else
    options2 = { :modal => options.modal, :empty_text => options.empty_text, :editing => options.editing, :css => options.css, :js => options.js }        
  end
  options2[:block] = self
  
  view = ActionView::Base.new(ActionController::Base.view_paths)
  site = options[:site]
  
  begin
    str = view.render(:partial => "../../sites/#{site.name}/blocks/#{name}", :locals => options2)
  rescue ActionView::MissingTemplate => ex      
    begin
      str = view.render(:partial => "caboose/blocks/#{name}", :locals => options2)
    rescue
      Caboose.log("Partial caboose/blocks/#{name} doesn't exist.")
      str = "<p class='note error'>#{self.partial_message(block, ex)}</p>"
    end      
  end
    
  return str
end

#partial_message(name, ex) ⇒ Object



251
252
253
254
255
256
257
258
259
# File 'app/models/caboose/block.rb', line 251

def partial_message(name, ex)    
  msg = "Error with partial #{name}:\n"
  if ex.is_a?(String)
    Caboose.log("#{msg}#{ex}")
  else
    Caboose.log("#{msg}#{ex.message}\n#{ex.backtrace.join("\n")}")
  end
  return msg
end

#render(block, options) ⇒ Object



89
90
91
92
93
94
95
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
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
# File 'app/models/caboose/block.rb', line 89

def render(block, options)
  #Caboose.log("block.render\nself.id = #{self.id}\nblock = #{block}\nblock.full_name = #{block.full_name}\noptions.class = #{options.class}\noptions = #{options}")                
  if block && block.is_a?(String)
    #Caboose.log("Block #{block} is a string, finding block object... self.id = #{self.id}")                                          
    b = self.child(block)        
    if b.nil?
      self.create_children
      b = self.child(block)
      if b.nil?        
        Caboose.log("No block exists with name \"#{block}\".")
        return false
      end
    end
    block = b
  end        
  str = ""

  defaults = {
    :view => nil,
    :controller_view_content => nil,
    :modal => false,
    :empty_text => '',
    :editing => false,
    :css => nil,
    :js => nil,
    :csrf_meta_tags => nil,
    :csrf_meta_tags2 => nil,    
    :logged_in_user => nil
  }    
  #defaults = { :modal => false, :empty_text => '', :editing => false, :css => nil, :js => nil, :block => block }
  options2 = nil
  if options.is_a?(Hash)
    options2 = defaults.merge(options)
  else
    #options2 = { :modal => options.modal, :empty_text => options.empty_text, :editing => options.editing, :css => options.css, :js => options.js }
    options2 = {
      :view                    => options.view                    ? options.view                    : nil,
      :controller_view_content => options.controller_view_content ? options.controller_view_content : nil,
      :modal                   => options.modal                   ? options.modal                   : nil,
      :empty_text              => options.empty_text              ? options.empty_text              : nil,
      :editing                 => options.editing                 ? options.editing                 : nil,
      :css                     => options.css                     ? options.css                     : nil,
      :js                      => options.js                      ? options.js                      : nil,
      :csrf_meta_tags          => options.csrf_meta_tags          ? options.csrf_meta_tags          : nil,
      :csrf_meta_tags2         => options.csrf_meta_tags2         ? options.csrf_meta_tags2         : nil,
      :logged_in_user          => options.logged_in_user          ? options.logged_in_user          : nil
    }
  end
  options2[:block] = block

  view = options2[:view]     
  view = ActionView::Base.new(ActionController::Base.view_paths) if view.nil?
    
  if block.block_type.use_render_function && block.block_type.render_function
    begin
      str = view.render(:partial => "caboose/blocks/render_function", :locals => options2)
    rescue Exception => ex
      msg = block ? (block.block_type ? "Error with #{block.block_type.name} block (block_type_id #{block.block_type.id}, block_id #{block.id})\n" : "Error with block (block_id #{block.id})\n") : ''             
      Caboose.log("#{msg}#{ex.message}\n#{ex.backtrace.join("\n")}")
      str = "<p class='note error'>#{msg}</p>"
    end            
  else
    
    full_name = block.block_type.full_name
    full_name = "lksdjflskfjslkfjlskdfjlkjsdf" if full_name.nil? || full_name.length == 0
    
    # Check the local site first      
    site = options2[:site]
    if site.nil?
      self.block_message(block, "Error: site variable is nil.")
    end
      
    begin                        
      str = view.render(:partial => "../../sites/#{site.name}/blocks/#{full_name}", :locals => options2)        
    rescue ActionView::MissingTemplate => ex
      #Caboose.log("Can't find partial: ../../sites/#{site.name}/blocks/#{full_name}")
      begin
        str = view.render(:partial => "../../sites/#{site.name}/blocks/#{block.block_type.name}", :locals => options2)                    
      rescue ActionView::MissingTemplate => ex
        #Caboose.log("Can't find partial: ../../sites/#{site.name}/blocks/#{block.block_type.name}")
        begin                        
          str = view.render(:partial => "../../sites/#{site.name}/blocks/#{block.block_type.field_type}", :locals => options2)            
        rescue ActionView::MissingTemplate
          #Caboose.log("Can't find partial: ../../sites/#{site.name}/blocks/#{block.block_type.field_type}")
          begin
            str = view.render(:partial => "caboose/blocks/#{full_name}", :locals => options2)        
          rescue ActionView::MissingTemplate
            #Caboose.log("Can't find partial: caboose/blocks/#{full_name}")
            begin          
              str = view.render(:partial => "caboose/blocks/#{block.block_type.name}", :locals => options2)                    
            rescue ActionView::MissingTemplate
              #Caboose.log("Can't find partial: caboose/blocks/#{block.block_type.name}")
              begin                        
                str = view.render(:partial => "caboose/blocks/#{block.block_type.field_type}", :locals => options2)            
              rescue Exception => ex                  
                #Caboose.log("Can't find partial: caboose/blocks/#{block.block_type.field_type}")
                str = "<p class='note error'>#{self.block_message(block, ex)}</p>"
              end
            rescue Exception => ex                          
              str = "<p class='note error'>#{self.block_message(block, ex)}</p>"
            end
          rescue Exception => ex              
            str = "<p class='note error'>#{self.block_message(block, ex)}</p>"
          end
        rescue Exception => ex                  
          str = "<p class='note error'>#{self.block_message(block, ex)}</p>"
        end                              
      rescue Exception => ex                                                     
        str = "<p class='note error'>#{self.block_message(block, ex)}</p>"
      end        
    rescue Exception => ex        
      str = "<p class='note error'>#{self.block_message(block, ex)}</p>"
    end                    
  end    
  return str
end

#render_from_function(options) ⇒ Object



216
217
218
219
220
221
222
# File 'app/models/caboose/block.rb', line 216

def render_from_function(options)
  self.create_children    
  #locals = OpenStruct.new(:block => self, :empty_text => empty_text, :editing => editing)
  locals = OpenStruct.new(options)
  erb = ERB.new(block_type.render_function)
  return erb.result(locals.instance_eval { binding })
end

#titleObject

def child_block_link

return "<div class='new_block' id='new_block_#{self.id}'>New Block</div>"

end

def new_block_before_link

return "<div class='new_block_before' id='new_block_before_#{self.id}'>New Block</div>"

end

def new_block_after_link

return "<div class='new_block_after' id='new_block_after_#{self.id}'>New Block</div>"

end



271
272
273
274
275
276
277
# File 'app/models/caboose/block.rb', line 271

def title    
  str = "#{self.block_type.name}"
  if self.name && self.name.strip.length > 0
    str << " (#{self.name})"
  end
  return str
end

#update_global_value(value, site_id) ⇒ Object

Updates all the global blocks for the given site



342
343
344
345
346
347
348
349
350
351
# File 'app/models/caboose/block.rb', line 342

def update_global_value(value, site_id)
  return if !self.block_type.is_global    
  return if !Caboose::Block.includes(:page).where("blocks.id <> ? and block_type_id = ? and pages.site_id = ?", self.id, self.block_type_id, site_id).exists?        
  
  sql = ["update blocks set value = ? where id in (
      select B.id from blocks B left join pages P on B.page_id = P.id
      where B.id <> ? and B.block_type_id = ? and P.site_id = ?
    )", value, self.id, self.block_type_id, site_id]       
  ActiveRecord::Base.connection.execute(ActiveRecord::Base.send(:sanitize_sql_array, sql))            
end