archangel/archangel

View on GitHub
app/controllers/manage/contents_controller.rb

Summary

Maintainability
A
20 mins
Test Coverage
# frozen_string_literal: true

# Manage (admin)
module Manage
  # Content
  class ContentsController < ManageController
    include Controllers::PaginationConcern
    include Controllers::PaperTrailConcern

    before_action :set_contents, only: %i[index]
    before_action :set_content, only: %i[show edit update destroy]
    before_action :set_new_content, only: %i[new]
    before_action :set_create_content, only: %i[create]
    before_action :set_history_content, only: %i[history]
    before_action :set_restore_content, only: %i[restore]

    # All resources
    #
    # @example All resources
    #   GET /manage/contents
    def index; end

    # Show resource
    #
    # @example Show resource
    #   GET /manage/contents/{id}
    def show; end

    # New resource
    #
    # @example New resource
    #   GET /manage/contents/new
    def new; end

    # Create resource
    #
    # @example Create resource
    #   POST /manage/contents
    def create
      respond_to do |format|
        if @content.save
          format.html { redirect_to manage_content_path(@content), notice: I18n.t('flash.contents.create.success') }
          format.json { render :show, status: :created, location: manage_content_path(@content) }
        else
          format.html { render :new, status: :unprocessable_entity }
          format.json { render json: @content.errors, status: :unprocessable_entity }
        end
      end
    end

    # Edit resource
    #
    # @example Edit resource
    #   GET /manage/contents/{id}/edit
    def edit; end

    # Update resource
    #
    # @example Update resource
    #   PUT /manage/contents/{id}
    def update
      respond_to do |format|
        if @content.update(resource_params)
          format.html { redirect_to manage_content_path(@content), notice: I18n.t('flash.contents.update.success') }
          format.json { render :show, status: :ok, location: manage_content_path(@content) }
        else
          format.html { render :edit, status: :unprocessable_entity }
          format.json { render json: @content.errors, status: :unprocessable_entity }
        end
      end
    end

    # Delete or destroy resource
    #
    # When the resource has not been discarded (soft deleted), the record will be marked as discarded. When the
    # resource is already discarded, the record will be hard deleted
    #
    # @example Delete or destroy resource
    #   DELETE /manage/contents/{id}
    def destroy
      @content.discarded? ? @content.destroy : @content.discard

      respond_to do |format|
        format.html { redirect_to manage_contents_path, notice: I18n.t('flash.contents.destroy.success') }
        format.json { head :no_content }
      end
    end

    # History resource
    #
    # @example History resource
    #   GET /manage/contents/{id}/history
    def history; end

    # Restore resource
    #
    # When a resource has been discarded (soft deleted), the record will be marked as undiscarded
    #
    # @example Restore resource
    #   POST /manage/contents/{id}/restore
    def restore
      @content.undiscard

      respond_to do |format|
        format.html { redirect_to manage_contents_path, notice: I18n.t('flash.contents.restore.success') }
        format.json { head :no_content }
      end
    end

    protected

    def set_contents
      @contents = current_site.contents.with_discarded.order(name: :asc).page(page_num).per(per_page)

      authorize :content
    end

    def set_content
      resource_id = params.fetch(:id, nil)

      @content = current_site.contents.with_discarded.find(resource_id)

      authorize :content
    end

    def set_new_content
      @content = current_site.contents.new

      authorize :content
    end

    def set_create_content
      @content = current_site.contents.new(resource_params)

      authorize :content
    end

    def set_history_content
      resource_id = params.fetch(:id, nil)

      @content = current_site.contents.with_discarded.find(resource_id)
      @versions = @content.versions.includes(%i[user])

      authorize :content
    end

    def set_restore_content
      resource_id = params.fetch(:id, nil)

      @content = current_site.contents.with_discarded.find(resource_id)

      authorize :content
    end

    def resource_params
      permitted_attributes = policy(:content).permitted_attributes

      params.require(:content).permit(permitted_attributes)
    end
  end
end