Sha256: 7491e8b8433743eaaa959bfe4aeedde8c8cca612e8a6eb0e5444e21e2cd59f97

Contents?: true

Size: 1.67 KB

Versions: 6

Compression:

Stored size: 1.67 KB

Contents

module CurationConcerns
  module SingleUseLinksControllerBehavior
    extend ActiveSupport::Concern
    include Blacklight::SearchHelper
    included do
      class_attribute :show_presenter
      self.show_presenter = CurationConcerns::SingleUseLinkPresenter
      before_action :authenticate_user!
      before_action :authorize_user!
      # Catch permission errors
      rescue_from Hydra::AccessDenied, CanCan::AccessDenied do |exception|
        if current_user && current_user.persisted?
          redirect_to main_app.root_url, alert: "You do not have sufficient privileges to create links to this document"
        else
          session["user_return_to"] = request.url
          redirect_to new_user_session_url, alert: exception.message
        end
      end
    end

    def create_download
      @su = SingleUseLink.create itemId: params[:id], path: main_app.download_path(id: params[:id])
      render plain: curation_concerns.download_single_use_link_url(@su.downloadKey)
    end

    def create_show
      @su = SingleUseLink.create(itemId: params[:id], path: asset_show_path)
      render plain: curation_concerns.show_single_use_link_url(@su.downloadKey)
    end

    def index
      links = SingleUseLink.where(itemId: params[:id]).map { |link| show_presenter.new(link) }
      render partial: 'curation_concerns/file_sets/single_use_link_rows', locals: { single_use_links: links }
    end

    def destroy
      SingleUseLink.find_by_downloadKey(params[:link_id]).destroy
      head :ok
    end

    protected

      def authorize_user!
        authorize! :edit, params[:id]
      end

      def asset_show_path
        polymorphic_path([main_app, fetch(params[:id]).last])
      end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
curation_concerns-1.7.0.beta1 app/controllers/concerns/curation_concerns/single_use_links_controller_behavior.rb
curation_concerns-1.6.3 app/controllers/concerns/curation_concerns/single_use_links_controller_behavior.rb
curation_concerns-1.6.2 app/controllers/concerns/curation_concerns/single_use_links_controller_behavior.rb
curation_concerns-1.6.1 app/controllers/concerns/curation_concerns/single_use_links_controller_behavior.rb
curation_concerns-1.6.0 app/controllers/concerns/curation_concerns/single_use_links_controller_behavior.rb
curation_concerns-1.5.0 app/controllers/concerns/curation_concerns/single_use_links_controller_behavior.rb