Class: SdrClient::Deposit::UpdateResource

Inherits:
Object
  • Object
show all
Defined in:
lib/sdr_client/deposit/update_resource.rb

Overview

Updates a resource (metadata) in SDR

Constant Summary collapse

DRO_PATH =
'/v1/resources/%<id>s'

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(metadata:, logger:, connection:, version_description: nil, user_versions: nil) ⇒ UpdateResource

Returns a new instance of UpdateResource.

Parameters:

  • metadata (Cocina::Models::DRO)
  • the (Hash<Symbol,String>)

    result of the metadata call

  • version_description (String) (defaults to: nil)
  • user_versions (String) (defaults to: nil)

    action (none, new, update) to take for user version when closing version



17
18
19
20
21
22
23
# File 'lib/sdr_client/deposit/update_resource.rb', line 17

def initialize(metadata:, logger:, connection:, version_description: nil, user_versions: nil)
  @metadata = 
  @logger = logger
  @connection = connection
  @version_description = version_description
  @user_versions = user_versions
end

Class Method Details

.runObject



9
10
11
# File 'lib/sdr_client/deposit/update_resource.rb', line 9

def self.run(...)
  new(...).run
end

Instance Method Details

#runString

Returns job id for the background job result.

Parameters:

  • the (Hash<Symbol,String>)

    result of the metadata call

Returns:

  • (String)

    job id for the background job result



27
28
29
30
31
32
33
34
# File 'lib/sdr_client/deposit/update_resource.rb', line 27

def run
  response = 
  UnexpectedResponse.call(response) unless response.status == 202

  logger.info("Response from server: #{response.body}")

  JSON.parse(response.body)['jobId']
end