Class: Caboose::PagesController

Inherits:
ApplicationController show all
Defined in:
app/controllers/caboose/pages_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#add_ga_event, #admin_add, #admin_bulk_add, #admin_bulk_delete, #admin_bulk_update, #admin_edit, #admin_json, #admin_json_single, #before_before_action, #hashify_query_string, #init_cart, #logged_in?, #logged_in_user, #login_user, #logout_user, #parse_url_params, #reject_param, #under_construction_or_forwarding_domain?, #user_is_allowed, #user_is_allowed_to, #validate_cookie, #validate_token, #var, #verify_logged_in

Instance Method Details

#admin_block_options_helper(options, b, prefix) ⇒ Object



842
843
844
845
846
847
# File 'app/controllers/caboose/pages_controller.rb', line 842

def admin_block_options_helper(options, b, prefix)
  options << { 'value' => b.id, 'text' => "#{prefix}#{b.title}" }      
  b.children.each do |b2|
    admin_block_options_helper(options, b2, "#{prefix} - ")        
  end      
end

#admin_createObject



490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
# File 'app/controllers/caboose/pages_controller.rb', line 490

def admin_create
  return unless user_is_allowed('pages', 'add')

  resp = Caboose::StdClass.new({
    'error' => nil,
    'redirect' => nil
  })
        
  parent_id = params[:parent_id]
  title = params[:title]
  layout_id = params[:layout_id]  

  parent = Caboose::Page.find(parent_id)

  if title.blank?
    resp.error = "Page Title is required."
  elsif (!logged_in_user.is_allowed('all', 'all') && 
    !Page.page_ids_with_permission(logged_in_user, 'edit'   ).include?(parent_id) &&
    !Page.page_ids_with_permission(logged_in_user, 'approve').include?(parent_id))
    resp.error = "You don't have permission to add a page there."
  end
  if (!resp.error.nil?)
    render :json => resp
    return
  end
  
  # Blank page
  if params[:use_template] == 'no' && params[:use_copy] == 'no' 
    page = Caboose::Page.new
    if parent.nil?
      d = Domain.where(:domain => request.host_with_port).first.site_id
      page.site_id = d.site_id
    else      
      page.site_id = parent.site_id
    end
    page.title = title
    page.parent_id = parent_id      
    page.hide = true
    page.content_format = Caboose::Page::CONTENT_FORMAT_HTML
    page.save
    i = 0
    begin 
      page.slug = Page.slug(page.title + (i > 0 ? " #{i}" : ""))
      page.uri = parent.parent_id == -1 ? page.slug : "#{parent.uri}/#{page.slug}"
      i = i+1
    end while (Page.where(:uri => page.uri, :site_id => page.site_id).count > 0 && i < 10)
    page.save
    # Create the top level block for the page 
    bt = BlockType.find(params[:layout_id])
    Block.create(:page_id => page.id, :block_type_id => bt.id, :name => bt.name)
    # Set the new page's permissions      
    viewers = Caboose::PagePermission.where({ :page_id => parent.id, :action => 'view' }).pluck(:role_id)
    editors = Caboose::PagePermission.where({ :page_id => parent.id, :action => 'edit' }).pluck(:role_id)
    Caboose::Page.update_authorized_for_action(page.id, 'view', viewers)
    Caboose::Page.update_authorized_for_action(page.id, 'edit', editors)
    resp.redirect = "/admin/pages/#{page.id}/content"

  # Copy from an existing page
  elsif !params[:copy_from_id].blank? && params[:use_copy] == 'yes'
    source = Caboose::Page.find(params[:copy_from_id])
    if source
      Caboose.log("copying from source page: #{source.id}")
      new_page = source.duplicate(@site.id, parent_id, false, layout_id, nil)
      new_page.title = params[:title]
      new_page.hide = true
      i = 0
      begin 
        new_page.slug = Page.slug(new_page.title + (i > 0 ? " #{i}" : ""))
        new_page.uri = parent.parent_id == -1 ? new_page.slug : "#{parent.uri}/#{new_page.slug}"
        i = i+1
      end while (Page.where(:uri => new_page.uri, :site_id => @site.id).count > 0 && i < 10)
      new_page.save
      # Set the new page's permissions      
      viewers = Caboose::PagePermission.where({ :page_id => parent.id, :action => 'view' }).pluck(:role_id)
      editors = Caboose::PagePermission.where({ :page_id => parent.id, :action => 'edit' }).pluck(:role_id)
      Caboose::Page.update_authorized_for_action(new_page.id, 'view', viewers)
      Caboose::Page.update_authorized_for_action(new_page.id, 'edit', editors)
      resp.redirect = "/admin/pages/#{new_page.id}/content"
    else
      resp.redirect = "/admin/pages/new"
    end

  # Use a page template
  elsif !params[:template_id].blank? && params[:use_template] == 'yes'
    template = Caboose::PageTemplate.find(params[:template_id])
    if template && template.page
      new_page = template.page.duplicate(@site.id, parent_id, false, layout_id, nil)
      new_page.title = params[:title]
      new_page.hide = true
      i = 0
      begin 
        new_page.slug = Page.slug(new_page.title + (i > 0 ? " #{i}" : ""))
        new_page.uri = parent.parent_id == -1 ? new_page.slug : "#{parent.uri}/#{new_page.slug}"
        i = i+1
      end while (Page.where(:uri => new_page.uri, :site_id => @site.id).count > 0 && i < 10)
      new_page.save
      # Set the new page's permissions      
      viewers = Caboose::PagePermission.where({ :page_id => parent.id, :action => 'view' }).pluck(:role_id)
      editors = Caboose::PagePermission.where({ :page_id => parent.id, :action => 'edit' }).pluck(:role_id)
      Caboose::Page.update_authorized_for_action(new_page.id, 'view', viewers)
      Caboose::Page.update_authorized_for_action(new_page.id, 'edit', editors)
      resp.redirect = "/admin/pages/#{new_page.id}/content"
    else
      resp.redirect = "/admin/pages/new"
    end
  end

  render json: resp
