2011-06-30 22:40:22 +00:00
|
|
|
"""
|
|
|
|
SleekXMPP: The Sleek XMPP Library
|
2011-07-03 05:49:34 +00:00
|
|
|
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
|
|
|
|
|
2012-10-24 19:56:54 +00:00
|
|
|
from sleekxmpp.jid import JID
|
2011-07-01 21:45:55 +00:00
|
|
|
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)
|
|
|
|
|
2011-07-01 21:45:55 +00:00
|
|
|
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.
|
|
|
|
"""
|
2013-02-18 19:56:04 +00:00
|
|
|
log.debug("Requesting resource: %s", self.xmpp.requested_jid.resource)
|
2011-06-30 22:40:22 +00:00
|
|
|
iq = self.xmpp.Iq()
|
|
|
|
iq['type'] = 'set'
|
|
|
|
iq.enable('bind')
|
2013-02-18 19:56:04 +00:00
|
|
|
if self.xmpp.requested_jid.resource:
|
|
|
|
iq['bind']['resource'] = self.xmpp.requested_jid.resource
|
2011-06-30 22:40:22 +00:00
|
|
|
response = iq.send(now=True)
|
|
|
|
|
2012-10-24 19:56:54 +00:00
|
|
|
self.xmpp.boundjid = JID(response['bind']['jid'], cache_lock=True)
|
2011-06-30 22:40:22 +00:00
|
|
|
self.xmpp.bound = True
|
2012-07-20 06:54:18 +00:00
|
|
|
self.xmpp.event('session_bind', self.xmpp.boundjid, direct=True)
|
2012-07-10 08:35:57 +00:00
|
|
|
self.xmpp.session_bind_event.set()
|
2011-06-30 22:40:22 +00:00
|
|
|
|
2011-07-03 06:09:29 +00:00
|
|
|
self.xmpp.features.add('bind')
|
2011-07-03 05:30:34 +00:00
|
|
|
|
2013-02-18 19:56:04 +00:00
|
|
|
log.info("JID 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")
|