django.contrib.auth¶
This document provides API reference material for the components of Django’s authentication system. For more details on the usage of these components or how to customize authentication and authorization see the authentication topic guide.
User model¶
- 
class models.User¶
Fields¶
- 
class models.User
- Userobjects have the following fields:- 
username¶
- Required. 150 characters or fewer. Usernames may contain alphanumeric, - _,- @,- +,- .and- -characters.- The - max_lengthshould be sufficient for many use cases. If you need a longer length, please use a custom user model. If you use MySQL with the- utf8mb4encoding (recommended for proper Unicode support), specify at most- max_length=191because MySQL can only create unique indexes with 191 characters in that case by default.
 - 
first_name¶
- Optional ( - blank=True). 150 characters or fewer.
 - 
last_name¶
- Optional ( - blank=True). 150 characters or fewer.
 - 
email¶
- Optional ( - blank=True). Email address.
 - 
password¶
- Required. A hash of, and metadata about, the password. (Django doesn’t store the raw password.) Raw passwords can be arbitrarily long and can contain any character. See the password documentation. 
 - 
user_permissions¶
- Many-to-many relationship to - Permission
 - 
is_staff¶
- Boolean. Designates whether this user can access the admin site. 
 - 
is_active¶
- Boolean. Designates whether this user account should be considered active. We recommend that you set this flag to - Falseinstead of deleting accounts; that way, if your applications have any foreign keys to users, the foreign keys won’t break.- This doesn’t necessarily control whether or not the user can log in. Authentication backends aren’t required to check for the - is_activeflag but the default backend (- ModelBackend) and the- RemoteUserBackenddo. You can use- AllowAllUsersModelBackendor- AllowAllUsersRemoteUserBackendif you want to allow inactive users to login. In this case, you’ll also want to customize the- AuthenticationFormused by the- LoginViewas it rejects inactive users. Be aware that the permission-checking methods such as- has_perm()and the authentication in the Django admin all return- Falsefor inactive users.
 - 
is_superuser¶
- Boolean. Designates that this user has all permissions without explicitly assigning them. 
 - 
last_login¶
- A datetime of the user’s last login. 
 - 
date_joined¶
- A datetime designating when the account was created. Is set to the current date/time by default when the account is created. 
 
- 
Attributes¶
- 
class models.User
- 
is_authenticated¶
- Read-only attribute which is always - True(as opposed to- AnonymousUser.is_authenticatedwhich is always- False). This is a way to tell if the user has been authenticated. This does not imply any permissions and doesn’t check if the user is active or has a valid session. Even though normally you will check this attribute on- request.userto find out whether it has been populated by the- AuthenticationMiddleware(representing the currently logged-in user), you should know this attribute is- Truefor any- Userinstance.
 - 
is_anonymous¶
- Read-only attribute which is always - False. This is a way of differentiating- Userand- AnonymousUserobjects. Generally, you should prefer using- is_authenticatedto this attribute.
 
- 
Methods¶
- 
class models.User
- 
get_username()¶
- Returns the username for the user. Since the - Usermodel can be swapped out, you should use this method instead of referencing the username attribute directly.
 - 
get_full_name()¶
- Returns the - first_nameplus the- last_name, with a space in between.
 - 
get_short_name()¶
- Returns the - first_name.
 - 
set_password(raw_password)¶
- Sets the user’s password to the given raw string, taking care of the password hashing. Doesn’t save the - Userobject.- When the - raw_passwordis- None, the password will be set to an unusable password, as if- set_unusable_password()were used.
 - 
check_password(raw_password)¶
- Returns - Trueif the given raw string is the correct password for the user. (This takes care of the password hashing in making the comparison.)
 - 
set_unusable_password()¶
- Marks the user as having no password set. This isn’t the same as having a blank string for a password. - check_password()for this user will never return- True. Doesn’t save the- Userobject.- You may need this if authentication for your application takes place against an existing external source such as an LDAP directory. 
 - 
