Class: Dor::Services::Client
- Inherits:
-
Object
- Object
- Dor::Services::Client
- Includes:
- Singleton
- Defined in:
- lib/dor/services/client.rb,
lib/dor/services/client/sdr.rb,
lib/dor/services/client/files.rb,
lib/dor/services/client/object.rb,
lib/dor/services/client/objects.rb,
lib/dor/services/client/version.rb,
lib/dor/services/client/metadata.rb,
lib/dor/services/client/workspace.rb,
lib/dor/services/client/release_tags.rb,
lib/dor/services/client/object_version.rb,
lib/dor/services/client/versioned_service.rb,
lib/dor/services/client/error_faraday_middleware.rb
Defined Under Namespace
Classes: ConnectionFailed, Error, ErrorFaradayMiddleware, Files, MalformedResponse, Metadata, NotFoundResponse, Object, ObjectVersion, Objects, ReleaseTags, SDR, UnexpectedResponse, VersionedService, Workspace
Constant Summary collapse
- DEFAULT_VERSION =
'v1'- VERSION =
'2.0.0'
Instance Attribute Summary collapse
-
#connection ⇒ Object
writeonly
Sets the attribute connection.
-
#token ⇒ Object
writeonly
Sets the attribute token.
-
#token_header ⇒ Object
writeonly
Sets the attribute token_header.
-
#url ⇒ Object
writeonly
Sets the attribute url.
Class Method Summary collapse
Instance Method Summary collapse
-
#object(object_identifier) ⇒ Dor::Services::Client::Object
An instance of the ‘Client::Object` class.
-
#objects ⇒ Dor::Services::Client::Objects
An instance of the ‘Client::Objects` class.
Instance Attribute Details
#connection=(value) ⇒ Object
Sets the attribute connection
86 87 88 |
# File 'lib/dor/services/client.rb', line 86 def connection=(value) @connection = value end |
#token=(value) ⇒ Object
Sets the attribute token
86 87 88 |
# File 'lib/dor/services/client.rb', line 86 def token=(value) @token = value end |
#token_header=(value) ⇒ Object
Sets the attribute token_header
86 87 88 |
# File 'lib/dor/services/client.rb', line 86 def token_header=(value) @token_header = value end |
#url=(value) ⇒ Object
Sets the attribute url
86 87 88 |
# File 'lib/dor/services/client.rb', line 86 def url=(value) @url = value end |
Class Method Details
.configure(url:, token: nil, token_header: 'Authorization') ⇒ Object
72 73 74 75 76 77 78 79 80 81 |
# File 'lib/dor/services/client.rb', line 72 def configure(url:, token: nil, token_header: 'Authorization') instance.url = url instance.token = token instance.token_header = token_header # Force connection to be re-established when `.configure` is called instance.connection = nil self end |
Instance Method Details
#object(object_identifier) ⇒ Dor::Services::Client::Object
Returns an instance of the ‘Client::Object` class.
51 52 53 54 55 56 57 58 59 60 |
# File 'lib/dor/services/client.rb', line 51 def object(object_identifier) raise ArgumentError, '`object_identifier` argument cannot be `nil` in call to `#object(object_identifier)' if object_identifier.nil? # Return memoized object instance if object identifier value is the same # This allows us to test the client more easily in downstream codebases, # opening up stubbing without requiring `any_instance_of` return @object if @object&.object_identifier == object_identifier @object = Object.new(connection: connection, version: DEFAULT_VERSION, object_identifier: object_identifier) end |
#objects ⇒ Dor::Services::Client::Objects
Returns an instance of the ‘Client::Objects` class.
63 64 65 |
# File 'lib/dor/services/client.rb', line 63 def objects @objects ||= Objects.new(connection: connection, version: DEFAULT_VERSION) end |