Sha256: 73f1c038eb926e3115e987298d9c8d81bcd4dfdfed365e4922a7768e36d87c36
Contents?: true
Size: 1.42 KB
Versions: 4
Compression:
Stored size: 1.42 KB
Contents
# frozen_string_literal: true require 'deprecation' require 'active_support/json' require 'active_support/core_ext/object/json' module Dor module Services class Client # API calls that are about a repository objects class Objects < VersionedService # Creates a new object in DOR # @param [Cocina::Models::RequestDRO,Cocina::Models::RequestCollection,Cocina::Models::RequestAPO] # @return [HashWithIndifferentAccess] the response, which includes a :pid def register(params:) json_str = register_response(params: params) json = JSON.parse(json_str) Cocina::Models.build(json) end private # make the registration request to the server # @param params [Hash] optional params (see dor-services-app) # @raise [UnexpectedResponse] on an unsuccessful response from the server # @return [String] the raw JSON from the server def register_response(params:) resp = connection.post do |req| req.url "#{api_version}/objects" req.headers['Content-Type'] = 'application/json' # asking the service to return JSON (else it'll be plain text) req.headers['Accept'] = 'application/json' req.body = params.to_json end return resp.body if resp.success? raise_exception_based_on_response!(resp) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems