1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
# Copyright (C) 2019 Philipp Hörist <philipp AT hoerist.com>
#
# This file is part of nbxmpp.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; If not, see <http://www.gnu.org/licenses/>.
from nbxmpp.protocol import Error as ErrorStanza
from nbxmpp.protocol import ERR_BAD_REQUEST
from nbxmpp.protocol import ERR_FEATURE_NOT_IMPLEMENTED
from nbxmpp.protocol import NodeProcessed
from nbxmpp.protocol import Iq
from nbxmpp.namespaces import Namespace
from nbxmpp.structs import StanzaHandler
from nbxmpp.structs import IBBData
from nbxmpp.util import b64decode
from nbxmpp.util import b64encode
from nbxmpp.modules.base import BaseModule
from nbxmpp.modules.util import process_response
from nbxmpp.task import iq_request_task
class IBB(BaseModule):
def __init__(self, client):
BaseModule.__init__(self, client)
self._client = client
self.handlers = [
StanzaHandler(name='iq',
callback=self._process_ibb,
ns=Namespace.IBB,
priority=20),
]
def _process_ibb(self, _client, stanza, properties):
if properties.type.is_set:
open_ = stanza.getTag('open', namespace=Namespace.IBB)
if open_ is not None:
properties.ibb = self._parse_open(stanza, open_)
return
close = stanza.getTag('close', namespace=Namespace.IBB)
if close is not None:
properties.ibb = self._parse_close(stanza, close)
return
data = stanza.getTag('data', namespace=Namespace.IBB)
if data is not None:
properties.ibb = self._parse_data(stanza, data)
return
def _parse_open(self, stanza, open_):
attrs = open_.getAttrs()
try:
block_size = int(attrs.get('block-size'))
except Exception as error:
self._log.warning(error)
self._log.warning(stanza)
self._client.send_stanza(ErrorStanza(stanza, ERR_BAD_REQUEST))
raise NodeProcessed
if block_size > 65535:
self._log.warning('Invalid block-size')
self._client.send_stanza(ErrorStanza(stanza, ERR_BAD_REQUEST))
raise NodeProcessed
sid = attrs.get('sid')
if not sid:
self._log.warning('Invalid sid')
self._client.send_stanza(ErrorStanza(stanza, ERR_BAD_REQUEST))
raise NodeProcessed
type_ = attrs.get('stanza')
if type_ == 'message':
self._client.send_stanza(ErrorStanza(stanza,
ERR_FEATURE_NOT_IMPLEMENTED))
raise NodeProcessed
return IBBData(type='open', block_size=block_size, sid=sid)
def _parse_close(self, stanza, close):
sid = close.getAttrs().get('sid')
if sid is None:
self._log.warning('Invalid sid')
self._client.send_stanza(ErrorStanza(stanza, ERR_BAD_REQUEST))
raise NodeProcessed
return IBBData(type='close', sid=sid)
def _parse_data(self, stanza, data):
attrs = data.getAttrs()
sid = attrs.get('sid')
if sid is None:
self._log.warning('Invalid sid')
self._client.send_stanza(ErrorStanza(stanza, ERR_BAD_REQUEST))
raise NodeProcessed
try:
seq = int(attrs.get('seq'))
except Exception:
self._log.exception('Invalid seq')
self._client.send_stanza(ErrorStanza(stanza, ERR_BAD_REQUEST))
raise NodeProcessed
try:
decoded_data = b64decode(data.getData(), return_type=bytes)
except Exception:
self._log.exception('Failed to decode IBB data')
self._client.send_stanza(ErrorStanza(stanza, ERR_BAD_REQUEST))
raise NodeProcessed
return IBBData(type='data', sid=sid, seq=seq, data=decoded_data)
def send_reply(self, stanza, error=None):
if error is None:
reply = stanza.buildReply('result')
reply.getChildren().clear()
else:
reply = ErrorStanza(stanza, error)
self._client.send_stanza(reply)
@iq_request_task
def send_open(self, jid, sid, block_size):
_task = yield
response = yield _make_ibb_open(jid, sid, block_size)
yield process_response(response)
@iq_request_task
def send_close(self, jid, sid):
_task = yield
response = yield _make_ibb_close(jid, sid)
yield process_response(response)
@iq_request_task
def send_data(self, jid, sid, seq, data):
_task = yield
response = yield _make_ibb_data(jid, sid, seq, data)
yield process_response(response)
def _make_ibb_open(jid, sid, block_size):
iq = Iq('set', to=jid)
iq.addChild('open',
{'block-size': block_size, 'sid': sid, 'stanza': 'iq'},
namespace=Namespace.IBB)
return iq
def _make_ibb_close(jid, sid):
iq = Iq('set', to=jid)
iq.addChild('close', {'sid': sid}, namespace=Namespace.IBB)
return iq
def _make_ibb_data(jid, sid, seq, data):
iq = Iq('set', to=jid)
ibb_data = iq.addChild('data',
{'sid': sid, 'seq': seq},
namespace=Namespace.IBB)
ibb_data.setData(b64encode(data))
return iq
|