has_usable_password()¶
- Returns - Falseif- set_unusable_password()has been called for this user.
 - 
get_user_permissions(obj=None)¶
- Returns a set of permission strings that the user has directly. - If - objis passed in, only returns the user permissions for this specific object.
 - 
get_group_permissions(obj=None)¶
- Returns a set of permission strings that the user has, through their groups. - If - objis passed in, only returns the group permissions for this specific object.
 - 
get_all_permissions(obj=None)¶
- Returns a set of permission strings that the user has, both through group and user permissions. - If - objis passed in, only returns the permissions for this specific object.
 - 
has_perm(perm, obj=None)¶
- Returns - Trueif the user has the specified permission, where perm is in the format- "<app label>.<permission codename>". (see documentation on permissions). If the user is inactive, this method will always return- False. For an active superuser, this method will always return- True.- If - objis passed in, this method won’t check for a permission for the model, but for this specific object.
 - 
has_perms(perm_list, obj=None)¶
- Returns - Trueif the user has each of the specified permissions, where each perm is in the format- "<app label>.<permission codename>". If the user is inactive, this method will always return- False. For an active superuser, this method will always return- True.- If - objis passed in, this method won’t check for permissions for the model, but for the specific object.
 - 
has_module_perms(package_name)¶
- Returns - Trueif the user has any permissions in the given package (the Django app label). If the user is inactive, this method will always return- False. For an active superuser, this method will always return- True.
 - 
email_user(subject, message, from_email=None, **kwargs)¶
- Sends an email to the user. If - from_emailis- None, Django uses the- DEFAULT_FROM_EMAIL. Any- **kwargsare passed to the underlying- send_mail()call.
 
- 
Manager methods¶
- 
class models.UserManager¶
- The - Usermodel has a custom manager that has the following helper methods (in addition to the methods provided by- BaseUserManager):- 
create_user(username, email=None, password=None, **extra_fields)¶
- Creates, saves and returns a - User.- The - usernameand- passwordare set as given. The domain portion of- emailis automatically converted to lowercase, and the returned- Userobject will have- is_activeset to- True.- If no password is provided, - set_unusable_password()will be called.- The - extra_fieldskeyword arguments are passed through to the- User’s- __init__method to allow setting arbitrary fields on a custom user model.- See Creating users for example usage. 
 - 
create_superuser(username, email=None, password=None, **extra_fields)¶
- Same as - create_user(), but sets- is_staffand- is_superuserto- True.
 - 
with_perm(perm, is_active=True, include_superusers=True, backend=None, obj=None)¶
- Returns users that have the given permission - permeither in the- "<app label>.<permission codename>"format or as a- Permissioninstance. Returns an empty queryset if no users who have the- permfound.- If - is_activeis- True(default), returns only active users, or if- False, returns only inactive users. Use- Noneto return all users irrespective of active state.- If - include_superusersis- True(default), the result will include superusers.- If - backendis passed in and it’s defined in- AUTHENTICATION_BACKENDS, then this method will use it. Otherwise, it will use the- backendin- AUTHENTICATION_BACKENDS, if there is only one, or raise an exception.
 
- 
AnonymousUser object¶
- 
class models.AnonymousUser¶
- django.contrib.auth.models.AnonymousUseris a class that implements the- django.contrib.auth.models.Userinterface, with these differences:- id is always None.
- usernameis always the empty string.
- get_username()always returns the empty string.
- is_anonymousis- Trueinstead of- False.
- is_authenticatedis- Falseinstead of- True.
- is_staffand- is_superuserare always- False.
- is_activeis always- False.
- groupsand- user_permissionsare always empty.
- set_password(),- check_password(),- save()and- delete()raise- NotImplementedError.
 
- id is always 
In practice, you probably won’t need to use
AnonymousUser objects on your own, but
they’re used by web requests, as explained in the next section.
Permission model¶
- 
class models.Permission¶
Fields¶
Permission objects have the following
fields:
Methods¶
Permission objects have the standard
data-access methods like any other Django model.
Group model¶
- 
class models.Group¶
Fields¶
Group objects have the following fields:
- 
class models.Group
- 
name¶
- Required. 150 characters or fewer. Any characters are permitted. Example: - 'Awesome Users'.
 - 
