Sha256: f2b2f60f59f74b02656577cd492a82b8ce8172233f80c1c8809c941e9a919ca0

Contents?: true

Size: 1.66 KB

Versions: 9

Compression:

Stored size: 1.66 KB

Contents

require "delegate"

module Ezid
  #
  # A response from the EZID service.
  #
  # @api private
  #
  class Response < SimpleDelegator

    # Success response status
    SUCCESS = "success".freeze

    # Error response status
    ERROR = "error".freeze

    # The response status -- "success" or "error"
    # @return [String] the status
    def status
      @status ||= status_line.split(/: /)
    end

    # The status line of the response
    # @return [String] the status line
    def status_line
      content[0]
    end

    # The body of the response split into: status line and rest of body
    # @return [Array] status line, rest of body
    def content
      @content ||= body.split(/\r?\n/, 2)
    end

    # The outcome of the request - "success" or "error"
    # @return [String] the outcome
    def outcome
      status.first
    end

    # The EZID status message
    # @return [String] the message
    def message
      status.last
    end

    # Whether the outcome was an error
    # @return [Boolean]
    def error?
      outcome == ERROR
    end

    # Whether the outcome was a success
    # @return [Boolean]
    def success?
      outcome == SUCCESS
    end

    # Returns an exception instance if there was an error
    # @return [Ezid::Error] the exception
    def exception
      error_class.new(message) if error?
    end

    # The URI path of the request
    # @return [String] the path
    def uri_path
      __getobj__.uri.path
    end

    def error_class
      case message
      when /no such identifier/
        IdentifierNotFoundError
      when /identifier status does not support deletion/
        DeletionError
      else
        Error
      end
    end

  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
ezid-client-1.8.0 lib/ezid/responses/response.rb
ezid-client-1.7.1 lib/ezid/responses/response.rb
ezid-client-1.7.0 lib/ezid/responses/response.rb
ezid-client-1.6.0 lib/ezid/responses/response.rb
ezid-client-1.5.0 lib/ezid/responses/response.rb
ezid-client-1.4.3 lib/ezid/responses/response.rb
ezid-client-1.4.2 lib/ezid/responses/response.rb
ezid-client-1.4.1 lib/ezid/responses/response.rb
ezid-client-1.4.0 lib/ezid/responses/response.rb