Class: CamaleonCms::Admin::CommentsController

Inherits:
CamaleonCms::AdminController
  • Object
show all
Includes:
CommentHelper
Defined in:
app/controllers/camaleon_cms/admin/comments_controller.rb

Instance Method Summary collapse

Methods included from CommentHelper

#cama_comments_get_common_data, #cama_comments_render_html

Instance Method Details

#answerObject

render a form to register a new comment



21
22
23
24
# File 'app/controllers/camaleon_cms/admin/comments_controller.rb', line 21

def answer
  @answer = @comment.children.new
  render 'form_answer', layout: false
end

#createObject



56
57
58
59
60
# File 'app/controllers/camaleon_cms/admin/comments_controller.rb', line 56

def create
  comment = @post.comments.create(cama_comments_get_common_data.merge({post_id: @post.id, content: params[:comment][:content]}))
  flash[:notice] = t('camaleon_cms.admin.comments.message.responses')
  redirect_to action: :index
end

#destroyObject



62
63
64
65
# File 'app/controllers/camaleon_cms/admin/comments_controller.rb', line 62

def destroy
  flash[:notice] = t('camaleon_cms.admin.comments.message.destroy') if @comment.destroy
  redirect_to action: :index
end

#editObject



16
17
18
# File 'app/controllers/camaleon_cms/admin/comments_controller.rb', line 16

def edit
  render 'form', layout: false
end

#indexObject

list of post comments for current post



12
13
14
# File 'app/controllers/camaleon_cms/admin/comments_controller.rb', line 12

def index
  @comments = @post.comments.main.paginate(:page => params[:page], :per_page => current_site.admin_per_page)
end

#listObject



7
8
9
# File 'app/controllers/camaleon_cms/admin/comments_controller.rb', line 7

def list
  @posts = current_site.posts.no_trash.joins(:comments).select("#{CamaleonCms::Post.table_name}.*, #{CamaleonCms::PostComment.table_name}.post_id").uniq.paginate(:page => params[:page], :per_page => current_site.admin_per_page)
end

#newObject



51
52
53
54
# File 'app/controllers/camaleon_cms/admin/comments_controller.rb', line 51

def new
  @comment = @post.comments.new
  render 'form', layout: false
end

#save_answerObject

save a new anwer for this comment



27
28
29
30
31
# File 'app/controllers/camaleon_cms/admin/comments_controller.rb', line 27

def save_answer
  answer = @comment.children.create(cama_comments_get_common_data.merge({post_id: @post.id, content: params[:comment][:content]}))
  flash[:notice] = t('camaleon_cms.admin.comments.message.responses')
  redirect_to action: :index
end

#toggle_statusObject

toggle status of a comment



34
35
36
37
38
39
40
# File 'app/controllers/camaleon_cms/admin/comments_controller.rb', line 34

def toggle_status
  _s = {a: "approved", s: "spam", p: "pending"}
  k = _s[params[:s].to_sym]
  @comment.update(approved: k)
  flash[:notice] = "#{t('camaleon_cms.admin.comments.message.change_status')} #{t("camaleon_cms.admin.comments.message.#{k}")}"
  redirect_to action: :index
end

#updateObject



42
43
44
45
46
47
48
49
# File 'app/controllers/camaleon_cms/admin/comments_controller.rb', line 42

def update
  if @comment.update(content: params[:comment][:content])
    flash[:notice] = t('camaleon_cms.admin.comments.message.updated')
    redirect_to action: :index
  else
    render 'form'
  end
end