2010-10-06 18:20:32 +00:00
|
|
|
"""
|
|
|
|
SleekXMPP: The Sleek XMPP Library
|
|
|
|
Copyright (C) 2010 Nathanael C. Fritz
|
|
|
|
This file is part of SleekXMPP.
|
|
|
|
|
|
|
|
See the file LICENSE for copying permission.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from __future__ import absolute_import, unicode_literals
|
|
|
|
|
|
|
|
import logging
|
|
|
|
import base64
|
|
|
|
import sys
|
|
|
|
import hashlib
|
|
|
|
import random
|
2010-10-21 02:18:27 +00:00
|
|
|
import threading
|
2010-10-06 18:20:32 +00:00
|
|
|
|
2011-06-30 22:40:22 +00:00
|
|
|
import sleekxmpp
|
2010-10-06 18:20:32 +00:00
|
|
|
from sleekxmpp import plugins
|
|
|
|
from sleekxmpp import stanza
|
2011-06-30 22:40:22 +00:00
|
|
|
from sleekxmpp import features
|
2010-10-06 18:20:32 +00:00
|
|
|
from sleekxmpp.basexmpp import BaseXMPP
|
2011-01-28 05:49:37 +00:00
|
|
|
from sleekxmpp.stanza import *
|
2010-10-06 18:20:32 +00:00
|
|
|
from sleekxmpp.xmlstream import XMLStream, RestartStream
|
2011-01-28 05:49:37 +00:00
|
|
|
from sleekxmpp.xmlstream import StanzaBase, ET, register_stanza_plugin
|
2010-10-06 18:20:32 +00:00
|
|
|
from sleekxmpp.xmlstream.matcher import *
|
|
|
|
from sleekxmpp.xmlstream.handler import *
|
|
|
|
|
|
|
|
# Flag indicating if DNS SRV records are available for use.
|
|
|
|
try:
|
|
|
|
import dns.resolver
|
2011-08-18 07:35:18 +00:00
|
|
|
except ImportError:
|
|
|
|
DNSPYTHON = False
|
|
|
|
else:
|
|
|
|
DNSPYTHON = True
|
2010-10-06 18:20:32 +00:00
|
|
|
|
2010-10-06 18:31:33 +00:00
|
|
|
|
2010-11-06 05:28:59 +00:00
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2010-10-06 18:20:32 +00:00
|
|
|
class ClientXMPP(BaseXMPP):
|
|
|
|
|
|
|
|
"""
|
2011-08-05 04:49:32 +00:00
|
|
|
SleekXMPP's client class. ( Use only for good, not for evil.)
|
2010-10-06 18:20:32 +00:00
|
|
|
|
2011-08-05 04:49:32 +00:00
|
|
|
Typical Use:
|
|
|
|
xmpp = ClientXMPP('user@server.tld/resource', 'password')
|
|
|
|
xmpp.process(block=False) // when block is True, it blocks the current
|
|
|
|
// thread. False by default.
|
2010-10-06 18:20:32 +00:00
|
|
|
|
|
|
|
Attributes:
|
|
|
|
|
|
|
|
Methods:
|
|
|
|
connect -- Overrides XMLStream.connect.
|
|
|
|
del_roster_item -- Delete a roster item.
|
|
|
|
get_roster -- Retrieve the roster from the server.
|
|
|
|
register_feature -- Register a stream feature.
|
|
|
|
update_roster -- Update a roster item.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, jid, password, ssl=False, plugin_config={},
|
|
|
|
plugin_whitelist=[], escape_quotes=True):
|
|
|
|
"""
|
|
|
|
Create a new SleekXMPP client.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
jid -- The JID of the XMPP user account.
|
|
|
|
password -- The password for the XMPP user account.
|
|
|
|
ssl -- Deprecated.
|
|
|
|
plugin_config -- A dictionary of plugin configurations.
|
|
|
|
plugin_whitelist -- A list of approved plugins that will be loaded
|
|
|
|
when calling register_plugins.
|
|
|
|
escape_quotes -- Deprecated.
|
|
|
|
"""
|
2010-10-27 03:47:17 +00:00
|
|
|
BaseXMPP.__init__(self, jid, 'jabber:client')
|
2010-10-06 18:20:32 +00:00
|
|
|
|
|
|
|
self.set_jid(jid)
|
|
|
|
self.password = password
|
|
|
|
self.escape_quotes = escape_quotes
|
|
|
|
self.plugin_config = plugin_config
|
|
|
|
self.plugin_whitelist = plugin_whitelist
|
2011-08-18 07:35:18 +00:00
|
|
|
self.default_port = 5222
|
2010-10-06 18:20:32 +00:00
|
|
|
|
|
|
|
self.stream_header = "<stream:stream to='%s' %s %s version='1.0'>" % (
|
2010-10-16 19:09:40 +00:00
|
|
|
self.boundjid.host,
|
2010-10-06 18:20:32 +00:00
|
|
|
"xmlns:stream='%s'" % self.stream_ns,
|
|
|
|
"xmlns='%s'" % self.default_ns)
|
|
|
|
self.stream_footer = "</stream:stream>"
|
|
|
|
|
2011-07-03 05:30:34 +00:00
|
|
|
self.features = set()
|
2011-01-28 05:49:37 +00:00
|
|
|
self._stream_feature_handlers = {}
|
|
|
|
self._stream_feature_order = []
|
2010-10-06 18:20:32 +00:00
|
|
|
|
|
|
|
#TODO: Use stream state here
|
|
|
|
self.authenticated = False
|
|
|
|
self.sessionstarted = False
|
|
|
|
self.bound = False
|
|
|
|
self.bindfail = False
|
2011-01-28 05:49:37 +00:00
|
|
|
|
|
|
|
self.add_event_handler('connected', self._handle_connected)
|
|
|
|
|
|
|
|
self.register_stanza(StreamFeatures)
|
2010-10-06 18:20:32 +00:00
|
|
|
|
2010-10-06 22:45:11 +00:00
|
|
|
self.register_handler(
|
2010-10-06 18:20:32 +00:00
|
|
|
Callback('Stream Features',
|
|
|
|
MatchXPath('{%s}features' % self.stream_ns),
|
|
|
|
self._handle_stream_features))
|
2010-10-06 22:45:11 +00:00
|
|
|
self.register_handler(
|
2010-10-06 18:20:32 +00:00
|
|
|
Callback('Roster Update',
|
|
|
|
MatchXPath('{%s}iq/{%s}query' % (
|
|
|
|
self.default_ns,
|
|
|
|
'jabber:iq:roster')),
|
|
|
|
self._handle_roster))
|
|
|
|
|
2011-06-30 22:40:22 +00:00
|
|
|
# Setup default stream features
|
|
|
|
self.register_plugin('feature_starttls')
|
|
|
|
self.register_plugin('feature_mechanisms')
|
|
|
|
self.register_plugin('feature_bind')
|
|
|
|
self.register_plugin('feature_session')
|
2010-10-14 01:15:21 +00:00
|
|
|
|
2011-03-22 15:56:55 +00:00
|
|
|
def connect(self, address=tuple(), reattempt=True, use_tls=True):
|
2010-10-06 18:20:32 +00:00
|
|
|
"""
|
|
|
|
Connect to the XMPP server.
|
|
|
|
|
|
|
|
When no address is given, a SRV lookup for the server will
|
|
|
|
be attempted. If that fails, the server user in the JID
|
|
|
|
will be used.
|
|
|
|
|
|
|
|
Arguments:
|
2011-01-07 21:41:31 +00:00
|
|
|
address -- A tuple containing the server's host and port.
|
|
|
|
reattempt -- If True, reattempt the connection if an
|
2011-03-22 15:59:27 +00:00
|
|
|
error occurs. Defaults to True.
|
|
|
|
use_tls -- Indicates if TLS should be used for the
|
|
|
|
connection. Defaults to True.
|
2010-10-06 18:20:32 +00:00
|
|
|
"""
|
2010-10-21 02:18:27 +00:00
|
|
|
self.session_started_event.clear()
|
2011-08-18 07:59:27 +00:00
|
|
|
if not address:
|
|
|
|
address = (self.boundjid.host, 5222)
|
2010-10-06 18:20:32 +00:00
|
|
|
|
2011-01-07 21:41:31 +00:00
|
|
|
return XMLStream.connect(self, address[0], address[1],
|
2011-03-22 15:56:55 +00:00
|
|
|
use_tls=use_tls, reattempt=reattempt)
|
2010-10-06 18:20:32 +00:00
|
|
|
|
2011-08-18 07:35:18 +00:00
|
|
|
def get_dns_records(self, domain, port=None):
|
2011-08-18 08:04:01 +00:00
|
|
|
"""
|
|
|
|
Get the DNS records for a domain.
|
2011-08-18 09:46:48 +00:00
|
|
|
Overriddes XMLStream.get_dns_records to use SRV.
|
2011-08-18 08:04:01 +00:00
|
|
|
|
|
|
|
Arguments:
|
|
|
|
domain -- The domain in question.
|
|
|
|
port -- If the results don't include a port, use this one.
|
|
|
|
"""
|
2011-08-18 07:35:18 +00:00
|
|
|
if port is None:
|
|
|
|
port = self.default_port
|
|
|
|
if DNSPYTHON:
|
|
|
|
try:
|
2011-08-18 09:46:48 +00:00
|
|
|
record = "_xmpp-client._tcp.%s" % domain
|
|
|
|
answers = []
|
|
|
|
for answer in dns.resolver.query(record, dns.rdatatype.SRV):
|
|
|
|
address = (answer.target.to_text()[:-1], answer.port)
|
|
|
|
answers.append((address, answer.priority, answer.weight))
|
2011-08-18 07:47:07 +00:00
|
|
|
except (dns.resolver.NXDOMAIN, dns.resolver.NoAnswer):
|
2011-08-18 07:35:18 +00:00
|
|
|
log.warning("No SRV records for %s" % domain)
|
|
|
|
answers = super(ClientXMPP, self).get_dns_records(domain, port)
|
|
|
|
except dns.exception.Timeout:
|
2011-08-18 09:46:48 +00:00
|
|
|
log.warning("DNS resolution timed out " + \
|
|
|
|
"for SRV record of %s" % domain)
|
2011-08-18 07:35:18 +00:00
|
|
|
answers = super(ClientXMPP, self).get_dns_records(domain, port)
|
|
|
|
return answers
|
|
|
|
else:
|
2011-08-18 09:46:48 +00:00
|
|
|
log.warning("dnspython is not installed -- " + \
|
|
|
|
"relying on OS A record resolution")
|
2011-08-18 07:35:18 +00:00
|
|
|
return [((domain, port), 0, 0)]
|
|
|
|
|
2011-01-28 05:49:37 +00:00
|
|
|
def register_feature(self, name, handler, restart=False, order=5000):
|
2010-10-06 18:20:32 +00:00
|
|
|
"""
|
|
|
|
Register a stream feature.
|
|
|
|
|
|
|
|
Arguments:
|
2011-01-28 05:49:37 +00:00
|
|
|
name -- The name of the stream feature.
|
|
|
|
handler -- The function to execute if the feature is received.
|
|
|
|
restart -- Indicates if feature processing should halt with
|
2010-10-06 18:20:32 +00:00
|
|
|
this feature. Defaults to False.
|
2011-01-28 05:49:37 +00:00
|
|
|
order -- The relative ordering in which the feature should
|
|
|
|
be negotiated. Lower values will be attempted
|
|
|
|
earlier when available.
|
2010-10-06 18:20:32 +00:00
|
|
|
"""
|
2011-01-28 05:49:37 +00:00
|
|
|
self._stream_feature_handlers[name] = (handler, restart)
|
|
|
|
self._stream_feature_order.append((order, name))
|
|
|
|
self._stream_feature_order.sort()
|
2010-10-06 18:20:32 +00:00
|
|
|
|
Resolve timeout errors for get_roster.
See issue #89
Using get_roster will now return the same types of values as
Iq.send. If a timeout occurs, then the event 'roster_timeout'
will be fired. A successful call to get_roster will also
raise the 'roster_received' event.
To ensure that the get_roster call was successful, here
is a pattern to follow:
def __init__(self, ...):
...
self.add_event_handler('session_start', self.session_start)
self.add_event_handler('roster_timeout', self.roster_timeout)
self.add_event_handler('roster_received', self.roster_received)
def session_start(self, e):
self.send_presence()
self.get_roster()
def roster_timeout(self, e):
# Optionally increase the timeout period
self.get_roster(timeout=self.response_timeout * 2)
def roster_received(self, iq):
# Do stuff, roster has been initialized.
...
2011-05-20 16:56:00 +00:00
|
|
|
def update_roster(self, jid, name=None, subscription=None, groups=[],
|
|
|
|
block=True, timeout=None, callback=None):
|
2010-10-06 18:20:32 +00:00
|
|
|
"""
|
|
|
|
Add or change a roster item.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
jid -- The JID of the entry to modify.
|
|
|
|
name -- The user's nickname for this JID.
|
|
|
|
subscription -- The subscription status. May be one of
|
|
|
|
'to', 'from', 'both', or 'none'. If set
|
|
|
|
to 'remove', the entry will be deleted.
|
|
|
|
groups -- The roster groups that contain this item.
|
Resolve timeout errors for get_roster.
See issue #89
Using get_roster will now return the same types of values as
Iq.send. If a timeout occurs, then the event 'roster_timeout'
will be fired. A successful call to get_roster will also
raise the 'roster_received' event.
To ensure that the get_roster call was successful, here
is a pattern to follow:
def __init__(self, ...):
...
self.add_event_handler('session_start', self.session_start)
self.add_event_handler('roster_timeout', self.roster_timeout)
self.add_event_handler('roster_received', self.roster_received)
def session_start(self, e):
self.send_presence()
self.get_roster()
def roster_timeout(self, e):
# Optionally increase the timeout period
self.get_roster(timeout=self.response_timeout * 2)
def roster_received(self, iq):
# Do stuff, roster has been initialized.
...
2011-05-20 16:56:00 +00:00
|
|
|
block -- Specify if the roster request will block
|
|
|
|
until a response is received, or a timeout
|
|
|
|
occurs. Defaults to True.
|
|
|
|
timeout -- The length of time (in seconds) to wait
|
|
|
|
for a response before continuing if blocking
|
|
|
|
is used. Defaults to self.response_timeout.
|
|
|
|
callback -- Optional reference to a stream handler function.
|
|
|
|
Will be executed when the roster is received.
|
|
|
|
Implies block=False.
|
2010-10-06 18:20:32 +00:00
|
|
|
"""
|
2011-06-16 23:09:15 +00:00
|
|
|
return self.client_roster.updtae(jid, name, subscription, groups,
|
|
|
|
block, timeout, callback)
|
2010-10-06 18:20:32 +00:00
|
|
|
|
|
|
|
def del_roster_item(self, jid):
|
|
|
|
"""
|
|
|
|
Remove an item from the roster by setting its subscription
|
|
|
|
status to 'remove'.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
jid -- The JID of the item to remove.
|
|
|
|
"""
|
2011-06-16 23:09:15 +00:00
|
|
|
return self.client_roster.remove(jid)
|
2010-10-06 18:20:32 +00:00
|
|
|
|
Resolve timeout errors for get_roster.
See issue #89
Using get_roster will now return the same types of values as
Iq.send. If a timeout occurs, then the event 'roster_timeout'
will be fired. A successful call to get_roster will also
raise the 'roster_received' event.
To ensure that the get_roster call was successful, here
is a pattern to follow:
def __init__(self, ...):
...
self.add_event_handler('session_start', self.session_start)
self.add_event_handler('roster_timeout', self.roster_timeout)
self.add_event_handler('roster_received', self.roster_received)
def session_start(self, e):
self.send_presence()
self.get_roster()
def roster_timeout(self, e):
# Optionally increase the timeout period
self.get_roster(timeout=self.response_timeout * 2)
def roster_received(self, iq):
# Do stuff, roster has been initialized.
...
2011-05-20 16:56:00 +00:00
|
|
|
def get_roster(self, block=True, timeout=None, callback=None):
|
|
|
|
"""
|
|
|
|
Request the roster from the server.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
block -- Specify if the roster request will block until a
|
|
|
|
response is received, or a timeout occurs.
|
|
|
|
Defaults to True.
|
|
|
|
timeout -- The length of time (in seconds) to wait for a response
|
|
|
|
before continuing if blocking is used.
|
|
|
|
Defaults to self.response_timeout.
|
|
|
|
callback -- Optional reference to a stream handler function. Will
|
|
|
|
be executed when the roster is received.
|
|
|
|
Implies block=False.
|
|
|
|
"""
|
|
|
|
iq = self.Iq()
|
|
|
|
iq['type'] = 'get'
|
|
|
|
iq.enable('roster')
|
|
|
|
response = iq.send(block, timeout, callback)
|
|
|
|
|
2011-05-31 19:48:43 +00:00
|
|
|
if callback is None:
|
Resolve timeout errors for get_roster.
See issue #89
Using get_roster will now return the same types of values as
Iq.send. If a timeout occurs, then the event 'roster_timeout'
will be fired. A successful call to get_roster will also
raise the 'roster_received' event.
To ensure that the get_roster call was successful, here
is a pattern to follow:
def __init__(self, ...):
...
self.add_event_handler('session_start', self.session_start)
self.add_event_handler('roster_timeout', self.roster_timeout)
self.add_event_handler('roster_received', self.roster_received)
def session_start(self, e):
self.send_presence()
self.get_roster()
def roster_timeout(self, e):
# Optionally increase the timeout period
self.get_roster(timeout=self.response_timeout * 2)
def roster_received(self, iq):
# Do stuff, roster has been initialized.
...
2011-05-20 16:56:00 +00:00
|
|
|
return self._handle_roster(response, request=True)
|
2010-10-06 18:20:32 +00:00
|
|
|
|
2011-01-28 05:49:37 +00:00
|
|
|
def _handle_connected(self, event=None):
|
|
|
|
#TODO: Use stream state here
|
|
|
|
self.authenticated = False
|
|
|
|
self.sessionstarted = False
|
|
|
|
self.bound = False
|
|
|
|
self.bindfail = False
|
2011-07-03 05:30:34 +00:00
|
|
|
self.features = set()
|
2010-10-06 18:20:32 +00:00
|
|
|
|
|
|
|
def _handle_stream_features(self, features):
|
|
|
|
"""
|
|
|
|
Process the received stream features.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
features -- The features stanza.
|
|
|
|
"""
|
2011-01-28 05:49:37 +00:00
|
|
|
for order, name in self._stream_feature_order:
|
|
|
|
if name in features['features']:
|
|
|
|
handler, restart = self._stream_feature_handlers[name]
|
|
|
|
if handler(features) and restart:
|
|
|
|
# Don't continue if the feature requires
|
|
|
|
# restarting the XML stream.
|
|
|
|
return True
|
2010-10-06 18:20:32 +00:00
|
|
|
|
|
|
|
def _handle_roster(self, iq, request=False):
|
|
|
|
"""
|
|
|
|
Update the roster after receiving a roster stanza.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
iq -- The roster stanza.
|
|
|
|
request -- Indicates if this stanza is a response
|
|
|
|
to a request for the roster.
|
|
|
|
"""
|
|
|
|
if iq['type'] == 'set' or (iq['type'] == 'result' and request):
|
|
|
|
for jid in iq['roster']['items']:
|
2010-10-27 03:47:17 +00:00
|
|
|
item = iq['roster']['items'][jid]
|
2010-10-27 12:09:50 +00:00
|
|
|
roster = self.roster[iq['to'].bare]
|
2010-10-27 03:47:17 +00:00
|
|
|
roster[jid]['name'] = item['name']
|
|
|
|
roster[jid]['groups'] = item['groups']
|
|
|
|
roster[jid]['from'] = item['subscription'] in ['from', 'both']
|
|
|
|
roster[jid]['to'] = item['subscription'] in ['to', 'both']
|
|
|
|
roster[jid]['pending_out'] = (item['ask'] == 'subscribe')
|
Resolve timeout errors for get_roster.
See issue #89
Using get_roster will now return the same types of values as
Iq.send. If a timeout occurs, then the event 'roster_timeout'
will be fired. A successful call to get_roster will also
raise the 'roster_received' event.
To ensure that the get_roster call was successful, here
is a pattern to follow:
def __init__(self, ...):
...
self.add_event_handler('session_start', self.session_start)
self.add_event_handler('roster_timeout', self.roster_timeout)
self.add_event_handler('roster_received', self.roster_received)
def session_start(self, e):
self.send_presence()
self.get_roster()
def roster_timeout(self, e):
# Optionally increase the timeout period
self.get_roster(timeout=self.response_timeout * 2)
def roster_received(self, iq):
# Do stuff, roster has been initialized.
...
2011-05-20 16:56:00 +00:00
|
|
|
self.event('roster_received', iq)
|
2010-10-06 18:20:32 +00:00
|
|
|
|
|
|
|
self.event("roster_update", iq)
|
|
|
|
if iq['type'] == 'set':
|
|
|
|
iq.reply()
|
|
|
|
iq.enable('roster')
|
|
|
|
iq.send()
|
Resolve timeout errors for get_roster.
See issue #89
Using get_roster will now return the same types of values as
Iq.send. If a timeout occurs, then the event 'roster_timeout'
will be fired. A successful call to get_roster will also
raise the 'roster_received' event.
To ensure that the get_roster call was successful, here
is a pattern to follow:
def __init__(self, ...):
...
self.add_event_handler('session_start', self.session_start)
self.add_event_handler('roster_timeout', self.roster_timeout)
self.add_event_handler('roster_received', self.roster_received)
def session_start(self, e):
self.send_presence()
self.get_roster()
def roster_timeout(self, e):
# Optionally increase the timeout period
self.get_roster(timeout=self.response_timeout * 2)
def roster_received(self, iq):
# Do stuff, roster has been initialized.
...
2011-05-20 16:56:00 +00:00
|
|
|
return True
|
2011-02-14 18:49:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
# To comply with PEP8, method names now use underscores.
|
|
|
|
# Deprecated method names are re-mapped for backwards compatibility.
|
|
|
|
ClientXMPP.updateRoster = ClientXMPP.update_roster
|
|
|
|
ClientXMPP.delRosterItem = ClientXMPP.del_roster_item
|
|
|
|
ClientXMPP.getRoster = ClientXMPP.get_roster
|
|
|
|
ClientXMPP.registerFeature = ClientXMPP.register_feature
|