Class: CamaleonCms::Admin::PostsController
- Inherits:
-
CamaleonCms::AdminController
- Object
- ApplicationController
- CamaleonController
- CamaleonCms::AdminController
- CamaleonCms::Admin::PostsController
- Includes:
- CustomFieldsConcern
- Defined in:
- app/controllers/camaleon_cms/admin/posts_controller.rb
Direct Known Subclasses
Constant Summary
Constants included from UploaderHelper
UploaderHelper::SUSPICIOUS_PATTERNS, UploaderHelper::UNSAFE_EVENT_PATTERNS
Instance Method Summary collapse
-
#ajax ⇒ Object
ajax options.
- #create ⇒ Object
- #destroy ⇒ Object
- #edit ⇒ Object
- #index ⇒ Object
- #new ⇒ Object
- #restore ⇒ Object
- #show ⇒ Object
- #trash ⇒ Object
- #update ⇒ Object
Methods inherited from CamaleonCms::AdminController
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
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
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
#ajax ⇒ Object
ajax options
184 185 186 187 188 189 190 191 192 |
# File 'app/controllers/camaleon_cms/admin/posts_controller.rb', line 184 def ajax json = { error: 'Not Found' } case params[:method] when 'exist_slug' slug = current_site.get_valid_post_slug(params[:slug].to_s, params[:post_id]) json = { slug: slug, index: 1 } end render json: json end |
#create ⇒ Object
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'app/controllers/camaleon_cms/admin/posts_controller.rb', line 79 def create :create_post, @post_type post_data = get_post_data(true) begin CamaleonCms::Post.drafts.find(post_data[:draft_id]).destroy rescue StandardError nil end @post = @post_type.posts.new(post_data) r = { post: @post, post_type: @post_type } hooks_run('create_post', r) @post = r[:post] if @post.save @post.(params[:meta]) @post.set_field_values(('PostType_Post')) @post.(params[:options]) flash[:notice] = t('camaleon_cms.admin.post.message.created', post_type: @post_type.decorate.the_title) r = { post: @post, post_type: @post_type } hooks_run('created_post', r) redirect_to action: :edit, id: @post.id else # render 'form' new end end |
#destroy ⇒ Object
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 |
# File 'app/controllers/camaleon_cms/admin/posts_controller.rb', line 167 def destroy :destroy, @post r = { post: @post, post_type: @post_type, flag: true } hooks_run('destroy_post', r) if r[:flag] if @post.destroy hooks_run('destroyed_post', { post: @post, post_type: @post_type }) flash[:notice] = t('camaleon_cms.admin.post.message.deleted', post_type: @post_type.decorate.the_title) return redirect_to action: :index, s: params[:s] else flash[:error] = @post.errors..join(', ') end end redirect_to(request.referer || url_for(action: :index, s: params[:s])) end |
#edit ⇒ Object
105 106 107 108 109 110 111 112 |
# File 'app/controllers/camaleon_cms/admin/posts_controller.rb', line 105 def edit I18n.t('camaleon_cms.admin.button.edit') :update, @post @post_form_extra_settings = [] r = { post: @post, post_type: @post_type, extra_settings: @post_form_extra_settings, render: 'form' } hooks_run('edit_post', r) render r[:render] end |
#index ⇒ Object
13 14 15 16 17 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 |
# File 'app/controllers/camaleon_cms/admin/posts_controller.rb', line 13 def index :posts, @post_type per_page = current_site.admin_per_page posts_all = @post_type.posts.eager_load(:parent, :post_type) if params[:taxonomy].present? && params[:taxonomy_id].present? if params[:taxonomy] == 'category' cat_owner = current_site.full_categories.find(params[:taxonomy_id]).decorate posts_all = cat_owner.posts t('camaleon_cms.admin.post_type.category'), @post_type.the_admin_url('category') cat_owner.the_title, cat_owner.the_edit_url end if params[:taxonomy] == 'post_tag' tag_owner = current_site..find(params[:taxonomy_id]).decorate posts_all = tag_owner.posts t('camaleon_cms.admin.post_type.tags'), @post_type.the_admin_url('tag') tag_owner.the_title, tag_owner.the_edit_url end end if params[:q].present? params[:q] = (params[:q] || '').downcase posts_all = posts_all.where( "LOWER(#{CamaleonCms::Post.table_name}.title) LIKE ? OR LOWER(#{CamaleonCms::Post.table_name}.slug) LIKE ?", "%#{params[:q]}%", "%#{params[:q]}%" ) end posts_all = posts_all.where(user_id: cama_current_user) if cannot?(:edit_other, @post_type) @posts = posts_all params[:s] = 'published' unless params[:s].present? @lists_tab = params[:s] case params[:s] when 'published', 'pending', 'trash' @posts = @posts.send(params[:s]) when 'draft' @posts = @posts.drafts when 'all' @posts = @posts.no_trash end @btns = { published: "#{t('camaleon_cms.admin.post_type.published')} (#{posts_all.published.size})", all: "#{t('camaleon_cms.admin.post_type.all')} (#{posts_all.no_trash.size})", pending: "#{t('camaleon_cms.admin.post_type.pending')} (#{posts_all.pending.size})", draft: "#{t('camaleon_cms.admin.post_type.draft')} (#{posts_all.drafts.size})", trash: "#{t('camaleon_cms.admin.post_type.trash')} (#{posts_all.trash.size})" } per_page = 9_999_999 if @post_type.manage_hierarchy? r = { posts: @posts, post_type: @post_type, btns: @btns, all_posts: posts_all, render: 'index', per_page: per_page } hooks_run('list_post', r) (@btns[params[:s].to_sym].to_s) if params[:s].present? @posts = r[:posts].paginate(page: params[:page], per_page: r[:per_page]) render r[:render] end |
#new ⇒ Object
69 70 71 72 73 74 75 76 77 |
# File 'app/controllers/camaleon_cms/admin/posts_controller.rb', line 69 def new I18n.t('camaleon_cms.admin.button.new') :create_post, @post_type @post_form_extra_settings = [] @post ||= @post_type.posts.new r = { post: @post, post_type: @post_type, extra_settings: @post_form_extra_settings, render: 'form' } hooks_run('new_post', r) render r[:render] end |
#restore ⇒ Object
157 158 159 160 161 162 163 164 165 |
# File 'app/controllers/camaleon_cms/admin/posts_controller.rb', line 157 def restore @post = @post_type.posts.find(params[:post_id]) :update, @post @post.update_column('status', @post.[:status_default] || 'pending') @post.update_extra_data hooks_run('restored_post', { post: @post, post_type: @post_type }) flash[:notice] = t('camaleon_cms.admin.post.message.restore', post_type: @post_type.decorate.the_title) redirect_to action: :index, s: params[:s] end |
#show ⇒ Object
67 |
# File 'app/controllers/camaleon_cms/admin/posts_controller.rb', line 67 def show; end |
#trash ⇒ Object
145 146 147 148 149 150 151 152 153 154 155 |
# File 'app/controllers/camaleon_cms/admin/posts_controller.rb', line 145 def trash @post = @post_type.posts.find(params[:post_id]) :destroy, @post @post.set_option('status_default', @post.status) # @post.children.destroy_all unless @post.draft? TODO: why delete children? @post.update_column('status', 'trash') @post.update_extra_data hooks_run('trashed_post', { post: @post, post_type: @post_type }) flash[:notice] = t('camaleon_cms.admin.post.message.trash', post_type: @post_type.decorate.the_title) redirect_to action: :index, s: params[:s] end |
#update ⇒ Object
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 |
# File 'app/controllers/camaleon_cms/admin/posts_controller.rb', line 114 def update post_data = get_post_data delete_drafts = false if @post.draft_child? && @post.parent.present? # This is a draft (as a child of the original post) original_parent = @post.parent.parent post_data[:post_parent] = original_parent.present? ? original_parent.id : nil @post = @post.parent delete_drafts = true elsif @post.draft? # This is a normal draft (post whose status was set to 'draft') @post.status = 'published' if post_data[:status].blank? end :update, @post r = { post: @post, post_type: @post_type } hooks_run('update_post', r) @post = r[:post] if @post.update(post_data) # delete drafts only on successful update operation @post.drafts.destroy_all if delete_drafts @post.(params[:meta]) @post.set_field_values(('PostType_Post')) @post.(params[:options]) hooks_run('updated_post', { post: @post, post_type: @post_type }) flash[:notice] = t('camaleon_cms.admin.post.message.updated', post_type: @post_type.decorate.the_title) redirect_to action: :edit, id: @post.id else edit end end |