end

#admin_deleteObject



723
724
725
726
727
728
729
730
731
# File 'app/controllers/caboose/pages_controller.rb', line 723

def admin_delete
  return unless user_is_allowed('pages', 'delete')
  p = Page.find(params[:id])
  p.destroy
  resp = StdClass.new({
    'redirect' => '/admin/pages'
  })
  render json: resp
end

#admin_delete_formObject



448
449
450
451
452
453
454
455
456
# File 'app/controllers/caboose/pages_controller.rb', line 448

def admin_delete_form
  return unless user_is_allowed('pages', 'delete')
  @page = Page.find(params[:id])      
  if @page.site_id != @logged_in_user.site_id && !@logged_in_user.is_super_admin?
    redirect_to '/admin/pages'
  else
    render :layout => 'caboose/admin'
  end   
end

#admin_duplicateObject



424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
# File 'app/controllers/caboose/pages_controller.rb', line 424

def admin_duplicate
  return unless user_is_allowed('pages', 'add')
  
  resp = Caboose::StdClass.new
  
  p = Page.where(:id => params[:id]).first      
  site_id              = params[:site_id]
  parent_id            = params[:parent_id]
  block_type_id        = params[:block_type_id]
  child_block_type_id  = params[:child_block_type_id]
  duplicate_children   = params[:duplicate_children] == 'true' ? true : false
  
  if p.nil?            then resp.error = "Invalid page"
  elsif site_id.nil?   then resp.error = "Invalid site"
  elsif parent_id.nil? then resp.error = "Invalid parent"
  else
    resp.new_id = Rails.env.production? ? p.delay(:priority => 20).duplicate(site_id, parent_id, duplicate_children, block_type_id, child_block_type_id) : p.duplicate(site_id, parent_id, duplicate_children, block_type_id, child_block_type_id)
    resp.success = true
  end
  
  render :json => resp
end

#admin_duplicate_formObject



413
414
415
416
417
418
419
420
421
# File 'app/controllers/caboose/pages_controller.rb', line 413

def admin_duplicate_form
  return unless user_is_allowed('pages', 'add')
  @page = Page.find(params[:id])      
  if @page.site_id != @logged_in_user.site_id && !@logged_in_user.is_super_admin?
    redirect_to '/admin/pages'
  else
    render :layout => 'caboose/admin'
  end   
end

#admin_edit_block_orderObject



328
329
330
331
332
# File 'app/controllers/caboose/pages_controller.rb', line 328

def admin_edit_block_order
  return unless user_is_allowed('pages', 'edit')
  @page = Page.find(params[:id])
  render :layout => 'caboose/admin'
