summaryrefslogtreecommitdiff
path: root/slixmpp
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2021-02-14 11:53:00 +0100
committermathieui <mathieui@mathieui.net>2021-02-26 00:08:56 +0100
commit0b3233a6e80ab350319334e90743246553b5e181 (patch)
tree62361852b803ad3dc06392f4fcc4d9e10a5e7584 /slixmpp
parentf7ecce42ac953dc358fd2385720fea21fb8406d7 (diff)
downloadslixmpp-0b3233a6e80ab350319334e90743246553b5e181.tar.gz
slixmpp-0b3233a6e80ab350319334e90743246553b5e181.tar.bz2
slixmpp-0b3233a6e80ab350319334e90743246553b5e181.tar.xz
slixmpp-0b3233a6e80ab350319334e90743246553b5e181.zip
XEP-0065: API changes
Diffstat (limited to 'slixmpp')
-rw-r--r--slixmpp/plugins/xep_0065/proxy.py79
1 files changed, 39 insertions, 40 deletions
diff --git a/slixmpp/plugins/xep_0065/proxy.py b/slixmpp/plugins/xep_0065/proxy.py
index e1ca4096..cf4edfe1 100644
--- a/slixmpp/plugins/xep_0065/proxy.py
+++ b/slixmpp/plugins/xep_0065/proxy.py
@@ -8,7 +8,7 @@ from uuid import uuid4
from slixmpp.stanza import Iq
from slixmpp.exceptions import XMPPError
from slixmpp.xmlstream import register_stanza_plugin
-from slixmpp.xmlstream.handler import Callback
+from slixmpp.xmlstream.handler import CoroutineCallback
from slixmpp.xmlstream.matcher import StanzaPath
from slixmpp.plugins.base import BasePlugin
@@ -34,10 +34,11 @@ class XEP_0065(BasePlugin):
self._sessions = {}
self._preauthed_sids = {}
- self.xmpp.register_handler(
- Callback('Socks5 Bytestreams',
- StanzaPath('iq@type=set/socks/streamhost'),
- self._handle_streamhost))
+ self.xmpp.register_handler(CoroutineCallback(
+ 'Socks5 Bytestreams',
+ StanzaPath('iq@type=set/socks/streamhost'),
+ self._handle_streamhost
+ ))
self.api.register(self._authorized, 'authorized', default=True)
self.api.register(self._authorized_sid, 'authorized_sid', default=True)
@@ -158,13 +159,13 @@ class XEP_0065(BasePlugin):
digest.update(str(target).encode('utf8'))
return digest.hexdigest()
- def _handle_streamhost(self, iq):
+ async def _handle_streamhost(self, iq):
"""Handle incoming SOCKS5 session request."""
sid = iq['socks']['sid']
if not sid:
raise XMPPError(etype='modify', condition='bad-request')
- if not self._accept_stream(iq):
+ if not await self._accept_stream(iq):
raise XMPPError(etype='modify', condition='not-acceptable')
streamhosts = iq['socks']['streamhosts']
@@ -180,39 +181,37 @@ class XEP_0065(BasePlugin):
streamhost['host'],
streamhost['port']))
- async def gather(futures, iq, streamhosts):
- proxies = await asyncio.gather(*futures, return_exceptions=True)
- for streamhost, proxy in zip(streamhosts, proxies):
- if isinstance(proxy, ValueError):
- continue
- elif isinstance(proxy, socket.error):
- log.error('Socket error while connecting to the proxy.')
- continue
- proxy = proxy[1]
- # TODO: what if the future never happens?
- try:
- addr, port = await proxy.connected
- except socket.error:
- log.exception('Socket error while connecting to the proxy.')
- continue
- # TODO: make a better choice than just the first working one.
- used_streamhost = streamhost['jid']
- conn = proxy
- break
- else:
- raise XMPPError(etype='cancel', condition='item-not-found')
+ proxies = await asyncio.gather(*proxy_futures, return_exceptions=True)
+ for streamhost, proxy in zip(streamhosts, proxies):
+ if isinstance(proxy, ValueError):
+ continue
+ elif isinstance(proxy, socket.error):
+ log.error('Socket error while connecting to the proxy.')
+ continue
+ proxy = proxy[1]
+ # TODO: what if the future never happens?
+ try:
+ addr, port = await proxy.connected
+ except socket.error:
+ log.exception('Socket error while connecting to the proxy.')
+ continue
+ # TODO: make a better choice than just the first working one.
+ used_streamhost = streamhost['jid']
+ conn = proxy
+ break
+ else:
+ raise XMPPError(etype='cancel', condition='item-not-found')
- # TODO: close properly the connection to the other proxies.
+ # TODO: close properly the connection to the other proxies.
- iq = iq.reply()
- self._sessions[sid] = conn
- iq['socks']['sid'] = sid
- iq['socks']['streamhost_used']['jid'] = used_streamhost
- iq.send()
- self.xmpp.event('socks5_stream', conn)
- self.xmpp.event('stream:%s:%s' % (sid, requester), conn)
+ iq = iq.reply()
+ self._sessions[sid] = conn
+ iq['socks']['sid'] = sid
+ iq['socks']['streamhost_used']['jid'] = used_streamhost
+ iq.send()
+ self.xmpp.event('socks5_stream', conn)
+ self.xmpp.event('stream:%s:%s' % (sid, requester), conn)
- asyncio.ensure_future(gather(proxy_futures, iq, streamhosts))
def activate(self, proxy, sid, target, ifrom=None, timeout=None, callback=None):
"""Activate the socks5 session that has been negotiated."""
@@ -253,14 +252,14 @@ class XEP_0065(BasePlugin):
factory = lambda: Socks5Protocol(dest, 0, self.xmpp.event)
return self.xmpp.loop.create_connection(factory, proxy, proxy_port)
- def _accept_stream(self, iq):
+ async def _accept_stream(self, iq):
receiver = iq['to']
sender = iq['from']
sid = iq['socks']['sid']
- if self.api['authorized_sid'](receiver, sid, sender, iq):
+ if await self.api['authorized_sid'](receiver, sid, sender, iq):
return True
- return self.api['authorized'](receiver, sid, sender, iq)
+ return await self.api['authorized'](receiver, sid, sender, iq)
def _authorized(self, jid, sid, ifrom, iq):
return self.auto_accept