permissions¶
- Many-to-many field to - Permission:- group.permissions.set([permission_list]) group.permissions.add(permission, permission, ...) group.permissions.remove(permission, permission, ...) group.permissions.clear() 
 
- 
Validators¶
- 
class validators.ASCIIUsernameValidator¶
- A field validator allowing only ASCII letters and numbers, in addition to - @,- .,- +,- -, and- _.
- 
class validators.UnicodeUsernameValidator¶
- A field validator allowing Unicode characters, in addition to - @,- .,- +,- -, and- _. The default validator for- User.username.
Login and logout signals¶
The auth framework uses the following signals that can be used for notification when a user logs in or out.
- 
user_logged_in¶
- Sent when a user logs in successfully. - Arguments sent with this signal: - sender
- The class of the user that just logged in.
- request
- The current HttpRequestinstance.
- user
- The user instance that just logged in.
 
- 
user_logged_out¶
- Sent when the logout method is called. - sender
- As above: the class of the user that just logged out or Noneif the user was not authenticated.
- request
- The current HttpRequestinstance.
- user
- The user instance that just logged out or Noneif the user was not authenticated.
 
- 
user_login_failed¶
- Sent when the user failed to login successfully - sender
- The name of the module used for authentication.
- credentials
- A dictionary of keyword arguments containing the user credentials that were
passed to authenticate()or your own custom authentication backend. Credentials matching a set of ‘sensitive’ patterns, (including password) will not be sent in the clear as part of the signal.
- request
- The HttpRequestobject, if one was provided toauthenticate().
 
Authentication backends¶
This section details the authentication backends that come with Django. For information on how to use them and how to write your own authentication backends, see the Other authentication sources section of the User authentication guide.
Available authentication backends¶
The following backends are available in django.contrib.auth.backends:
- 
class BaseBackend¶
- A base class that provides default implementations for all required methods. By default, it will reject any user and provide no permissions. - 
get_user_permissions(user_obj, obj=None)¶
- Returns an empty set. 
 - 
get_group_permissions(user_obj, obj=None)¶
- Returns an empty set. 
 - 
get_all_permissions(user_obj, obj=None)¶
- Uses - get_user_permissions()and- get_group_permissions()to get the set of permission strings the- user_objhas.
 - 
has_perm(user_obj, perm, obj=None)¶
- Uses - get_all_permissions()to check if- user_objhas the permission string- perm.
 
- 
- 
class ModelBackend¶
- This is the default authentication backend used by Django. It authenticates using credentials consisting of a user identifier and password. For Django’s default user model, the user identifier is the username, for custom user models it is the field specified by USERNAME_FIELD (see Customizing Users and authentication). - It also handles the default permissions model as defined for - Userand- PermissionsMixin.- has_perm(),- get_all_permissions(),- get_user_permissions(), and- get_group_permissions()allow an object to be passed as a parameter for object-specific permissions, but this backend does not implement them other than returning an empty set of permissions if- obj is not None.- with_perm()also allows an object to be passed as a parameter, but unlike others methods it returns an empty queryset if- obj is not None.- 
authenticate(request, username=None, password=None, **kwargs)¶
- Tries to authenticate - usernamewith- passwordby calling- User.check_password. If no- usernameis provided, it tries to fetch a username from- kwargsusing the key- CustomUser.USERNAME_FIELD. Returns an authenticated user or- None.- requestis an- HttpRequestand may be- Noneif it wasn’t provided to- authenticate()(which passes it on to the backend).
 - 
get_user_permissions(user_obj, obj=None)¶
- Returns the set of permission strings the - user_objhas from their own user permissions. Returns an empty set if- is_anonymousor- is_activeis- False.
 - 