end

#admin_edit_child_sort_orderObject



387
388
389
390
391
392
393
394
395
# File 'app/controllers/caboose/pages_controller.rb', line 387

def admin_edit_child_sort_order
  return unless user_is_allowed('pages', 'edit')
  @page = Page.find(params[:id])
  if @page.site_id != @logged_in_user.site_id && !@logged_in_user.is_super_admin?
    redirect_to '/admin/pages'
  else
    render :layout => 'caboose/admin'
  end
end

#admin_edit_contentObject



219
220
221
222
223
224
225
226
227
228
229
230
231
232
# File 'app/controllers/caboose/pages_controller.rb', line 219

def admin_edit_content
  @page = Page.find(params[:id])
  redirect_to "/login?return_url=/admin/pages/#{@page.id}/content" and return if @logged_in_user.nil?
  condition = @logged_in_user && (@logged_in_user.is_super_admin? || (@logged_in_user.site_id == @page.site_id && ( @logged_in_user.is_allowed('all','all') || @logged_in_user.is_allowed('pages','edit') && Page.permissible_actions(@logged_in_user, @page.id).include?('edit'))))
  redirect_to "/admin/pages" and return unless condition
  if @page.block.nil?
    redirect_to "/admin/pages/#{@page.id}/layout"
    return
  end
  Caboose::Block.where(:page_id => @page.id, :new_sort_order => nil).update_all('new_sort_order = sort_order') if @page && !@page.id.nil?
  Caboose::Block.where(:page_id => @page.id, :status => nil).update_all(:status => 'published') if @page && !@page.id.nil?
  @editing = true
  @preview = false
end

#admin_edit_cssObject



354
355
356
357
358
359
360
361
362
# File 'app/controllers/caboose/pages_controller.rb', line 354

def admin_edit_css
  return unless user_is_allowed('pages', 'edit')
  @page = Page.find(params[:id])
  if @page.site_id != @logged_in_user.site_id && !@logged_in_user.is_super_admin?
    redirect_to '/admin/pages'
  else
    render :layout => 'caboose/admin'
  end
end

#admin_edit_custom_fieldsObject



190
191
192
193
194
195
# File 'app/controllers/caboose/pages_controller.rb', line 190

def admin_edit_custom_fields
  return if !user_is_allowed('pages', 'edit')    
  @page = Page.find(params[:id])
  @page.verify_custom_field_values_exist
  render :layout => 'caboose/modal'
end

#admin_edit_generalObject



477
478
479
480
481
482
483
484
485
486
487
# File 'app/controllers/caboose/pages_controller.rb', line 477

def admin_edit_general
  return if !user_is_allowed('pages', 'edit')
  #return if !Page.is_allowed(logged_in_user, params[:id], 'edit')            
  @page = Page.find(params[:id])
  @can_edit_home = user_is_allowed_to('edit', Caboose::Page.index_page(@site.id))
  if @page.site_id != @logged_in_user.site_id && !@logged_in_user.is_super_admin?
    redirect_to '/admin/pages'
  else
    render :layout => 'caboose/admin'
  end
end

#admin_edit_jsObject



365
366
367
368
369
370
371
372
373
# File 'app/controllers/caboose/pages_controller.rb', line 365

def admin_edit_js
  return unless user_is_allowed('pages', 'edit')
  @page = Page.find(params[:id])
  if @page.site_id != @logged_in_user.site_id && !@logged_in_user.is_super_admin?
    redirect_to '/admin/pages'
  else
    render :layout => 'caboose/admin'
  end
end

#admin_edit_layoutObject



246
247
248
249
250
251
252
253
254
# File 'app/controllers/caboose/pages_controller.rb', line 246

def admin_edit_layout
  return unless user_is_allowed('pages', 'edit')      
  @page = Page.find(params[:id])
  if @page.site_id != @logged_in_user.site_id && !@logged_in_user.is_super_admin?
    redirect_to '/admin/pages'
  else
    render :layout => 'caboose/admin'
  end
end

#admin_edit_permissionsObject



198
199
200
201
202
203
204
205
206
# File 'app/controllers/caboose/pages_controller.rb', line 198

