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 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507
|
"""
websocket - WebSocket client library for Python
Copyright (C) 2010 Hiroki Ohtani(liris)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
import logging
import random
import socket
import struct
from hashlib import md5
from .helpers import urlparse
logger = logging.getLogger()
class WebSocketException(Exception):
pass
class ConnectionClosedException(WebSocketException):
pass
default_timeout = None
traceEnabled = False
def enableTrace(tracable):
"""Turn on/off the tracability."""
global traceEnabled
traceEnabled = tracable
if tracable:
if not logger.handlers:
logger.addHandler(logging.StreamHandler())
logger.setLevel(logging.DEBUG)
def setdefaulttimeout(timeout):
"""Set the global timeout setting to connect."""
global default_timeout
default_timeout = timeout
def getdefaulttimeout():
"""Return the global timeout setting to connect."""
return default_timeout
def _parse_url(url):
"""
parse url and the result is tuple of
(hostname, port, resource path and the flag of secure mode)
"""
parsed = urlparse(url)
if parsed.hostname:
hostname = parsed.hostname
else:
raise ValueError('hostname is invalid')
port = 0
if parsed.port:
port = parsed.port
is_secure = False
if parsed.scheme == 'ws':
if not port:
port = 80
elif parsed.scheme == 'wss':
is_secure = True
if not port:
port = 443
else:
raise ValueError('scheme %s is invalid' % parsed.scheme)
resource = parsed.path if parsed.path else '/'
return (hostname, port, resource, is_secure)
def create_connection(url, timeout=None, **options):
"""
connect to url and return websocket object.
Connect to url and return the WebSocket object.
Passing optional timeout parameter will set the timeout on the socket.
If no timeout is supplied, the global default timeout setting returned
by getdefauttimeout() is used.
"""
websock = WebSocket()
websock.settimeout((timeout is not None and timeout) or default_timeout)
websock.connect(url, **options)
return websock
_MAX_INTEGER = (1 << 32) - 1
_AVAILABLE_KEY_CHARS = list(range(0x21, 0x2F + 1)).extend(
list(range(0x3A, 0x7E + 1)),
)
_MAX_CHAR_BYTE = (1 << 8) - 1
_MAX_ASCII_BYTE = (1 << 7) - 1
# ref. Websocket gets an update, and it breaks stuff.
# http://axod.blogspot.com/2010/06/websocket-gets-update-and-it-breaks.html
def _create_sec_websocket_key():
spaces_n = random.randint(1, 12)
max_n = _MAX_INTEGER / spaces_n
number_n = random.randint(0, int(max_n))
product_n = number_n * spaces_n
key_n = str(product_n)
for _i in range(random.randint(1, 12)):
c = random.choice(_AVAILABLE_KEY_CHARS)
pos = random.randint(0, len(key_n))
key_n = key_n[0:pos] + chr(c) + key_n[pos:]
for _i in range(spaces_n):
pos = random.randint(1, len(key_n) - 1)
key_n = key_n[0:pos] + ' ' + key_n[pos:]
return number_n, key_n
def _create_key3():
return ''.join([chr(random.randint(0, _MAX_ASCII_BYTE)) for i in range(8)])
HEADERS_TO_CHECK = {
'upgrade': 'websocket',
'connection': 'upgrade',
}
HEADERS_TO_EXIST_FOR_HYBI00 = [
'sec-websocket-origin',
'sec-websocket-location',
]
HEADERS_TO_EXIST_FOR_HIXIE75 = [
'websocket-origin',
'websocket-location',
]
class _SSLSocketWrapper:
def __init__(self, sock):
self.ssl = socket.ssl(sock)
def recv(self, bufsize):
return self.ssl.read(bufsize)
def send(self, payload):
return self.ssl.write(payload)
class WebSocket:
"""
Low level WebSocket interface.
This class is based on
The WebSocket protocol draft-hixie-thewebsocketprotocol-76
http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol-76
We can connect to the websocket server and send/recieve data.
The following example is a echo client.
>>> import websocket
>>> ws = websocket.WebSocket()
>>> ws.Connect("ws://localhost:8080/echo")
>>> ws.send("Hello, Server")
>>> ws.recv()
'Hello, Server'
>>> ws.close()
"""
def __init__(self):
"""Initalize WebSocket object."""
self.connected = False
self.io_sock = self.sock = socket.socket()
def settimeout(self, timeout):
"""Set the timeout to the websocket."""
self.sock.settimeout(timeout)
def gettimeout(self):
"""Get the websocket timeout."""
return self.sock.gettimeout()
def connect(self, url, **options):
"""
Connect to url. url is websocket url scheme.
ie. ws://host:port/resource
"""
hostname, port, resource, is_secure = _parse_url(url)
# TODO: we need to support proxy
self.sock.connect((hostname, port))
if is_secure:
self.io_sock = _SSLSocketWrapper(self.sock)
self._handshake(hostname, port, resource, **options)
def _handshake(self, host, port, resource, **options):
sock = self.io_sock
headers = []
headers.append('GET %s HTTP/1.1' % resource)
headers.append('Upgrade: WebSocket')
headers.append('Connection: Upgrade')
hostport = host if port == 80 else '%s:%d' % (host, port)
headers.append('Host: %s' % hostport)
headers.append('Origin: %s' % hostport)
number_1, key_1 = _create_sec_websocket_key()
headers.append('Sec-WebSocket-Key1: %s' % key_1)
number_2, key_2 = _create_sec_websocket_key()
headers.append('Sec-WebSocket-Key2: %s' % key_2)
if 'header' in options:
headers.extend(options['header'])
headers.append('')
key3 = _create_key3()
headers.append(key3)
header_str = '\r\n'.join(headers)
sock.send(header_str.encode('utf-8'))
if traceEnabled:
logger.debug('--- request header ---')
logger.debug(header_str)
logger.debug('-----------------------')
status, resp_headers = self._read_headers()
if status != 101:
self.close()
raise WebSocketException('Handshake Status %d' % status)
success, secure = self._validate_header(resp_headers)
if not success:
self.close()
raise WebSocketException('Invalid WebSocket Header')
if secure:
resp = self._get_resp()
if not self._validate_resp(number_1, number_2, key3, resp):
self.close()
raise WebSocketException('challenge-response error')
self.connected = True
def _validate_resp(self, number_1, number_2, key3, resp):
challenge = struct.pack('!I', number_1)
challenge += struct.pack('!I', number_2)
challenge += key3.encode('utf-8')
digest = md5(challenge).digest()
return resp == digest
def _get_resp(self):
result = self._recv(16)
if traceEnabled:
logger.debug('--- challenge response result ---')
logger.debug(repr(result))
logger.debug('---------------------------------')
return result
def _validate_header(self, headers):
# TODO: check other headers
for key, value in HEADERS_TO_CHECK.items():
v = headers.get(key, None)
if value != v:
return False, False
success = 0
for key in HEADERS_TO_EXIST_FOR_HYBI00:
if key in headers:
success += 1
if success == len(HEADERS_TO_EXIST_FOR_HYBI00):
return True, True
if success != 0:
return False, True
success = 0
for key in HEADERS_TO_EXIST_FOR_HIXIE75:
if key in headers:
success += 1
if success == len(HEADERS_TO_EXIST_FOR_HIXIE75):
return True, False
return False, False
def _read_headers(self):
status = None
headers = {}
if traceEnabled:
logger.debug('--- response header ---')
while True:
line = self._recv_line()
if line == b'\r\n':
break
line = line.strip()
if traceEnabled:
logger.debug(line)
if not status:
status_info = line.split(b' ', 2)
status = int(status_info[1])
else:
kv = line.split(b':', 1)
if len(kv) == 2:
key, value = kv
headers[key.lower().decode('utf-8')] = value.strip().lower().decode('utf-8')
else:
raise WebSocketException('Invalid header')
if traceEnabled:
logger.debug('-----------------------')
return status, headers
def send(self, payload):
"""Send the data as string. payload must be utf-8 string or unicoce."""
if isinstance(payload, str):
payload = payload.encode('utf-8')
data = b''.join([b'\x00', payload, b'\xff'])
self.io_sock.send(data)
if traceEnabled:
logger.debug('send: ' + repr(data))
def recv(self):
"""Reeive utf-8 string data from the server."""
b = self._recv(1)
if enableTrace:
logger.debug('recv frame: ' + repr(b))
frame_type = ord(b)
if frame_type == 0x00:
bytes = []
while True:
b = self._recv(1)
if b == b'\xff':
break
bytes.append(b)
return b''.join(bytes)
if 0x80 < frame_type < 0xFF:
# which frame type is valid?
length = self._read_length()
return self._recv_strict(length)
if frame_type == 0xFF:
self._recv(1)
self._closeInternal()
return None
raise WebSocketException('Invalid frame type')
def _read_length(self):
length = 0
while True:
b = ord(self._recv(1))
length = length * (1 << 7) + (b & 0x7F)
if b < 0x80:
break
return length
def close(self):
"""Close Websocket object"""
if self.connected:
try:
self.io_sock.send('\xff\x00')
timeout = self.sock.gettimeout()
self.sock.settimeout(1)
try:
result = self._recv(2)
if result != '\xff\x00':
logger.error('bad closing Handshake')
except Exception:
pass
self.sock.settimeout(timeout)
self.sock.shutdown(socket.SHUT_RDWR)
except Exception:
pass
self._closeInternal()
def _closeInternal(self):
self.connected = False
self.sock.close()
self.io_sock = self.sock
def _recv(self, bufsize):
bytes = self.io_sock.recv(bufsize)
if not bytes:
raise ConnectionClosedException()
return bytes
def _recv_strict(self, bufsize):
remaining = bufsize
bytes = ''
while remaining:
bytes += self._recv(remaining)
remaining = bufsize - len(bytes)
return bytes
def _recv_line(self):
line = []
while True:
c = self._recv(1)
line.append(c)
if c == b'\n':
break
return b''.join(line)
class WebSocketApp:
"""
Higher level of APIs are provided.
The interface is like JavaScript WebSocket object.
"""
def __init__(self, url, on_open=None, on_message=None, on_error=None, on_close=None):
"""
url: websocket url.
on_open: callable object which is called at opening websocket.
this function has one argument. The arugment is this class object.
on_message: callbale object which is called when recieved data.
on_message has 2 arguments.
The 1st arugment is this class object.
The passing 2nd arugment is utf-8 string which we get from the server.
on_error: callable object which is called when we get error.
on_error has 2 arguments.
The 1st arugment is this class object.
The passing 2nd arugment is exception object.
on_close: callable object which is called when closed the connection.
this function has one argument. The arugment is this class object.
"""
self.url = url
self.on_open = on_open
self.on_message = on_message
self.on_error = on_error
self.on_close = on_close
self.sock = None
def send(self, data):
"""Send message. data must be utf-8 string or unicode."""
self.sock.send(data)
def close(self):
"""Close websocket connection."""
self.sock.close()
def run_forever(self):
"""
run event loop for WebSocket framework.
This loop is infinite loop and is alive during websocket is available.
"""
if self.sock:
raise WebSocketException('socket is already opened')
try:
self.sock = WebSocket()
self.sock.connect(self.url)
self._run_with_no_err(self.on_open)
while True:
data = self.sock.recv()
if data is None:
break
self._run_with_no_err(self.on_message, data)
except Exception as e:
self._run_with_no_err(self.on_error, e)
finally:
self.sock.close()
self._run_with_no_err(self.on_close)
self.sock = None
def _run_with_no_err(self, callback, *args):
if callback:
try:
callback(self, *args)
except Exception as e:
if logger.isEnabledFor(logging.DEBUG):
logger.exception(e)
if __name__ == '__main__':
enableTrace(True)
# ws = create_connection("ws://localhost:8080/echo")
ws = create_connection('ws://localhost:5000/chat')
print("Sending 'Hello, World'...")
ws.send('Hello, World')
print('Sent')
print('Receiving...')
result = ws.recv()
print("Received '%s'" % result)
ws.close()
|