Sha256: 33a8bc3eaf90f8796703321764f530cb3ab4ce150916717d69b6a0205f33ecca

Contents?: true

Size: 1.87 KB

Versions: 17

Compression:

Stored size: 1.87 KB

Contents

# frozen_string_literal: true

module Spotlight
  ##
  # CRUD actions for exhibit resources
  class ResourcesController < Spotlight::ApplicationController
    before_action :authenticate_user!
    before_action :set_tab, only: %i[new create]

    load_and_authorize_resource :exhibit, class: Spotlight::Exhibit

    # explicit options support better subclassing
    load_and_authorize_resource through: :exhibit, instance_name: :resource, through_association: :resources

    helper_method :resource_class

    def new
      add_breadcrumb(t(:'spotlight.exhibits.breadcrumb', title: @exhibit.title), exhibit_root_path(@exhibit))
      add_breadcrumb(t(:'spotlight.curation.sidebar.header'), exhibit_dashboard_path(@exhibit))
      add_breadcrumb(t(:'spotlight.curation.sidebar.items'), admin_exhibit_catalog_path(@exhibit))
      add_breadcrumb(t(:'spotlight.resources.new.header'), new_exhibit_resource_path(@exhibit))

      render
    end

    def create
      if @resource.save_and_index
        redirect_to spotlight.admin_exhibit_catalog_path(@resource.exhibit, sort: :timestamp)
      else
        flash[:error] = @resource.errors.full_messages.to_sentence if @resource.errors.present?
        render action: 'new'
      end
    end
    alias update create

    def monitor
      render json: current_exhibit.reindex_progress
    end

    def reindex_all
      @exhibit.reindex_later current_user

      redirect_to admin_exhibit_catalog_path(@exhibit), notice: t(:'spotlight.resources.reindexing_in_progress')
    end

    protected

    def set_tab
      @tab = params[:tab] || 'external_resources_form'
    end

    def resource_class
      Spotlight::Resource
    end

    def resource_params
      params.require(:resource).tap { |x| x['type'] ||= resource_class.name }
            .permit(:url, :type, *resource_class.stored_attributes[:data], data: params[:resource][:data].try(:keys))
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
blacklight-spotlight-5.0.0.pre.alpha3 app/controllers/spotlight/resources_controller.rb
blacklight-spotlight-5.0.0.pre.alpha2 app/controllers/spotlight/resources_controller.rb
blacklight-spotlight-5.0.0.pre.alpha1 app/controllers/spotlight/resources_controller.rb
blacklight-spotlight-4.7.1 app/controllers/spotlight/resources_controller.rb
blacklight-spotlight-4.7.0 app/controllers/spotlight/resources_controller.rb
blacklight-spotlight-4.6.1 app/controllers/spotlight/resources_controller.rb
blacklight-spotlight-4.6.0 app/controllers/spotlight/resources_controller.rb
blacklight-spotlight-4.5.0 app/controllers/spotlight/resources_controller.rb
blacklight-spotlight-4.4.0 app/controllers/spotlight/resources_controller.rb
blacklight-spotlight-4.3.6 app/controllers/spotlight/resources_controller.rb
blacklight-spotlight-4.3.5 app/controllers/spotlight/resources_controller.rb
blacklight-spotlight-4.3.4 app/controllers/spotlight/resources_controller.rb
blacklight-spotlight-4.3.3 app/controllers/spotlight/resources_controller.rb
blacklight-spotlight-4.3.2 app/controllers/spotlight/resources_controller.rb
blacklight-spotlight-4.3.1 app/controllers/spotlight/resources_controller.rb
blacklight-spotlight-4.3.0 app/controllers/spotlight/resources_controller.rb
blacklight-spotlight-4.2.0 app/controllers/spotlight/resources_controller.rb