def admin_edit_permissions
  return unless user_is_allowed('pages', 'edit')
  @page = Page.find(params[:id])
  if @page.site_id != @logged_in_user.site_id && !@logged_in_user.is_super_admin?
    redirect_to '/admin/pages'
  else
    render :layout => 'caboose/admin'
  end
end

#admin_edit_seoObject



376
377
378
379
380
381
382
383
384
# File 'app/controllers/caboose/pages_controller.rb', line 376

def admin_edit_seo
  return unless user_is_allowed('pages', 'edit')
  @page = Page.find(params[:id])
  if @page.site_id != @logged_in_user.site_id && !@logged_in_user.is_super_admin?
    redirect_to '/admin/pages'
  else
    render :layout => 'caboose/admin'
  end
end

#admin_hide_pageObject



272
273
274
275
276
277
278
279
280
281
282
283
284
# File 'app/controllers/caboose/pages_controller.rb', line 272

def admin_hide_page
  return unless user_is_allowed('pages', 'edit')  
  resp = StdClass.new({'attributes' => {}})    
  @page = Page.find(params[:id])
  if @page.site_id != @logged_in_user.site_id && !@logged_in_user.is_super_admin?
    redirect_to '/admin/pages'
  else
    @page.hide = true
    @page.save
    resp.success = true
  end
  render :json => resp
end

#admin_indexObject



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

def admin_index
  return if !user_is_allowed('pages', 'view')            
  @user = @logged_in_user
  @domain = Domain.where(:domain => request.host_with_port).first
  @home_page = @domain ? Page.index_page(@domain.site_id) : nil
  if @domain && @home_page.nil?
    @home_page = Caboose::Page.create(:site_id => @domain.site_id, :parent_id => -1, :title => 'Home')
  end
  render :layout => 'caboose/admin'      
end

#admin_newObject



179
180
181
182
183
184
185
186
187
# File 'app/controllers/caboose/pages_controller.rb', line 179

def admin_new
  return unless user_is_allowed('pages', 'add')
  @categories = PageTemplateCategory.order(:sort_order).all
  index_page = Page.index_page(@site.id)
  options = []
  sitemap_helper(index_page, options)
  @sitemap = options
  render :layout => 'caboose/admin'
end

#admin_new_blocksObject



347
348
349
350
351
# File 'app/controllers/caboose/pages_controller.rb', line 347

def admin_new_blocks
  return unless user_is_allowed('pages', 'edit')
  @page = Page.find(params[:id])
  render :layout => 'caboose/admin'
end

#admin_optionsObject



783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
# File 'app/controllers/caboose/pages_controller.rb', line 783

def admin_options
  if !user_is_allowed('pages', 'edit')
    render :json => false
    return
  end
  
  case params[:field]
    when nil
    
    when 'sitemap'
      parent_id = params[:parent_id]
      p = nil
      if params[:site_id] && logged_in_user.is_super_admin? 
        p = parent_id ? Page.find(parent_id) : Page.index_page(params[:site_id].to_i)
      else
        p = parent_id ? Page.find(parent_id) : Page.index_page(@site.id)
      end
      options = []
      if p
        sitemap_helper(p, options)
 	    end
 	  when 'robots'
 	    options = [
        { 'value' => 'index'      , 'text' => 'index'     },
        { 'value' => 'noindex'    , 'text' => 'noindex'   },
        { 'value' => 'follow'     , 'text' => 'follow'    },
        { 'value' => 'nofollow'   , 'text' => 'nofollow'  },
        { 'value' => 'nosnippet'  , 'text' => 'nosnippet' },
        { 'value' => 'noodp'      , 'text' => 'noodp'     },
        { 'value' => 'noarchive'  , 'text' => 'noarchive' }
      ]
    when 'format'
      options = [
        { 'value' => 'html', 'text' => 'html' },
        { 'value' => 'text', 'text' => 'text' },
        { 'value' => 'ruby', 'text' => 'ruby' }
      ]
    when 'block'
      options = []
      Block.where("parent_id is null and page_id = ?", params[:id]).reorder(:sort_order).all.each do |b|
        admin_block_options_helper(options, b, "") 
      end
    when 'parentblock'
      options = []
      this_block = Block.find(params[:block_id])
      Block.where("parent_id is null and page_id = ?", params[:id]).reorder(:sort_order).all.each do |b|
        admin_parent_block_options_helper(options, b, "", this_block) 
      end
  end              
  render :json => options 		
