snap-cloud/snapcon

View on GitHub
app/controllers/admin/event_types_controller.rb

Summary

Maintainability
A
1 hr
Test Coverage
F
0%
# frozen_string_literal: true

module Admin
  class EventTypesController < Admin::BaseController
    load_and_authorize_resource :conference, find_by: :short_title
    load_and_authorize_resource :program, through: :conference, singleton: true
    load_and_authorize_resource :event_type, through: :program

    def index; end

    def edit; end

    def new
      @event_type = @conference.program.event_types.new(color: @conference.next_color_for_collection(:types))
    end

    def create
      @event_type = @conference.program.event_types.new(event_type_params)
      if @event_type.save
        redirect_to admin_conference_program_event_types_path(conference_id: @conference.short_title),
                    notice: 'Event type successfully created.'
      else
        flash.now[:error] = "Creating event type failed: #{@event_type.errors.full_messages.join('. ')}."
        render :new
      end
    end

    def update
      if @event_type.update(event_type_params)
        redirect_to admin_conference_program_event_types_path(conference_id: @conference.short_title),
                    notice: 'Event type successfully updated.'
      else
        flash.now[:error] = "Update event type failed: #{@event_type.errors.full_messages.join('. ')}."
        render :edit
      end
    end

    def destroy
      if @event_type.destroy
        redirect_to admin_conference_program_event_types_path(conference_id: @conference.short_title),
                    notice: 'Event type successfully deleted.'
      else
        redirect_to admin_conference_program_event_types_path(conference_id: @conference.short_title),
                    error: 'Destroying event type failed! ' \
                           "#{@event_type.errors.full_messages.join('. ')}."
      end
    end

    private

    def event_type_params
      params.require(:event_type).permit(:title, :length, :minimum_abstract_length, :maximum_abstract_length,
                                         :submission_template, :color, :conference_id, :description)
    end
  end
end