Sha256: 052aad1a4fb6facb9055d285196b4d623e079333c7577a670746d0567ae02ad8

Contents?: true

Size: 1.55 KB

Versions: 8

Compression:

Stored size: 1.55 KB

Contents

module Blather
class Stream

  # @private
  class Resource < Features
    BIND_NS = 'urn:ietf:params:xml:ns:xmpp-bind'.freeze
    register BIND_NS

    def initialize(stream, succeed, fail)
      super
      @jid = stream.jid
    end

    def receive_data(stanza)
      @node = stanza
      case stanza.element_name
      when 'bind' then  bind
      when 'iq'   then  result
      else              fail!(UnknownResponse.new(@node))
      end
    end

  private
    ##
    # Respond to the bind request
    # If @jid has a resource set already request it from the server
    def bind
      response = Stanza::Iq.new :set
      @id = response.id

      response << (binder = XMPPNode.new('bind', response.document))
      binder.namespace = BIND_NS

      if @jid.resource
        binder << (resource = XMPPNode.new('resource', binder.document))
        resource.content = @jid.resource
      end

      @stream.send response
    end

    ##
    # Process the result from the server
    # Sets the sends the JID (now bound to a resource)
    # back to the stream
    def result
      if @node[:type] == 'error'
        fail! StanzaError.import(@node)
        return
      end

      Blather.logger.debug "RESOURCE NODE #{@node}"
      # ensure this is a response to our original request
      if @id == @node['id']
        @stream.jid = JID.new @node.find_first('bind_ns:bind/bind_ns:jid', :bind_ns => BIND_NS).content
        succeed!
      else
        fail!("BIND result ID mismatch. Expected: #{@id}. Received: #{@node['id']}")
      end
    end
  end #Resource

end #Stream
end #Blather

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
blather-0.5.9 lib/blather/stream/features/resource.rb
blather-0.5.8 lib/blather/stream/features/resource.rb
blather-0.5.7 lib/blather/stream/features/resource.rb
blather-0.5.6 lib/blather/stream/features/resource.rb
blather-0.5.4 lib/blather/stream/features/resource.rb
blather-0.5.3 lib/blather/stream/features/resource.rb
blather-0.5.2 lib/blather/stream/features/resource.rb
blather-0.5.0 lib/blather/stream/features/resource.rb