Class: Ingenico::Connect::SDK::Logging::ResponseLogMessageBuilder

Inherits:
LogMessageBuilder
  • Object
show all
Defined in:
lib/ingenico/connect/sdk/logging/response_log_message_builder.rb

Instance Attribute Summary

Attributes inherited from LogMessageBuilder

#body, #content_type, #headers, #request_id

Instance Method Summary collapse

Methods inherited from LogMessageBuilder

#add_headers, #set_body, #to_s

Constructor Details

#initialize(request_id, status_code, duration = -1)) ⇒ ResponseLogMessageBuilder

Class that converts data about a response into a properly formatted log message. Formats request id, status code, headers, body and time between request and response into a helpful message.

request_id

Identifier of the request corresponding to this response.

status_code

HTTP status code of the response.

duration

Time elapsed between request and response.



11
12
13
14
15
# File 'lib/ingenico/connect/sdk/logging/response_log_message_builder.rb', line 11

def initialize(request_id, status_code, duration=-1)
  super(request_id)
  @status_code = status_code
  @duration = duration
end

Instance Method Details

#get_messageObject

Constructs and returns a log message based on the request data. The log message is a string.



18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/ingenico/connect/sdk/logging/response_log_message_builder.rb', line 18

def get_message
  msgTemplate = "Incoming response (requestId='%s'" +
      ((@duration < 0) ? "" : ", %.3f ms") +
      "):\n" +
      "  status-code:  '%s'\n" +
      "  headers:      '%s'\n" +
      "  content-type: '%s'\n" +
      "  body:         '%s'"

  return sprintf(msgTemplate, @request_id, @status_code, @headers,
                 empty_if_null(@content_type), empty_if_null(@body)) if @duration < 0
  sprintf(msgTemplate, @request_id, @duration, @status_code, @headers,
          empty_if_null(@content_type), empty_if_null(@body))
end