end

#admin_page_uriObject



459
460
461
462
463
# File 'app/controllers/caboose/pages_controller.rb', line 459

def admin_page_uri
    return unless user_is_allowed('pages', 'view')
    p = Page.find(params[:id])
    render :json => { 'uri' => p.uri }
end

#admin_parent_block_options_helper(options, b, prefix, this_block) ⇒ Object



849
850
851
852
853
854
855
856
# File 'app/controllers/caboose/pages_controller.rb', line 849

def admin_parent_block_options_helper(options, b, prefix, this_block)
  if b.block_type.allow_child_blocks && (b.block_type.default_child_block_type_id.blank? || b.block_type.default_child_block_type_id == this_block.block_type_id)
    options << { 'value' => b.id, 'text' => "#{prefix}#{b.title}" }
  end      
  b.children.each do |b2|
    admin_parent_block_options_helper(options, b2, "#{prefix} - ", this_block)        
  end
end

#admin_promoteObject



734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
# File 'app/controllers/caboose/pages_controller.rb', line 734

def admin_promote
  resp = StdClass.new
  return unless user_is_allowed('pages', 'edit')
  old_home = Caboose::Page.index_page(@site.id)
  return unless user_is_allowed_to('edit', old_home)
  new_home = Caboose::Page.find(params[:id])
  if new_home && (old_home.site_id == new_home.site_id && new_home.site_id == @site.id) && (@site.id == @logged_in_user.site_id || @logged_in_user.is_super_admin?)
    old_layout = Caboose::Block.where(:parent_id => nil, :page_id => old_home.id).first
    old_footer = old_layout.child('footer') if old_layout
    new_home.parent_id = -1
    new_home.title = 'Home'
    new_home.slug = nil
    new_home.alias = nil
    new_home.uri = nil
    new_home.redirect_url = nil
    new_home.hide = false
    new_home.save
    new_layout = Caboose::Block.where(:parent_id => nil, :page_id => new_home.id).first
    new_footer = new_layout.child('footer') if new_layout
    if new_footer && new_footer.children.count > 0
      new_footer.children.each do |nc|
        nc.destroy
      end
    end
    if old_footer && old_footer.children.count > 0
      old_footer.children.each do |oc|
        oc.parent_id = new_footer.id
        oc.page_id = new_home.id
        oc.save
      end
    end
    old_home.title = 'OLD Home'
    old_home.parent_id = new_home.id
    old_home.slug = "old-home-#{old_home.id}"
    old_home.uri = "old-home-#{old_home.id}"
    old_home.hide = true
    old_home.save
    resp.success = true
    resp.redirect = "/admin/pages/#{new_home.id}"
  else
    resp.success = false
    resp.error = "You don't have permission to do this."
  end
  render json: resp
end

#admin_publishObject



151
152
153
154
155
156
# File 'app/controllers/caboose/pages_controller.rb', line 151

def admin_publish
  return unless user_is_allowed('pages', 'edit')
  page = Page.find(params[:id])
  page.publish
  redirect_to "/admin/pages/#{page.id}/content"
end

#admin_revertObject



159
160
161
162
163
164
# File 'app/controllers/caboose/pages_controller.rb', line 159

def admin_revert
  return unless user_is_allowed('pages', 'edit')
  page = Page.find(params[:id])
  page.revert
  redirect_to "/admin/pages/#{page.id}/content"
end

#admin_show_pageObject



257
258
259
260
261
262
263
264
265
266
267
268
269
# File 'app/controllers/caboose/pages_controller.rb', line 257

def admin_show_page
  return unless user_is_allowed('pages', 'edit')  
  resp = StdClass.new({'attributes' => {}})    
  @page = Page.find(params[:id])
  if @page.site_id != @logged_in_user.site_id && !@logged_in_user.is_super_admin?
    redirect_to '/admin/pages'
  else
    @page.hide = false
    @page.save
    resp.success = true
  end
  render :json => resp
end

#admin_sitemapObject



466
467
468
469
470
471
472
473
474
# File 'app/controllers/caboose/pages_controller.rb', line 466

def admin_sitemap
  return unless user_is_allowed('pages', 'delete')
  @page = Page.find(params[:id])
  if @page.site_id != @logged_in_user.site_id && !@logged_in_user.is_super_admin?
    redirect_to '/admin/pages'
  else
    render :layout => 'caboose/admin'
  end
