Class: Dor::Services::Client::Object

Inherits:
VersionedService show all
Defined in:
lib/dor/services/client/object.rb

Overview

API calls that are about a repository object

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(connection:, version:, object_identifier:) ⇒ Object

Returns a new instance of Object.

Parameters:

  • object_identifier (String)

    the pid for the object

Raises:

  • (ArgumentError)


11
12
13
14
15
16
# File 'lib/dor/services/client/object.rb', line 11

def initialize(connection:, version:, object_identifier:)
  raise ArgumentError, "The `object_identifier` parameter must be an identifier string: #{object_identifier.inspect}" unless object_identifier.is_a?(String)

  super(connection: connection, version: version)
  @object_identifier = object_identifier
end

Instance Attribute Details

#object_identifierObject (readonly)

Returns the value of attribute object_identifier.



8
9
10
# File 'lib/dor/services/client/object.rb', line 8

def object_identifier
  @object_identifier
end

Instance Method Details

#collectionsArray<Cocina::Models::DRO>

Get a list of the collections. (Similar to Valkyrie’s find_inverse_references_by)

Returns:

  • (Array<Cocina::Models::DRO>)

Raises:



63
64
65
# File 'lib/dor/services/client/object.rb', line 63

def collections
  Collections.new(parent_params).collections
end

#embargoObject



42
43
44
# File 'lib/dor/services/client/object.rb', line 42

def embargo
  @embargo ||= Embargo.new(parent_params)
end

#filesObject



26
27
28
# File 'lib/dor/services/client/object.rb', line 26

def files
  @files ||= Files.new(parent_params)
end

#findCocina::Models::DRO, ...

Retrieves the Cocina model

Returns:

  • (Cocina::Models::DRO, Cocina::Models::Collection, Cocina::Models::AdminPolicy)

    the returned model

Raises:



50
51
52
53
54
55
56
57
58
# File 'lib/dor/services/client/object.rb', line 50

def find
  resp = connection.get do |req|
    req.url object_path
  end

  return Cocina::Models.build(JSON.parse(resp.body)) if resp.success?

  raise_exception_based_on_response!(resp)
end

#metadataObject



22
23
24
# File 'lib/dor/services/client/object.rb', line 22

def 
  @metadata ||= Metadata.new(parent_params)
end

#notify_goobiboolean

Notify the external Goobi system for a new object that was registered in DOR

Returns:

  • (boolean)

    true on success

Raises:



123
124
125
126
127
128
129
130
# File 'lib/dor/services/client/object.rb', line 123

def notify_goobi
  resp = connection.post do |req|
    req.url "#{object_path}/notify_goobi"
  end
  return true if resp.success?

  raise_exception_based_on_response!(resp)
end

#publishboolean

Publish an object (send to PURL)

Returns:

  • (boolean)

    true on success

Raises:



71
72
73
74
75
76
77
78
# File 'lib/dor/services/client/object.rb', line 71

def publish
  resp = connection.post do |req|
    req.url "#{object_path}/publish"
  end
  return true if resp.success?

  raise_exception_based_on_response!(resp)
end

#refresh_metadataboolean

Pull in metadata from Symphony and update descMetadata

Returns:

  • (boolean)

    true on success

Raises:



110
111
112
113
114
115
116
117
# File 'lib/dor/services/client/object.rb', line 110

def 
  resp = connection.post do |req|
    req.url "#{object_path}/refresh_metadata"
  end
  return true if resp.success?

  raise_exception_based_on_response!(resp)
end

#release_tagsObject



34
35
36
# File 'lib/dor/services/client/object.rb', line 34

def release_tags
  @release_tags ||= ReleaseTags.new(parent_params)
end

#sdrObject



18
19
20
# File 'lib/dor/services/client/object.rb', line 18

def sdr
  @sdr ||= SDR.new(parent_params)
end

#shelveboolean

Shelve an object (send to Stacks)

Returns:

  • (boolean)

    true on success

Raises:



84
85
86
87
88
89
90
91
# File 'lib/dor/services/client/object.rb', line 84

def shelve
  resp = connection.post do |req|
    req.url "#{object_path}/shelve"
  end
  return true if resp.success?

  raise_exception_based_on_response!(resp)
end

#update_marc_recordboolean

Update the marc record for the given object

Returns:

  • (boolean)

    true on success

Raises:



97
98
99
100
101
102
103
104
# File 'lib/dor/services/client/object.rb', line 97

def update_marc_record
  resp = connection.post do |req|
    req.url "#{object_path}/update_marc_record"
  end
  return true if resp.success?

  raise_exception_based_on_response!(resp)
end

#versionObject



38
39
40
# File 'lib/dor/services/client/object.rb', line 38

def version
  @version ||= ObjectVersion.new(parent_params)
end

#workspaceObject



30
31
32
# File 'lib/dor/services/client/object.rb', line 30

def workspace
  @workspace ||= Workspace.new(parent_params)
end