Sha256: 5dcab5701ceb1c6cf8d8673487e04651cacd4c0d575509632fd05b867c9e5bda

Contents?: true

Size: 1.47 KB

Versions: 2

Compression:

Stored size: 1.47 KB

Contents

module SwaggerClient
  module Swagger
    class Response
      require 'json'

      attr_accessor :raw

      def initialize(raw)
        self.raw = raw

        case self.code
        when 500..510 then raise(ServerError, self.error_message)
        when 299..426 then raise(ClientError, self.error_message)
        end
      end

      def code
        raw.code
      end

      # Account for error messages that take different forms...
      def error_message
        body['message']
      rescue
        body
      end

      # If body is JSON, parse it
      # Otherwise return raw string
      def body
        JSON.parse(raw.body, :symbolize_names => true)
      rescue
        raw.body
      end

      # `headers_hash` is a Typhoeus-specific extension of Hash,
      # so simplify it back into a regular old Hash.
      def headers
        h = {}
        raw.headers_hash.each {|k,v| h[k] = v }
        h
      end

      # Extract the response format from the header hash
      # e.g. {'Content-Type' => 'application/json'}
      def format
        headers['Content-Type'].split("/").last.downcase
      end

      def json?
        format == 'json'
      end

      def xml?
        format == 'xml'
      end

      def pretty_body
        return unless body.present?
        case format
        when 'json' then JSON.pretty_generate(body).gsub(/\n/, '<br/>')
        end
      end

      def pretty_headers
        JSON.pretty_generate(headers).gsub(/\n/, '<br/>')
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
deployment-tracker-client-0.1.2 lib/swagger_client/swagger/response.rb
deployment-tracker-client-0.1.0 lib/swagger_client/swagger/response.rb