end

#admin_updateObject



601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
# File 'app/controllers/caboose/pages_controller.rb', line 601

def admin_update
  return unless user_is_allowed('pages', 'edit')
  
  resp = StdClass.new({'attributes' => {}})
  page = Page.find(params[:id])
  
  save = true
  user = logged_in_user
  params.each do |name, value|
    case name
    when 'parent_id'
      value = value.to_i
      if page.id == value
        resp.error = "The page's parent cannot be itself."
      elsif Page.is_child(page.id, value)
        resp.error = "You can't set the current page's parent to be one of its child pages."
      elsif value != page.parent_id
        p = Page.find(value)
        if !user.is_allowed(p, 'edit')
          resp.error = "You don't have access to put the current page there."
        end
      end	
      if resp.error
        save = false
      else
        page.parent = Page.find(value)
        page.save
        Page.update_uri(page)
        resp.attributes['parent_id'] = { 'text' => page.parent.title }
      end

    when 'custom_css', 'custom_css_files', 'custom_js', 'custom_js_files'
      value.strip!
      page[name.to_sym] = value

    when 'title', 'menu_title', 'hide', 'layout', 'redirect_url',
      'seo_title', 'meta_keywords', 'meta_description', 'fb_description', 'gp_description', 'canonical_url'
      page[name.to_sym] = value

    when 'linked_resources'
      result = []
      value.each_line do |line|
        line.chomp!
        line.strip!
        next if line.empty?

        if !(line.ends_with('.js') || line.ends_with('.css'))
          resp.error = "Resource '#{line}' has an unsupported file type ('#{comps.last}')."
          save = false
        end

        result << line
      end
      page.linked_resources = result.join("\n")
      
    when 'content_format'
      page.content_format = value
      resp.attributes['content_format'] = { 'text' => value }
      
    when 'meta_robots'
      arr = value.split(',').collect { |v| v.strip }
      if arr.include?('index') && arr.include?('noindex')
        resp.error = "You can't have both index and noindex"
        save = false
      elsif arr.include?('follow') && arr.include?('nofollow')
        resp.error = "You can't have both follow and nofollow"
        save = false
      else            
        page.meta_robots = arr.join(', ')
        resp.attributes['meta_robots'] = { 'text' => page.meta_robots }
      end
      
    when 'content'
      page.content = value.strip.gsub(/<meta.*?>/, '').gsub(/<link.*?>/, '').gsub(/\<\!--[\S\s]*?--\>/, '')
      
    when 'slug' 
      page.slug = Page.slug(value.strip.length > 0 ? value : page.title)
      page.save
      Page.update_uri(page)                      
      resp.attributes['slug'] = { 'value' => page.slug }
      resp.attributes['uri'] = { 'value' => page.uri }
      
    when 'alias'
      page.alias = Page.slug(value.strip)
      page.save
      Page.update_uri(page)
      resp.attributes['slug'] = { 'value' => page.slug }
      resp.attributes['uri'] = { 'value' => page.uri }

    when 'custom_sort_children'
      if (value == 0)
        page.children.each do |p|
          p.sort_order = 1
          p.save
        end
      end
      page.custom_sort_children = value 		  

    when 'viewers'
      Page.update_authorized_for_action(page.id, 'view', value)
    when 'editors'
      Page.update_authorized_for_action(page.id, 'edit', value)
    when 'approvers'
      Page.update_authorized_for_action(page.id, 'approve', value)
    when 'tags'
      current_tags = page.page_tags.collect{ |t| t.tag }
      new_tags = value.split(',').collect{ |v| v.strip.downcase }.reject{ |t| t.nil? || t.strip.length == 0 }          
      
      # Delete the tags not in new_tags
      current_tags.each{ |t| PageTag.where(:page_id => page.id, :tag => t).destroy_all if !new_tags.include?(t) }
      
      # Add any new tags not in current_tags
      new_tags.each{ |t| PageTag.create(:page_id => page.id, :tag => t) if !current_tags.include?(t) }        
    end
    
  end

  resp.success = save && page.save
  render json: resp
end

#admin_update_block_orderObject



335
336
337
338
339
340
341
342
343
344
# File 'app/controllers/caboose/pages_controller.rb', line 335

