next-l/enju_leaf

View on GitHub
app/controllers/produces_controller.rb

Summary

Maintainability
B
4 hrs
Test Coverage
A
90%
class ProducesController < ApplicationController
  before_action :set_produce, only: [:show, :edit, :update, :destroy]
  before_action :check_policy, only: [:index, :new, :create]
  before_action :get_agent, :get_manifestation
  before_action :prepare_options, only: [:new, :edit]

  # GET /produces
  # GET /produces.json
  def index
    case
    when @agent
      @produces = @agent.produces.order('produces.position').page(params[:page])
    when @manifestation
      @produces = @manifestation.produces.order('produces.position').page(params[:page])
    else
      @produces = Produce.page(params[:page])
    end

    respond_to do |format|
      format.html # index.html.erb
    end
  end

  # GET /produces/1
  # GET /produces/1.json
  def show
    respond_to do |format|
      format.html # show.html.erb
    end
  end

  # GET /produces/new
  def new
    if @agent && @manifestation.blank?
      redirect_to agent_manifestations_url(@agent)
      nil
    elsif @manifestation && @agent.blank?
      redirect_to manifestation_agents_url(@manifestation)
      nil
    else
      @produce = Produce.new
      @produce.manifestation = @manifestation
      @produce.agent = @agent
    end
  end

  # GET /produces/1/edit
  def edit
  end

  # POST /produces
  # POST /produces.json
  def create
    @produce = Produce.new(produce_params)

    respond_to do |format|
      if @produce.save
        format.html { redirect_to @produce, notice: t('controller.successfully_created', model: t('activerecord.models.produce')) }
        format.json { render json: @produce, status: :created, location: @produce }
      else
        prepare_options
        format.html { render action: "new" }
        format.json { render json: @produce.errors, status: :unprocessable_entity }
      end
    end
  end

  # PUT /produces/1
  # PUT /produces/1.json
  def update
    if @manifestation && params[:move]
      move_position(@produce, params[:move], false)
      redirect_to produces_url(manifestation_id: @produce.manifestation_id)
      return
    end

    respond_to do |format|
      if @produce.update(produce_params)
        format.html { redirect_to @produce, notice: t('controller.successfully_updated', model: t('activerecord.models.produce')) }
        format.json { head :no_content }
      else
        prepare_options
        format.html { render action: "edit" }
        format.json { render json: @produce.errors, status: :unprocessable_entity }
      end
    end
  end

  # DELETE /produces/1
  # DELETE /produces/1.json
  def destroy
    @produce.destroy

    respond_to do |format|
      format.html {
        flash[:notice] = t('controller.successfully_deleted', model: t('activerecord.models.produce'))
        case
        when @agent
          redirect_to agent_manifestations_url(@agent)
        when @manifestation
          redirect_to manifestation_agents_url(@manifestation)
        else
          redirect_to produces_url
        end
      }
      format.json { head :no_content }
    end
  end

  private
  def set_produce
    @produce = Produce.find(params[:id])
    authorize @produce
  end

  def check_policy
    authorize Produce
  end

  def produce_params
    params.require(:produce).permit(
      :agent_id, :manifestation_id, :produce_type_id, :position
    )
  end

  def prepare_options
    @produce_types = ProduceType.all
  end
end