123456789_123456789_123456789_123456789_123456789_

Class: ActionMailbox::Relayer

Relationships & Source Files
Namespace Children
Classes:
Inherits: Object
Defined in: actionmailbox/lib/action_mailbox/relayer.rb

Constant Summary

Class Method Summary

Instance Attribute Summary

Instance Method Summary

Constructor Details

.new(url:, username: "actionmailbox", password:) ⇒ Relayer

[ GitHub ]

  
# File 'actionmailbox/lib/action_mailbox/relayer.rb', line 32

def initialize(url:, username: "actionmailbox", password:)
  @uri, @username, @password = URI(url), username, password
end

Instance Attribute Details

#password (readonly)

[ GitHub ]

  
# File 'actionmailbox/lib/action_mailbox/relayer.rb', line 30

attr_reader :uri, :username, :password

#uri (readonly)

[ GitHub ]

  
# File 'actionmailbox/lib/action_mailbox/relayer.rb', line 30

attr_reader :uri, :username, :password

#username (readonly)

[ GitHub ]

  
# File 'actionmailbox/lib/action_mailbox/relayer.rb', line 30

attr_reader :uri, :username, :password

Instance Method Details

#relay(source)

[ GitHub ]

  
# File 'actionmailbox/lib/action_mailbox/relayer.rb', line 36

def relay(source)
  case response = post(source)
  when Net::HTTPSuccess
    Result.new "2.0.0", "Successfully relayed message to ingress"
  when Net::HTTPUnauthorized
    Result.new "4.7.0", "Invalid credentials for ingress"
  else
    Result.new "4.0.0", "HTTP #{response.code}"
  end
rescue IOError, SocketError, SystemCallError => error
  Result.new "4.4.2", "Network error relaying to ingress: #{error.message}"
rescue Timeout::Error
  Result.new "4.4.2", "Timed out relaying to ingress"
rescue => error
  Result.new "4.0.0", "Error relaying to ingress: #{error.message}"
end