Skip to main content

Middleware to make user information always available.

Project description

django-cuser - Take care of current user in silent way.

Copyright (c)

Overview

cuser will bring you Current user of your django application from anywehere in your code. I know, sounds fantastic ;)

Installing

django-cuser is also avilable at http://pypi.python.org/pypi/django-cuser So it can be install it by pip or easy_install:

$ python pip install django-cuser

Or you can grab the latest version tarball:

$ python setup.py install

To enable django-cuser in your project

  • Add ‘cuser’ to INSTALLED_APPS in your settings.py

  • Add ‘cuser.middleware.CuserMiddleware’ to MIDDLEWARE_CLASSES after the authentication and session middleware

Who is the current user

To set/get the user info, there is the following API:

from cuser.middleware import CuserMiddleware

Set the current user for this thread. Accepts user objects and login names:

CuserMiddleware.set_user(some_user)

Get the current user or None:

user = CuserMiddleware.get_user()

This will return some_user if there is no current user:

user = CuserMiddleware.get_user(some_user)

Forget the current user. It is always safe to call this, even if there is no urrent user:

CuserMiddleware.del_user()

The middleware automatically sets/deletes the current user for HTTP requests. For other uses (management commands, scripts), you will need to do this yourself.

cuser also provides a CurrentUserField, which can be used for auditing purposes. Use it as follows:

from cuser.fields import CurrentUserField:

class MyModel(models.Model):
    ....
    creator = CurrentUserField(add_only=True, related_name="created_mymodels")
    last_editor = CurrentUserField(related_name="last_edited_mymodels")
    ...

This field is a ForeignKey to the django.contrib.auth.models.User model and you can treat it as such.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-cuser-1.0.tar.gz (4.4 kB view details)

Uploaded Source

File details

Details for the file django-cuser-1.0.tar.gz.

File metadata

  • Download URL: django-cuser-1.0.tar.gz
  • Upload date:
  • Size: 4.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for django-cuser-1.0.tar.gz
Algorithm Hash digest
SHA256 b5b463edcbccca78638b248e9767b3d0f6284750cabeed8fa86b0aa48ff094c4
MD5 6c9f65c0953ecaae7b8dff3a8db7a8c1
BLAKE2b-256 9d77a49efa334ab4cb83311e4248d40f0e6979e9bf699822ea26ecb9bc88ef93

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page