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 175 176 177 178 179 180 181 182
|
# Copyright (C) 2020 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/>.
import logging
from gi.repository import Soup
from gi.repository import GLib
from gi.repository import Gio
from nbxmpp.const import TCPState
from nbxmpp.const import ConnectionType
from nbxmpp.util import get_websocket_close_string
from nbxmpp.util import convert_tls_error_flags
from nbxmpp.connection import Connection
log = logging.getLogger('nbxmpp.websocket')
class WebsocketConnection(Connection):
def __init__(self, *args, **kwargs):
Connection.__init__(self, *args, **kwargs)
self._session = Soup.Session()
self._session.props.ssl_strict = False
if self._log.getEffectiveLevel() == logging.INFO:
self._session.add_feature(
Soup.Logger.new(Soup.LoggerLogLevel.BODY, -1))
self._websocket = None
self._cancellable = Gio.Cancellable()
self._input_closed = False
self._output_closed = False
def connect(self):
self._log.info('Try to connect to %s', self._address.uri)
self.state = TCPState.CONNECTING
message = Soup.Message.new('GET', self._address.uri)
message.connect('starting', self._check_certificate)
message.set_flags(Soup.MessageFlags.NO_REDIRECT)
self._session.websocket_connect_async(message,
None,
['xmpp'],
self._cancellable,
self._on_connect,
None)
def _on_connect(self, session, result, _user_data):
# TODO: check if protocol 'xmpp' is set
try:
self._websocket = session.websocket_connect_finish(result)
except GLib.Error as error:
quark = GLib.quark_try_string('g-io-error-quark')
if error.matches(quark, Gio.IOErrorEnum.CANCELLED):
self._finalize('disconnected')
return
self._log.info('Connection Error: %s', error)
self._finalize('connection-failed')
return
self._websocket.set_keepalive_interval(5)
self._websocket.connect('message', self._on_websocket_message)
self._websocket.connect('closed', self._on_websocket_closed)
self._websocket.connect('closing', self._on_websocket_closing)
self._websocket.connect('error', self._on_websocket_error)
self._websocket.connect('pong', self._on_websocket_pong)
self.state = TCPState.CONNECTED
self.notify('connected')
def start_tls_negotiation(self):
# Soup.Session does this automatically
raise NotImplementedError
def _check_certificate(self, message):
https_used, certificate, errors = message.get_https_status()
if not https_used and self._address.type == ConnectionType.PLAIN:
return
self._peer_certificate = certificate
self._peer_certificate_errors = convert_tls_error_flags(errors)
self.notify('certificate-set')
if self._accept_certificate():
return
self.notify('bad-certificate')
self._cancellable.cancel()
def _on_websocket_message(self, _websocket, _type, message):
data = message.get_data().decode()
self._log_stanza(data)
if self._input_closed:
self._log.warning('Received data after stream closed')
return
self.notify('data-received', data)
def _on_websocket_pong(self, _websocket, _message):
self._log.info('Pong received')
def _on_websocket_closed(self, websocket):
self._log.info('Closed %s', get_websocket_close_string(websocket))
self._finalize('disconnected')
def _on_websocket_closing(self, _websocket):
self._log.info('Closing')
def _on_websocket_error(self, _websocket, error):
self._log.error(error)
if self._state not in (TCPState.DISCONNECTED, TCPState.DISCONNECTING):
self._finalize('disconnected')
def send(self, stanza, now=False):
if self._state in (TCPState.DISCONNECTED, TCPState.DISCONNECTING):
self._log.warning('send() not possible in state: %s', self._state)
return
data = str(stanza)
self._websocket.send_text(data)
self._log_stanza(data, received=False)
self.notify('data-sent', stanza)
def disconnect(self):
if self._state == TCPState.CONNECTING:
self.state = TCPState.DISCONNECTING
self._cancellable.cancel()
return
if self._state in (TCPState.DISCONNECTED, TCPState.DISCONNECTING):
self._log.warning('Called disconnect on state: %s', self._state)
return
self._websocket.close(Soup.WebsocketCloseCode.NORMAL, None)
self.state = TCPState.DISCONNECTING
def _check_for_shutdown(self):
if self._input_closed and self._output_closed:
self._websocket.close(Soup.WebsocketCloseCode.NORMAL, None)
def shutdown_input(self):
self._log.info('Shutdown input')
self._input_closed = True
self._check_for_shutdown()
def shutdown_output(self):
self.state = TCPState.DISCONNECTING
self._log.info('Shutdown output')
self._output_closed = True
def _finalize(self, signal_name):
self._input_closed = True
self._output_closed = True
self.state = TCPState.DISCONNECTED
self.notify(signal_name)
self.destroy()
def destroy(self):
super().destroy()
self._session.abort()
self._session = None
self._websocket = None
|