def admin_update_block_order
  return unless user_is_allowed('pages', 'edit')
  block_ids = params[:block_ids]      
  i = 0
  block_ids.each do |block_id|
    Block.find(block_id).update_attribute(:sort_order, i)        
    i = i + 1
  end      
  render :json => true
end

#admin_update_child_permissionsObject



209
210
211
212
213
214
215
216
# File 'app/controllers/caboose/pages_controller.rb', line 209

def admin_update_child_permissions
  return unless user_is_allowed('pages', 'edit')      
  page = Page.find(params[:id])
  if page
    Page.update_child_perms(page.id)
  end 
  render :json => { :success => true }
end

#admin_update_child_sort_orderObject



398
399
400
401
402
403
404
405
406
407
408
409
410
# File 'app/controllers/caboose/pages_controller.rb', line 398

def admin_update_child_sort_order
  return unless user_is_allowed('pages', 'edit')      
  @page = Page.find(params[:id])
  page_ids = params[:page_ids]
  i = 0
  page_ids.each do |pid|
    p = Page.find(pid)
    p.sort_order = i
    p.save
    i = i + 1
  end
  render :json => true
end

#admin_update_layoutObject



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
320
321
322
323
324
325
# File 'app/controllers/caboose/pages_controller.rb', line 287

def admin_update_layout
  return unless user_is_allowed('pages', 'edit')      
  bt = BlockType.find(params[:block_type_id])
  old_block = Block.where(:page_id => params[:id], :parent_id => nil).first
  old_block_ids = Block.where(:page_id => params[:id]).pluq(:id)
  new_block = Block.create(:page_id => params[:id], :block_type_id => params[:block_type_id], :name => bt.name)
  new_block.create_children
  saved_blocks = []
  if new_block && old_block && new_block.child('content') && old_block.child('content')
    old_content = old_block.child('content')
    new_content = new_block.child('content')
    old_content.children.each do |child|
      child.parent_id = new_content.id
      child.save
      saved_blocks << child.id
      child.children.each do |c1|
        saved_blocks << c1.id
        c1.children.each do |c2|
          saved_blocks << c2.id
          c2.children.each do |c3|
            saved_blocks << c3.id
            c3.children.each do |c4|
              saved_blocks << c4.id
              c4.children.each do |c5|
                saved_blocks << c5.id
              end
            end
          end
        end
      end
    end
  end
  where1 = saved_blocks.count > 0 ? "id NOT IN (#{saved_blocks.to_s.gsub('[','').gsub(']','')})" : ''
  Block.where(:id => old_block_ids).where(where1).destroy_all
  resp = Caboose::StdClass.new({
    'redirect' => "/admin/pages/#{params[:id]}/content"
  })
  render :json => resp
end

#assetObject



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
# File 'app/controllers/caboose/pages_controller.rb', line 91

def asset   
  uri = uri.to_s.gsub(/^(.*?)\?.*?$/, '\1')
  uri.chop! if uri.end_with?('/')
  uri[0] = '' if uri.starts_with?('/')

  page = Page.page_with_uri(request.host_with_port, File.dirname(uri), false)      
  if page.nil? || !page
    
    # Check for a 301 redirect
    site_id = Site.id_for_domain(request.host_with_port)        
    new_url = PermanentRedirect.match(site_id, request.fullpath)        
    if new_url          
      redirect_to new_url, :status => 301
      return
    end
    
    respond_to do |format|          
      format.all { render :file => "caboose/extras/error404", :layout => "caboose/application", :formats => [:html] }
    end         
    return
  end
    
  asset = Asset.where(:page_id => page.id, :filename => File.basename(uri)).first
  if (asset.nil?)
    respond_to do |format|          
      format.all { render :file => "caboose/extras/error404", :layout => "caboose/application", :formats => [:html] }
    end
    return
  end

  user = logged_in_user
  if (!Page.is_allowed(user, asset.page_id, 'view'))
    render "caboose/pages/asset_no_permission"
    return
  end

  #Caboose.log(Caboose::assets_path, 'Caboose::assets_path')
  path = Caboose::assets_path.join("#{asset.id}.#{asset.extension}")
  #Caboose.log("Sending asset #{path}")
  #send_file(path)
  #send_file(path, :filename => "your_document.pdf", :type => "application/pdf")

  #
  #$path = ASSETS_PATH ."/". $asset->id .".". $asset->extension
  #		
  #$finfo = finfo_open(FILEINFO_MIME_TYPE) // return mime type ala mimetype extension
  #$mime = finfo_file($finfo, $path)
  #finfo_close($finfo)
  #
  #header("X-Sendfile: $path")
  #header("Content-Type: $mime")
  #header("Content-Disposition: inline filename=\"$asset->filename\"")

