Sha256: e1d324db4c6b8b31d185da749c907180de4b112805112486fb2eadd0ac6b90d8

Contents?: true

Size: 1.6 KB

Versions: 13

Compression:

Stored size: 1.6 KB

Contents

# Converts UploadedFiles into FileSets and attaches them to works.
class AttachFilesToWorkJob < Hyrax::ApplicationJob
  queue_as Hyrax.config.ingest_queue_name

  # @param [ActiveFedora::Base] work - the work object
  # @param [Array<Hyrax::UploadedFile>] uploaded_files - an array of files to attach
  def perform(work, uploaded_files, **work_attributes)
    validate_files!(uploaded_files)
    user = User.find_by_user_key(work.depositor) # BUG? file depositor ignored
    work_permissions = work.permissions.map(&:to_hash)
    metadata = visibility_attributes(work_attributes)
    uploaded_files.each do |uploaded_file|
      actor = Hyrax::Actors::FileSetActor.new(FileSet.create, user)
      actor.create_metadata(metadata)
      actor.create_content(uploaded_file)
      actor.attach_to_work(work)
      actor.file_set.permissions_attributes = work_permissions
      uploaded_file.update(file_set_uri: actor.file_set.uri)
    end
  end

  private

    # The attributes used for visibility - sent as initial params to created FileSets.
    def visibility_attributes(attributes)
      attributes.slice(:visibility, :visibility_during_lease,
                       :visibility_after_lease, :lease_expiration_date,
                       :embargo_release_date, :visibility_during_embargo,
                       :visibility_after_embargo)
    end

    def validate_files!(uploaded_files)
      uploaded_files.each do |uploaded_file|
        next if uploaded_file.is_a? Hyrax::UploadedFile
        raise ArgumentError, "Hyrax::UploadedFile required, but #{uploaded_file.class} received: #{uploaded_file.inspect}"
      end
    end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
hyrax-2.0.3 app/jobs/attach_files_to_work_job.rb
hyrax-2.0.2 app/jobs/attach_files_to_work_job.rb
hyrax-2.1.0.beta1 app/jobs/attach_files_to_work_job.rb
hyrax-2.0.1 app/jobs/attach_files_to_work_job.rb
hyrax-2.0.0 app/jobs/attach_files_to_work_job.rb
hyrax-2.0.0.rc3 app/jobs/attach_files_to_work_job.rb
hyrax-2.0.0.rc2 app/jobs/attach_files_to_work_job.rb
hyrax-2.0.0.rc1 app/jobs/attach_files_to_work_job.rb
hyrax-2.0.0.beta5 app/jobs/attach_files_to_work_job.rb
hyrax-2.0.0.beta4 app/jobs/attach_files_to_work_job.rb
hyrax-2.0.0.beta3 app/jobs/attach_files_to_work_job.rb
hyrax-2.0.0.beta2 app/jobs/attach_files_to_work_job.rb
hyrax-2.0.0.beta1 app/jobs/attach_files_to_work_job.rb