Sha256: 6c4f63b5420a2af814677d68a858d3f3e6a0ee651de8bda047c387c18104df8f

Contents?: true

Size: 1.91 KB

Versions: 9

Compression:

Stored size: 1.91 KB

Contents

# frozen_string_literal: true

module SdrClient
  module Deposit
    # This represents the File metadata that we send to the server for doing a deposit
    class File
      # rubocop:disable Metrics/ParameterLists
      def initialize(external_identifier:, label:, filename:,
                     access: 'dark', download: 'none', preserve: true, shelve: true,
                     publish: true, mime_type: nil, md5: nil, sha1: nil,
                     use: nil)
        @external_identifier = external_identifier
        @label = label
        @filename = filename
        @access = access
        @download = download
        @preserve = preserve
        @shelve = access == 'dark' ? false : shelve
        @publish = publish
        @mime_type = mime_type
        @md5 = md5
        @sha1 = sha1
        @use = use
      end
      # rubocop:enable Metrics/ParameterLists

      def as_json
        {
          type: 'http://cocina.sul.stanford.edu/models/file.jsonld',
          label: @label,
          filename: @filename,
          externalIdentifier: @external_identifier,
          access: {
            access: @access,
            download: @download
          },
          administrative: {
            sdrPreserve: @preserve,
            shelve: @shelve,
            publish: @publish
          },
          version: 1,
          hasMessageDigests: message_digests
        }.tap do |json|
          json['hasMimeType'] = @mime_type if @mime_type
          json['use'] = @use if @use
        end
      end

      private

      def message_digests
        @message_digests ||= [].tap do |message_digests|
          message_digests << create_message_digest('md5', @md5) unless @md5.nil?
          message_digests << create_message_digest('sha1', @sha1) unless @sha1.nil?
        end
      end

      def create_message_digest(algorithm, digest)
        {
          type: algorithm,
          digest: digest
        }
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
sdr-client-0.69.1 lib/sdr_client/deposit/file.rb
sdr-client-0.69.0 lib/sdr_client/deposit/file.rb
sdr-client-0.68.0 lib/sdr_client/deposit/file.rb
sdr-client-0.67.1 lib/sdr_client/deposit/file.rb
sdr-client-0.67.0 lib/sdr_client/deposit/file.rb
sdr-client-0.66.0 lib/sdr_client/deposit/file.rb
sdr-client-0.65.0 lib/sdr_client/deposit/file.rb
sdr-client-0.64.1 lib/sdr_client/deposit/file.rb
sdr-client-0.64.0 lib/sdr_client/deposit/file.rb