Skip to main content

Middleware to make user information always available.

Project description

travis-cli tests status for django-cuser PyPI Wheel PyPI Status PyPI License PyPI Format PyPI Py_versions PyPI Downloads PyPI Implementation PyPI Version PyPI Egg

Overview

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

Supported Python versions

django-cuser currently can be run on multiple python versions:

  • Python 2 (2.7)

  • Python 3 (3.4, 3.5)

  • PyPy

Installing

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

$ 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 current 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.

CurrentUserField

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 settings.AUTH_USER_MODEL model and you can treat it as such.

Tests

django-cuser has been tested Django 1.8 and later. To run the the tests:

$ python manage.py test -v 2

It’s also available on travis-ci:

https://travis-ci.org/Alir3z4/django-cuser/

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-2017.3.16.tar.gz (8.3 kB view details)

Uploaded Source

Built Distribution

django_cuser-2017.3.16-py2.py3-none-any.whl (12.5 kB view details)

Uploaded Python 2 Python 3

File details

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

File metadata

File hashes

Hashes for django-cuser-2017.3.16.tar.gz
Algorithm Hash digest
SHA256 0d71bc8c4e48a452c7d3f86587b2f098ea30ff644d03bf193eba88302dd47060
MD5 cca6d69d5c33037db421bcc98ae1aee9
BLAKE2b-256 1ca5d94654ce4c9cb4bc6fcae7746acfac44eb6fcceefd3754f49c716c692e95

See more details on using hashes here.

File details

Details for the file django_cuser-2017.3.16-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_cuser-2017.3.16-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 bf5c3b4f7f4c9fd583f81c3ef16e5ba9e819c70aa1f6a5e8452c784c0a7297ec
MD5 647c6e09855ac791cf56017befa477b4
BLAKE2b-256 7d7e3005eb0a0b1f189ff9b6a8d23529bf46c7b8dfb1d4324275990792da3a29

See more details on using hashes here.

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