class Correios::Sigep::CheckCardStatus

Public Class Methods

new(data = {}) click to toggle source
Calls superclass method
# File lib/sigep/requests/check_card_status.rb, line 4
def initialize(data = {})
  @credentials = Correios.credentials
  @show_request = data[:show_request]
  super()
end

Public Instance Methods

request() click to toggle source
# File lib/sigep/requests/check_card_status.rb, line 10
def request
  puts xml if @show_request == true
  begin
    format_response(Sigep.client.call(
      :get_status_cartao_postagem,
      soap_action: '',
      xml: xml
    ).to_hash)
  rescue Savon::SOAPFault => error
    generate_soap_fault_exception(error)
  rescue Savon::HTTPError => error
    generate_http_exception(error.http.code)
  end
end

Private Instance Methods

format_response(response) click to toggle source
# File lib/sigep/requests/check_card_status.rb, line 46
def format_response(response)
  response = response[:get_status_cartao_postagem_response][:return]

  { status: inverse_card_status(response) }
end
xml() click to toggle source
# File lib/sigep/requests/check_card_status.rb, line 27
def xml
  Nokogiri::XML::Builder.new(encoding: 'UTF-8') do |xml|
    xml['soap'].Envelope(Sigep.namespaces) do
      xml['soap'].Body do
        xml['ns1'].getStatusCartaoPostagem do
          parent_namespace = xml.parent.namespace
          xml.parent.namespace = nil

          xml.numeroCartaoPostagem @credentials.card
          xml.usuario @credentials.sigep_user
          xml.senha @credentials.sigep_password

          xml.parent.namespace = parent_namespace
        end
      end
    end
  end.doc.root.to_xml
end