[Django]-Django user in tornado

2πŸ‘

To reset the django logging i use the following:

logger = logging.getLogger('')
for handler in logger.handlers:
    logger.removeHandler(handler)
tornado.options.parse_command_line()

When using the django.conf module the LazySettings class is initialized where initialized django logger.
Also I had to rewrite the code with using initialized settings class:

from django.conf import settings
import django.contrib.auth
import django.utils.importlib

import tornado
from tornado.options import options
import tornado.web
import tornado.ioloop
import sockjs.tornado

TORNADO_PORT = settings.TORNADO_PORT

class RouterConnection(sockjs.tornado.SockJSConnection):

    def get_current_user(self, info):
        engine = django.utils.importlib.import_module(settings.SESSION_ENGINE)
        session_key = str(info.get_cookie(settings.SESSION_COOKIE_NAME)).split('=')[1]

        class Dummy(object):
            pass

        django_request = Dummy()
        django_request.session = engine.SessionStore(session_key)
        user = django.contrib.auth.get_user(django_request)
        return user


    def on_open(self, info):
        user = self.get_current_user(info=info)

if __name__ == "__main__":
    import logging
    logger = logging.getLogger('')
    for handler in logger.handlers:
        logger.removeHandler(handler)
    tornado.options.parse_command_line()

    Router = sockjs.tornado.SockJSRouter(RouterConnection)

    app = tornado.web.Application(Router.urls, debug=settings.DEBUG)

    app.listen(settings.TORNADO_PORT)

    tornado.options.parse_command_line()
    tornado.ioloop.IOLoop.instance().start()
πŸ‘€WebPal

-1πŸ‘

Use tornado.wsgi.WSGIContainer to wrap Django. Refer to this demo project for a working example.

Leave a comment