Login

Get current user without a request object

Author:
t_rybik
Posted:
August 30, 2010
Language:
Python
Version:
1.2
Score:
-1 (after 5 ratings)

Mechanism to obtain a request.user object without the request object itself. Requires LocalUserMiddleware in MIDDLEWARE_CLASSES settings variable.

Important: works under assumption that within a web server each request is handled by a separate thread (as for example in the Apache HTTP server).

Beware: security threat, although "thread locals only appears to be a security threat if a system has already been seriously compromised, at which point there'd be easier attacks to execute".

Dev note: works fine with one-threaded Django's development server, each request resets current user; no worries 'bout many media requests - they won't (at least shouldn't) be using Django on the production server.

Ref: originally found in the gatekeeper app.

 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
from django.conf import settings
USER_ATTR_NAME = getattr(settings, 'LOCAL_USER_ATTR_NAME', '_current_user')

try:
    from threading import local
except ImportError:
    from django.utils._threading_local import local
_thread_locals = local()

from new import instancemethod
def _do_set_current_user(user_fun):
    setattr(_thread_locals, USER_ATTR_NAME, instancemethod(user_fun, _thread_locals, type(_thread_locals)))

def _set_current_user(user=None):
    '''
    Sets current user in local thread.

    Can be used as a hook e.g. for shell jobs (when request object is not
    available).
    '''
    _do_set_current_user(lambda self: user)

class LocalUserMiddleware(object):
    def process_request(self, request):
        # request.user closure; asserts laziness; memoization is implemented in
        # request.user (non-data descriptor)
        _do_set_current_user(lambda self: getattr(request, 'user', None))

def get_current_user():
    current_user = getattr(_thread_locals, USER_ATTR_NAME, None)
    return current_user() if current_user else current_user

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 2 months, 2 weeks ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 3 weeks ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 10 months, 1 week ago
  5. Help text hyperlinks by sa2812 11 months ago

Comments

diverman (on August 30, 2010):

This is very old, so "not useful".

#

xurwxj (on August 30, 2010):

will surfacing with cache problem

#

t_rybik (on September 3, 2010):

@xurwxj: what kind of cache problems, could you elaborate?

@diverman: what old has to do with usefulness? Is there a modern way to do it?

#

t_rybik (on March 11, 2011):

@alisue: the link you've posted is attached in snippet description and commented upon.

#

Please login first before commenting.