def __call__(self, environ, start_response):
        path = environ['PATH_INFO'].strip('/')

        if path.startswith(WithSocketIO.resource):
            socketio_manage(environ, collect_namespaces())
        else:
            return self.app(environ, start_response)
'''
This django view is only used to link request to gevent-socketio namespaces
'''
from socketio import socketio_manage
from sockets import collect_namespaces


namespaces = collect_namespaces()


def socketio(request):
        # Request which connects the socket.
        socketio_manage(request.environ, namespaces, request)
예제 #3
0
'''
This django view is only used to link request to gevent-socketio namespaces
'''
from socketio import socketio_manage
from sockets import collect_namespaces

namespaces = collect_namespaces()


def socketio(request):
    # Request which connects the socket.
    socketio_manage(request.environ, namespaces, request)