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

CamposLink para este cabeçalho

class models.UserLink para esta definição

User objects have the following fields:

usernameLink para esta definição

Required. 30 characters or fewer. Usernames may contain alphanumeric, _, @, +, . and - characters.

first_nameLink para esta definição

Optional. 30 characters or fewer.

last_nameLink para esta definição

Optional. 30 characters or fewer.

emailLink para esta definição

Optional. 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 False instead 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_active flag, and the default backends do not. If you want to reject a login based on is_active being False, it’s up to you to check that in your own login view or a custom authentication backend. However, the AuthenticationForm used by the login() view (which is the default) does perform this check, as do the permission-checking methods such as has_perm() and the authentication in the Django admin. All of those functions/methods will return False for 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.

MétodosLink para este cabeçalho

class models.UserLink para esta definição
get_username()Link para esta definição

Returns the username for the user. Since the User model can be swapped out, you should use this method instead of referencing the username attribute directly.

is_anonymous()Link para esta definição

Always returns False. This is a way of differentiating User and AnonymousUser objects. Generally, you should prefer using is_authenticated() to this method.

is_authenticated()Link para esta definição

Always returns True (as opposed to AnonymousUser.is_authenticated() which always returns 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 call this method on request.user to find out whether it has been populated by the AuthenticationMiddleware (representing the currently logged-in user), you should know this method returns True for any User instance.

get_full_name()Link para esta definição

Returns the first_name plus the last_name, with a space in between.

get_short_name()Link para esta definição

Returns the 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 User object.

When the raw_password is None, the password will be set to an unusable password, as if set_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 return True. Doesn’t save the User object.

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 False if set_unusable_password() has been called for this user.

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 obj passado, 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 True if 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.

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

Retorna True se o usuário tem cada uma das permissões especificadas, onde cara permissão este no formato "<app label>.<permission codename>". Se o usuário é inativo, este método sempre irá retornar False.

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

Retorna True se o usuário tiver qualquer permissão no dado pacote (o nome da aplicação Django). Se o usuário é inativo, este métodos irá sempre retornar False.

email_user(subject, message, from_email=None, **kwargs)Link para esta definição

Sends an email to the user. If from_email is None, Django uses the DEFAULT_FROM_EMAIL. Any **kwargs are passed to the underlying send_mail() call.

Manager methodsLink para este cabeçalho

class models.UserManagerLink para esta definição

The User model 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)Link para esta definição

Creates, saves and returns a User.

The username and password are set as given. The domain portion of email is automatically converted to lowercase, and the returned User object will have is_active set to True.

If no password is provided, set_unusable_password() will be called.

The extra_fields keyword 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, password, **extra_fields)Link para esta definição

Same as create_user(), but sets is_staff and is_superuser to True.

AnonymousUser objectLink para este cabeçalho

class models.AnonymousUserLink para esta definição

django.contrib.auth.models.AnonymousUser is a class that implements the django.contrib.auth.models.User interface, with these differences:

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 modelLink para este cabeçalho

class models.PermissionLink para esta definição

CamposLink para este cabeçalho

Permission objects have the following fields:

class models.PermissionLink para esta definição
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_type database 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.

Group modelLink para este cabeçalho

class models.GroupLink para esta definição

CamposLink para este cabeçalho

Group objects have the following fields:

class models.GroupLink para esta definição
nameLink para esta definição

Required. 80 characters or fewer. Any characters are permitted. Example: 'Awesome Users'.

permissionsLink para esta definição

Many-to-many field to Permission:

Code
group.permissions = [permission_list]
group.permissions.add(permission, permission, ...)
group.permissions.remove(permission, permission, ...)
group.permissions.clear()

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:

sender

The class of the user that just logged in.

request

The current HttpRequest instance.

user

The user instance that just logged in.

user_logged_out()Link para esta definição

Sent when the logout method is called.

sender

As above: the class of the user that just logged out or None if the user was not authenticated.

request

The current HttpRequest instance.

user

The user instance that just logged out or None if the user was not authenticated.

user_login_failed()Link para esta definição

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.

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 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 User and 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.

authenticate(username=None, password=None, **kwargs)Link para esta definição

Tries to authenticate username with password by calling User.check_password. If no username is provided, it tries to fetch a username from kwargs using the key CustomUser.USERNAME_FIELD. Returns an authenticated user or None.

get_user_permissions(user_obj, obj=None)Link para esta definição

Returns the set of permission strings the user_obj has from their own user permissions. Returns an empty set if is_anonymous() or is_active is False.

get_group_permissions(user_obj, obj=None)Link para esta definição

Returns the set of permission strings the user_obj has from the permissions of the groups they belong. Returns an empty set if is_anonymous() or is_active is False.

get_all_permissions(user_obj, obj=None)Link para esta definição

Returns the set of permission strings the user_obj has, including both user permissions and group permissions. Returns an empty set if is_anonymous() or is_active is False.

has_perm(user_obj, perm, obj=None)Link para esta definição

Uses get_all_permissions() to check if user_obj has the permission string perm. Returns False if the user is not is_active.

has_module_perms(self, user_obj, app_label)Link para esta definição

Returns whether the user_obj has any permissions on the app app_label.

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:

RemoteUserBackend.create_unknown_userLink para esta definição

True or False. Determines whether or not a User object is created if not already in the database. Defaults to True.

RemoteUserBackend.authenticate(remote_user)Link para esta definição

The username passed as remote_user is considered trusted. This method simply returns the User object with the given username, creating a new User object if create_unknown_user is True.

Returns None if create_unknown_user is False and a User object with the given username is not found in the database.

RemoteUserBackend.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.

RemoteUserBackend.configure_user(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.