Class: CamaleonCms::Admin::CommentsController

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

Constant Summary

Constants included from UploaderHelper

UploaderHelper::SUSPICIOUS_PATTERNS

Instance Method Summary collapse

Methods included from CommentHelper

#cama_comments_get_common_data, #cama_comments_render_html

Methods inherited from CamaleonCms::AdminController

#ajax, #dashboard, #search

Methods included from ApplicationHelper

#cama_do_pagination, #cama_get_i18n_frontend, #cama_shortcode_print

Methods included from CustomFieldsHelper

#cama_custom_field_elements, #cf_add_model

Methods included from CategoryHelper

#cama_category_get_options_html

Methods included from PostTypeHelper

#cama_hierarchy_post_list, #post_type_html_inputs, #post_type_list_taxonomy, #post_type_status

Methods included from MenusHelper

#admin_menu_add_menu, #admin_menu_append_menu_item, #admin_menu_draw, #admin_menu_insert_menu_after, #admin_menu_insert_menu_before, #admin_menu_prepend_menu_item, #admin_menus_add_commons

Methods included from BreadcrumbHelper

#admin_breadcrumb_add, #cama_admin_title_draw

Methods inherited from CamaleonController

#captcha, #render_error

Methods included from EmailHelper

#cama_send_email, #cama_send_mail_to_admin, #send_email, #send_password_reset_email, #send_user_confirm_email

Methods included from HooksHelper

#hook_run, #hook_skip, #hooks_run

Methods included from PluginsHelper

#current_plugin, #plugin_asset_path, #plugin_asset_url, #plugin_destroy, #plugin_install, #plugin_layout, #plugin_load_helpers, #plugin_uninstall, #plugin_upgrade, #plugin_view, #plugins_initialize, #self_plugin_key

Methods included from SiteHelper

#cama_current_site_host_port, #cama_get_list_layouts_files, #cama_get_list_template_files, #cama_is_test_request?, #current_locale, #current_site, #current_theme, #site_after_install, #site_install_theme, #site_uninstall_theme

Methods included from UploaderHelper

#cama_crop_image, #cama_file_path_to_url, #cama_resize_and_crop, #cama_resize_upload, #cama_tmp_upload, #cama_uploader, #cama_uploader_generate_thumbnail, #cama_url_to_file_path, #slugify, #slugify_folder, #upload_file, #uploader_verify_name

Methods included from CamaleonHelper

#cama_cache_fetch, #cama_draw_timer, #cama_edit_link, #cama_is_admin_request?, #cama_pluralize_text, #cama_requestAction, #cama_sitemap_cats_generator, #cama_t, #ct

Methods included from CaptchaHelper

#cama_captcha_build, #cama_captcha_increment_attack, #cama_captcha_reset_attack, #cama_captcha_tag, #cama_captcha_tags_if_under_attack, #cama_captcha_total_attacks, #cama_captcha_under_attack?, #cama_captcha_verified?, #captcha_verify_if_under_attack

Methods included from ContentHelper

#cama_content_after_draw, #cama_content_append, #cama_content_before_draw, #cama_content_init, #cama_content_prepend

Methods included from ThemeHelper

#self_theme_key, #theme_asset_file_path, #theme_asset_path, #theme_asset_url, #theme_home_page, #theme_init, #theme_layout, #theme_view

Methods included from ShortCodeHelper

#cama_strip_shortcodes, #do_shortcode, #render_shortcode, #shortcode_add, #shortcode_change_template, #shortcode_delete, #shortcodes_init

Methods included from UserRolesHelper

#cama_get_roles_values

Methods included from HtmlHelper

#append_asset_content, #append_asset_libraries, #append_pre_asset_content, #cama_assets_library_register, #cama_draw_custom_assets, #cama_draw_pre_asset_contents, #cama_get_options_html_from_items, #cama_html_helpers_init, #cama_html_tooltip, #cama_load_libraries

Methods included from SessionHelper

#cama_authenticate, #cama_current_role, #cama_current_user, #cama_get_session_id, #cama_logout_user, #cama_on_heroku?, #cama_register_user, #cama_sign_in?, #cookie_auth_token_complete?, #cookie_split_auth_token, #login_user, #login_user_with_password, #session_back_to_parent, #session_switch_user, #user_auth_token_from_cookie

Instance Method Details

#answerObject

render a form to register a new comment



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

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

#createObject



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

def create
  @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



70
71
72
73
# File 'app/controllers/camaleon_cms/admin/comments_controller.rb', line 70

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

#editObject



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

def edit
  render 'form', layout: false
end

#indexObject

list of post comments for current post



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

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

#listObject



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

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



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

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

#save_answerObject

save a new anwer for this comment



32
33
34
35
36
37
# File 'app/controllers/camaleon_cms/admin/comments_controller.rb', line 32

def save_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



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

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



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

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