| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 | #!/usr/bin/env python## Python signaling server example for libdatachannel# Copyright (c) 2020 Paul-Louis Ageneau## This Source Code Form is subject to the terms of the Mozilla Public# License, v. 2.0. If a copy of the MPL was not distributed with this# file, You can obtain one at https://mozilla.org/MPL/2.0/.import sysimport sslimport jsonimport asyncioimport loggingimport websocketslogger = logging.getLogger('websockets')logger.setLevel(logging.INFO)logger.addHandler(logging.StreamHandler(sys.stdout))clients = {}async def handle_websocket(websocket, path):    client_id = None    try:        splitted = path.split('/')        splitted.pop(0)        client_id = splitted.pop(0)        print('Client {} connected'.format(client_id))        clients[client_id] = websocket        while True:            data = await websocket.recv()            print('Client {} << {}'.format(client_id, data))            message = json.loads(data)            destination_id = message['id']            destination_websocket = clients.get(destination_id)            if destination_websocket:                message['id'] = client_id                data = json.dumps(message)                print('Client {} >> {}'.format(destination_id, data))                await destination_websocket.send(data)            else:                print('Client {} not found'.format(destination_id))    except Exception as e:        print(e)    finally:        if client_id:            del clients[client_id]            print('Client {} disconnected'.format(client_id))async def main():    # Usage: ./server.py [[host:]port] [SSL certificate file]    endpoint_or_port = sys.argv[1] if len(sys.argv) > 1 else "8000"    ssl_cert = sys.argv[2] if len(sys.argv) > 2 else None    endpoint = endpoint_or_port if ':' in endpoint_or_port else "127.0.0.1:" + endpoint_or_port    if ssl_cert:        ssl_context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)        ssl_context.load_cert_chain(ssl_cert)    else:        ssl_context = None    print('Listening on {}'.format(endpoint))    host, port = endpoint.rsplit(':', 1)    server = await websockets.serve(handle_websocket, host, int(port), ssl=ssl_context)    await server.wait_closed()if __name__ == '__main__':    asyncio.run(main())
 |