django.contrib.authLink para este cabeçalho
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 modelLink para este cabeçalho
- class models.UserLink para esta definição
CamposLink para este cabeçalho
- class models.User
Userobjects have the following fields:- usernameLink para esta definição
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 theutf8mb4encoding (recommended for proper Unicode support), specify at mostmax_length=191because MySQL can only create unique indexes with 191 characters in that case by default.
- first_nameLink para esta definição
Optional (
blank=True). 150 characters or fewer.
- last_nameLink para esta definição
Optional (
blank=True). 150 characters or fewer.
- emailLink para esta definição
Optional (
blank=True). Email address.
- passwordLink para esta definição
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.
- groupsLink para esta definição
Many-to-many relationship to
Group
- user_permissionsLink para esta definição
Many-to-many relationship to
Permission
- is_staffLink para esta definição
Boolean. Designates whether this user can access the admin site.
- is_activeLink para esta definição
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 theRemoteUserBackenddo. You can useAllowAllUsersModelBackendorAllowAllUsersRemoteUserBackendif you want to allow inactive users to login. In this case, you’ll also want to customize theAuthenticationFormused by theLoginViewas it rejects inactive users. Be aware that the permission-checking methods such ashas_perm()and the authentication in the Django admin all returnFalsefor inactive users.
- is_superuserLink para esta definição
Booleano. Designa que este user tem todas as permissões sem explicitamente assinalá-los.
- last_loginLink para esta definição
A datetime of the user’s last login.
- date_joinedLink para esta definição
A datetime designating when the account was created. Is set to the current date/time by default when the account is created.
AtributosLink para este cabeçalho
- class models.User
- is_authenticatedLink para esta definição
Atributo somente de leitura que está sempre definido como
True``(oposto ao `AnonymousUser.is_authenticatedque é sempreFalse. Esta á a maneira de dizer se o usuário foi atenticado. Isso não implica em verificação de nenhuma permissão e não verifica se o usuário é ativo ou tem uma sessão válida. Mesmo que normalmente você irá verificar este atributo norequest.userpara descobrir se foi populado peloAuthenticationMiddleware(representando o usuário logado atualmente), você deve saber se este atributo éTruepara qualquer instância deUser.
- is_anonymousLink para esta definição
Read-only attribute which is always
False. This is a way of differentiatingUserandAnonymousUserobjects. Generally, you should prefer usingis_authenticatedto this attribute.
MétodosLink para este cabeçalho
- class models.User
- get_username()Link para esta definição
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()Link para esta definição
Returns the
first_nameplus thelast_name, with a space in between.
- get_short_name()Link para esta definição
Retorna o
first_name.
- set_password(raw_password)Link para esta definição
Sets the user’s password to the given raw string, taking care of the password hashing. Doesn’t save the
Userobject.When the
raw_passwordisNone, the password will be set to an unusable password, as ifset_unusable_password()were used.
- check_password(raw_password)Link para esta definição
Retorna ``True``se a string simples é a senha correta para o usuário. (leva em conta a criptografia da senha quando fizer a comparação.)
- set_unusable_password()Link para esta definição
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 returnTrue. Doesn’t save theUserobject.Você talvez precise disso se a autenticação para sua aplicação é feita em uma fonte externa existente como um diretório LDAP.
- has_usable_password()Link para esta definição
Returns
Falseifset_unusable_password()has been called for this user.
- get_user_permissions(obj=None)Link para esta definição
-
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)Link para esta definição
Retorna um conjunto de strings de permissões que o usuário tem, além de seus grupos.
Se o
objpassado, somente retorna o grupo de permissões para este objeto específico.
- get_all_permissions(obj=None)Link para esta definição
Retorna um conjunto de strings de permissões que o usuário tem, ambas permissões grupo e usuário.
Se o
objé passado, somente retorna as permissões para este objeto específico.
- has_perm(perm, obj=None)Link para esta definição
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 returnFalse. For an active superuser, this method will always returnTrue.Se
objé passado, este método não irá verificar por permissões para o modelo, mas para este objeto específico.
- has_perms(perm_list, obj=None)Link para esta definição
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 returnFalse. For an active superuser, this method will always returnTrue.Se
objé passado, este método não irá verificar por permissões para o modelo, mas para este objeto específico.
- has_module_perms(package_name)Link para esta definição
Returns
Trueif the user has any permissions in the given package (the Django app label). If the user is inactive, this method will always returnFalse. For an active superuser, this method will always returnTrue.
- email_user(subject, message, from_email=None, **kwargs)Link para esta definição
Sends an email to the user. If
from_emailisNone, Django uses theDEFAULT_FROM_EMAIL. Any**kwargsare passed to the underlyingsend_mail()call.
Manager methodsLink para este cabeçalho
- class models.UserManagerLink para esta definição
The
Usermodel has a custom manager that has the following helper methods (in addition to the methods provided byBaseUserManager):- create_user(username, email=None, password=None, **extra_fields)Link para esta definição
Creates, saves and returns a
User.The
usernameandpasswordare set as given. The domain portion ofemailis automatically converted to lowercase, and the returnedUserobject will haveis_activeset toTrue.If no password is provided,
set_unusable_password()will be called.The
extra_fieldskeyword arguments are passed through to theUser’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)Link para esta definição
Same as
create_user(), but setsis_staffandis_superusertoTrue.
- with_perm(perm, is_active=True, include_superusers=True, backend=None, obj=None)Link para esta definição
-
Returns users that have the given permission
permeither in the"<app label>.<permission codename>"format or as aPermissioninstance. Returns an empty queryset if no users who have thepermfound.If
is_activeisTrue(default), returns only active users, or ifFalse, returns only inactive users. UseNoneto return all users irrespective of active state.If
include_superusersisTrue(default), the result will include superusers.If
backendis passed in and it’s defined inAUTHENTICATION_BACKENDS, then this method will use it. Otherwise, it will use thebackendinAUTHENTICATION_BACKENDS, if there is only one, or raise an exception.
Objeto AnonymousUserLink para este cabeçalho
- class models.AnonymousUserLink para esta definição
django.contrib.auth.models.AnonymousUseris a class that implements thedjango.contrib.auth.models.Userinterface, with these differences:id sempre é
None.usernameis always the empty string.get_username()sempre retorna a string vazia.is_anonymouséTrueao invés deFalse.is_authenticatedisFalseao invés deTrue.is_staffeis_superusersão sempreFalse.is_activesão sempreFalse.groupseuser_permissionsestão sempre vazios.set_password(),check_password(),save()edelete()raiseNotImplementedError.
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.
Modelo PermissionLink para este cabeçalho
- class models.PermissionLink para esta definição
CamposLink para este cabeçalho
Permission objects have the following
fields:
- class models.Permission
- nameLink para esta definição
Required. 255 characters or fewer. Example:
'Can vote'.
- content_typeLink para esta definição
Required. A reference to the
django_content_typedatabase table, which contains a record for each installed model.
- codenameLink para esta definição
Required. 100 characters or fewer. Example:
'can_vote'.
MétodosLink para este cabeçalho
Permission objects have the standard
data-access methods like any other Django model.
Modelo``Group``Link para este cabeçalho
- class models.GroupLink para esta definição
CamposLink para este cabeçalho
Group objects have the following fields:
- class models.Group
- nameLink para esta definição
Required. 150 characters or fewer. Any characters are permitted. Example:
'Awesome Users'.
- permissionsLink para esta definição
Many-to-many field to
Permission:group.permissions.set([permission_list]) group.permissions.add(permission, permission, ...) group.permissions.remove(permission, permission, ...) group.permissions.clear()
ValidadoresLink para este cabeçalho
- class validators.ASCIIUsernameValidatorLink para esta definição
A field validator allowing only ASCII letters and numbers, in addition to
@,.,+,-, and_.
- class validators.UnicodeUsernameValidatorLink para esta definição
A field validator allowing Unicode characters, in addition to
@,.,+,-, and_. The default validator forUser.username.
Login and logout signalsLink para este cabeçalho
The auth framework uses the following signals that can be used for notification when a user logs in or out.
- user_logged_in()Link para esta definição
Sent when a user logs in successfully.
Arguments sent with this signal:
senderThe class of the user that just logged in.
requestThe current
HttpRequestinstance.userThe user instance that just logged in.
- user_logged_out()Link para esta definição
Sent when the logout method is called.
senderAs above: the class of the user that just logged out or
Noneif the user was not authenticated.requestThe current
HttpRequestinstance.userThe user instance that just logged out or
Noneif the user was not authenticated.
- user_login_failed()Link para esta definição
Sent when the user failed to login successfully
senderThe name of the module used for authentication.
credentialsA 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.requestThe
HttpRequestobject, if one was provided toauthenticate().
Authentication backendsLink para este cabeçalho
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 backendsLink para este cabeçalho
The following backends are available in django.contrib.auth.backends:
- class BaseBackendLink para esta definição
-
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)Link para esta definição
Returns an empty set.
- get_group_permissions(user_obj, obj=None)Link para esta definição
Returns an empty set.
- get_all_permissions(user_obj, obj=None)Link para esta definição
Uses
get_user_permissions()andget_group_permissions()to get the set of permission strings theuser_objhas.
- has_perm(user_obj, perm, obj=None)Link para esta definição
Uses
get_all_permissions()to check ifuser_objhas the permission stringperm.
- class ModelBackendLink para esta definição
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
UserandPermissionsMixin.has_perm(),get_all_permissions(),get_user_permissions(), andget_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 ifobj is not None.with_perm()also allows an object to be passed as a parameter, but unlike others methods it returns an empty queryset ifobj is not None.- authenticate(request, username=None, password=None, **kwargs)Link para esta definição
Tries to authenticate
usernamewithpasswordby callingUser.check_password. If nousernameis provided, it tries to fetch a username fromkwargsusing the keyCustomUser.USERNAME_FIELD. Returns an authenticated user orNone.O
requesté umaHttpRequeste pode serNonese não foi fornecido para oauthenticate()(o qual o passa para o backend).
- get_user_permissions(user_obj, obj=None)Link para esta definição
Returns the set of permission strings the
user_objhas from their own user permissions. Returns an empty set ifis_anonymousoris_activeisFalse.
- get_group_permissions(user_obj, obj=None)Link para esta definição
Returns the set of permission strings the
user_objhas from the permissions of the groups they belong. Returns an empty set ifis_anonymousoris_activeisFalse.
- get_all_permissions(user_obj, obj=None)Link para esta definição
Returns the set of permission strings the
user_objhas, including both user permissions and group permissions. Returns an empty set ifis_anonymousoris_activeisFalse.
- has_perm(user_obj, perm, obj=None)Link para esta definição
Uses
get_all_permissions()to check ifuser_objhas the permission stringperm. ReturnsFalseif the user is notis_active.
- has_module_perms(user_obj, app_label)Link para esta definição
Returns whether the
user_objhas any permissions on the appapp_label.
- user_can_authenticate()Link para esta definição
Returns whether the user is allowed to authenticate. To match the behavior of
AuthenticationFormwhichprohibits inactive users from logging in, this method returnsFalsefor users withis_active=False. Custom user models that don’t have anis_activefield are allowed.
- with_perm(perm, is_active=True, include_superusers=True, obj=None)Link para esta definição
-
Returns all active users who have the permission
permeither in the form of"<app label>.<permission codename>"or aPermissioninstance. Returns an empty queryset if no users who have thepermfound.If
is_activeisTrue(default), returns only active users, or ifFalse, returns only inactive users. UseNoneto return all users irrespective of active state.If
include_superusersisTrue(default), the result will include superusers.
- class AllowAllUsersModelBackendLink para esta definição
Same as
ModelBackendexcept that it doesn’t reject inactive users becauseuser_can_authenticate()always returnsTrue.When using this backend, you’ll likely want to customize the
AuthenticationFormused by theLoginViewby overriding theconfirm_login_allowed()method as it rejects inactive users.
- class RemoteUserBackendLink para esta definição
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_userLink para esta definição
TrueorFalse. Determines whether or not a user object is created if not already in the database Defaults toTrue.
- authenticate(request, remote_user)Link para esta definição
The username passed as
remote_useris considered trusted. This method returns the user object with the given username, creating a new user object ifcreate_unknown_userisTrue.Returns
Noneifcreate_unknown_userisFalseand aUserobject with the given username is not found in the database.O
requesté umaHttpRequeste pode serNonese não foi fornecido para oauthenticate()(o qual o passa para o backend).
- clean_username(username)Link para esta definição
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)Link para esta definição
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.
O
requesté umaHttpRequeste pode serNonese não foi fornecido para oauthenticate()(o qual o passa para o backend).
- user_can_authenticate()Link para esta definição
Returns whether the user is allowed to authenticate. This method returns
Falsefor users withis_active=False. Custom user models that don’t have anis_activefield are allowed.
- class AllowAllUsersRemoteUserBackendLink para esta definição
Same as
RemoteUserBackendexcept that it doesn’t reject inactive users becauseuser_can_authenticatealways returnsTrue.
Utility functionsLink para este cabeçalho
- get_user(request)Link para esta definição
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’sget_user()method to retrieve the user model instance and then verifies the session by calling the user model’sget_session_auth_hash()method.Returns an instance of
AnonymousUserif the authentication backend stored in the session is no longer inAUTHENTICATION_BACKENDS, if a user isn’t returned by the backend’sget_user()method, or if the session auth hash doesn’t validate.