end

#before_actionObject



7
8
9
# File 'app/controllers/caboose/pages_controller.rb', line 7

def before_action
  @page = Page.page_with_uri(request.host_with_port, '/admin')      
end

#previewObject



235
236
237
238
239
240
241
242
243
# File 'app/controllers/caboose/pages_controller.rb', line 235

def preview
  @page = Page.find(params[:id])
  @editing = true
  @preview = true
  if @page.nil? || @page.site_id != @site.id
    redirect_to "/"
    return
  end
end

#redirectObject



12
13
14
15
# File 'app/controllers/caboose/pages_controller.rb', line 12

def redirect
  @page = Page.find(params[:id])
  redirect_to "/#{@page.uri}"
end

#showObject



18
19
20
21
22
23
24
25
26
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
84
85
86
87
88
89
# File 'app/controllers/caboose/pages_controller.rb', line 18

def show
  
  # Find the page with an exact URI match 
  page = Page.page_with_uri(request.host_with_port, request.fullpath, false)
  
  # Make sure we're not under construction or on a forwarded domain
  d = Caboose::Domain.where(:domain => request.host_with_port).first
  if d.nil?
    Caboose.log("Could not find domain for #{request.host_with_port}\nAdd this domain to the caboose site.")
  elsif d.under_construction == true
    if d.site.under_construction_html && d.site.under_construction_html.strip.length > 0 
      render :text => d.site.under_construction_html
    else 
      render :file => 'caboose/application/under_construction', :layout => false
    end
    return
  # See if we're on a forwarding domain
  elsif d.primary == false && d.forward_to_primary == true
    pd = d.site.primary_domain
    if pd && pd.domain != request.host
      url = "#{request.protocol}#{pd.domain}"
      if d.forward_to_uri && d.forward_to_uri.strip.length > 0
        url << d.forward_to_uri
      elsif request.fullpath && request.fullpath.strip.length > 0 && request.fullpath.strip != '/'
        url << request.fullpath
      end
      redirect_to url
      return
    end
  elsif d.primary == false && !d.forward_to_uri.blank? && request.fullpath == '/'
    url = "#{request.protocol}#{d.domain}#{d.forward_to_uri}"
    redirect_to url
    return
  elsif d.force_ssl == true && request.protocol != 'https://' && Rails.env.production?
    url = "https://#{d.domain}#{request.fullpath}"
    redirect_to url
    return
  end
  
  if !page
    asset
    return
  end
  

  user = logged_in_user      
  if !user.is_allowed(page, 'view')                
    if user.id == User.logged_out_user_id(@site.id)
      redirect_to "/modal/login?return_url=" + URI.encode(request.fullpath)		  		
      return
    else
      # go to 404 page
      render :file => "caboose/extras/error404", :layout => "caboose/application", :formats => [:html]
    end
  end

  if session['use_redirect_urls'] && !page.redirect_url.nil? && page.redirect_url.strip.length > 0
    redirect_to page.redirect_url
    return
  end

  page = Caboose.plugin_hook('page_content', page)      
  @page = page
  @user = user
  @editing = false
  @preview = false
   #   @editmode = !params['edit'].nil? && user.is_allowed('pages', 'edit') ? true : false
   #   @crumb_trail = Caboose::Page.crumb_trail(@page)
   #   @subnav = Caboose::Page.subnav(@page, session['use_redirect_urls'], @user)
  #@subnav.links = @tasks.collect {|href, task| {'href' => href, 'text' => task, 'is_current' => uri == href}}
  
end

#sitemap_helper(page, options, prefix = '') ⇒ Object



835
836
837
838
839
840
# File 'app/controllers/caboose/pages_controller.rb', line 835

def sitemap_helper(page, options, prefix = '')
  options << { 'value' => page.id, 'text' => prefix + page.title }
  page.children.each do |kid|
    sitemap_helper(kid, options, prefix + ' - ')
  end
end