slixmpp/sleekxmpp/features/feature_bind/bind.py

65 lines
1.9 KiB
Python
Raw Normal View History

2011-06-30 22:40:22 +00:00
"""
SleekXMPP: The Sleek XMPP Library
Copyright (C) 2011 Nathanael C. Fritz
2011-06-30 22:40:22 +00:00
This file is part of SleekXMPP.
See the file LICENSE for copying permission.
"""
import logging
from sleekxmpp.stanza import Iq, StreamFeatures
from sleekxmpp.features.feature_bind import stanza
from sleekxmpp.xmlstream import register_stanza_plugin
2012-03-13 02:41:49 +00:00
from sleekxmpp.plugins import BasePlugin, register_plugin
2011-06-30 22:40:22 +00:00
log = logging.getLogger(__name__)
2012-03-13 02:41:49 +00:00
class FeatureBind(BasePlugin):
2011-06-30 22:40:22 +00:00
2012-03-13 02:41:49 +00:00
name = 'feature_bind'
description = 'RFC 6120: Stream Feature: Resource Binding'
dependencies = set()
stanza = stanza
2011-06-30 22:40:22 +00:00
2012-03-13 02:41:49 +00:00
def plugin_init(self):
2011-06-30 22:40:22 +00:00
self.xmpp.register_feature('bind',
self._handle_bind_resource,
restart=False,
order=10000)
register_stanza_plugin(Iq, stanza.Bind)
register_stanza_plugin(StreamFeatures, stanza.Bind)
2011-06-30 22:40:22 +00:00
def _handle_bind_resource(self, features):
"""
Handle requesting a specific resource.
Arguments:
features -- The stream features stanza.
"""
2011-11-19 20:07:57 +00:00
log.debug("Requesting resource: %s", self.xmpp.boundjid.resource)
2011-06-30 22:40:22 +00:00
iq = self.xmpp.Iq()
iq['type'] = 'set'
iq.enable('bind')
if self.xmpp.boundjid.resource:
iq['bind']['resource'] = self.xmpp.boundjid.resource
response = iq.send(now=True)
self.xmpp.set_jid(response['bind']['jid'])
self.xmpp.bound = True
self.xmpp.event('session_bind', self.xmpp.boundjid, direct=True)
self.xmpp.session_bind_event.set()
2011-06-30 22:40:22 +00:00
self.xmpp.features.add('bind')
2011-11-19 20:07:57 +00:00
log.info("Node set to: %s", self.xmpp.boundjid.full)
2011-06-30 22:40:22 +00:00
if 'session' not in features['features']:
log.debug("Established Session")
self.xmpp.sessionstarted = True
self.xmpp.session_started_event.set()
self.xmpp.event("session_start")