Get current user without a request object

 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. Log username in Apache access logs by arthur 3 years, 2 months ago
  2. Trigger a user password change by jedie 5 years, 8 months ago
  3. A templatetag to insert the output of another view (or local URL) by jamesgpearce 3 years, 11 months ago
  4. GlobalRequest middleware by myq 5 months, 3 weeks ago
  5. Error rate limiter by s29 2 years, 7 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?

#

alisue (on November 5, 2010):

I think the code has a security risk and won't work as you expect.

See http://code.djangoproject.com/wiki/CookBookThreadlocalsAndUser for more detail.

#

t_rybik (on March 11, 2011):

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

#

(Forgotten your password?)