get_group_permissions(user_obj, obj=None)¶
- Returns the set of permission strings the - user_objhas from the permissions of the groups they belong. Returns an empty set if- is_anonymousor- is_activeis- False.
 - 
get_all_permissions(user_obj, obj=None)¶
- Returns the set of permission strings the - user_objhas, including both user permissions and group permissions. Returns an empty set if- is_anonymousor- is_activeis- False.
 - 
has_perm(user_obj, perm, obj=None)¶
- Uses - get_all_permissions()to check if- user_objhas the permission string- perm. Returns- Falseif the user is not- is_active.
 - 
has_module_perms(user_obj, app_label)¶
- Returns whether the - user_objhas any permissions on the app- app_label.
 - 
user_can_authenticate()¶
- Returns whether the user is allowed to authenticate. To match the behavior of - AuthenticationFormwhich- prohibits inactive users from logging in, this method returns- Falsefor users with- is_active=False. Custom user models that don’t have an- is_activefield are allowed.
 - 
with_perm(perm, is_active=True, include_superusers=True, obj=None)¶
- Returns all active users who have the permission - permeither in the form of- "<app label>.<permission codename>"or a- Permissioninstance. Returns an empty queryset if no users who have the- permfound.- If - is_activeis- True(default), returns only active users, or if- False, returns only inactive users. Use- Noneto return all users irrespective of active state.- If - include_superusersis- True(default), the result will include superusers.
 
- 
- 
class AllowAllUsersModelBackend¶
- Same as - ModelBackendexcept that it doesn’t reject inactive users because- user_can_authenticate()always returns- True.- When using this backend, you’ll likely want to customize the - AuthenticationFormused by the- LoginViewby overriding the- confirm_login_allowed()method as it rejects inactive users.
- 
class RemoteUserBackend¶
- Use this backend to take advantage of external-to-Django-handled authentication. It authenticates using usernames passed in - request.META['REMOTE_USER']. See the Authenticating against REMOTE_USER documentation.- If you need more control, you can create your own authentication backend that inherits from this class and override these attributes or methods: - 
create_unknown_user¶
- Trueor- False. Determines whether or not a user object is created if not already in the database Defaults to- True.
 - 
authenticate(request, remote_user)¶
- The username passed as - remote_useris considered trusted. This method returns the user object with the given username, creating a new user object if- create_unknown_useris- True.- Returns - Noneif- create_unknown_useris- Falseand a- Userobject with the given username is not found in the database.- requestis an- HttpRequestand may be- Noneif it wasn’t provided to- authenticate()(which passes it on to the backend).
 - 
clean_username(username)¶
- Performs any cleaning on the - username(e.g. stripping LDAP DN information) prior to using it to get or create a user object. Returns the cleaned username.
 - 
configure_user(request, user)¶
- Configures a newly created user. This method is called immediately after a new user is created, and can be used to perform custom setup actions, such as setting the user’s groups based on attributes in an LDAP directory. Returns the user object. - requestis an- HttpRequestand may be- Noneif it wasn’t provided to- authenticate()(which passes it on to the backend).
 - 
user_can_authenticate()¶
- Returns whether the user is allowed to authenticate. This method returns - Falsefor users with- is_active=False. Custom user models that don’t have an- is_activefield are allowed.
 
- 
- 
class AllowAllUsersRemoteUserBackend¶
- Same as - RemoteUserBackendexcept that it doesn’t reject inactive users because- user_can_authenticatealways returns- True.
Utility functions¶
- 
get_user(request)¶
- Returns the user model instance associated with the given - request’s session.- It checks if the authentication backend stored in the session is present in - AUTHENTICATION_BACKENDS. If so, it uses the backend’s- get_user()method to retrieve the user model instance and then verifies the session by calling the user model’s- get_session_auth_hash()method.- Returns an instance of - AnonymousUserif the authentication backend stored in the session is no longer in- AUTHENTICATION_BACKENDS, if a user isn’t returned by the backend’s- get_user()method, or if the session auth hash doesn’t validate.
 
          