Sha256: 5caf278dc81bb203040721be139533d0490bb9ce2bad67a773d253202627eaf6
Contents?: true
Size: 1.86 KB
Versions: 2
Compression:
Stored size: 1.86 KB
Contents
module Sufia module BatchUploadsControllerBehavior extend ActiveSupport::Concern include Hydra::Controller::ControllerBehavior include CurationConcerns::CurationConcernController included do layout "sufia-one-column" self.curation_concern_type = GenericWork before_action :has_access? end def create authenticate_user! create_update_job flash[:notice] = <<-EOS.strip_heredoc.tr("\n", ' ') Your files are being processed by #{view_context.application_name} in the background. The metadata and access controls you specified are being applied. Files will be marked <span class="label label-danger" title="Private">Private</span> until this process is complete (shouldn't take too long, hang in there!). You may need to refresh your dashboard to see these updates. EOS redirect_after_update end protected # Gives the class of the form. # This overrides CurationConcerns def form_class ::Sufia::Forms::BatchUploadForm end def redirect_after_update if uploading_on_behalf_of? redirect_to sufia.dashboard_shares_path else redirect_to sufia.dashboard_works_path end end def create_update_job log = BatchCreateOperation.create!(user: current_user, operation_type: "Batch Create") BatchCreateJob.perform_later(current_user, params[:title], params[:resource_type], params[:uploaded_files], attributes_for_actor, log) end def uploading_on_behalf_of? params.fetch(hash_key_for_curation_concern).key?(:on_behalf_of) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sufia-7.0.0.beta2 | app/controllers/concerns/sufia/batch_uploads_controller_behavior.rb |
sufia-7.0.0.beta1 | app/controllers/concerns/sufia/batch_uploads_controller_behavior.rb |