# frozen_string_literal: true module Dor module Services class Client # API calls that are about workflow class Workflow < VersionedService extend Deprecation self.deprecation_horizon = 'dor-service-client version 2.0' # @param object_identifier [String] the pid for the object def initialize(connection:, version:, object_identifier:) super(connection: connection, version: version) @object_identifier = object_identifier end # Begin a new workflow # @param wf_name [String] the name of the workflow # @raises [UnexpectedResponse] if the request is unsuccessful. # @return nil def create(wf_name:) resp = connection.post do |req| req.url "#{api_version}/objects/#{object_identifier}/apo_workflows/#{wf_name}" end raise UnexpectedResponse, "#{resp.reason_phrase}: #{resp.status} (#{resp.body})" unless resp.success? end deprecation_deprecate create: 'Create will be removed. Use dor-workflow-service instead' private attr_reader :object_identifier end end end end