Usando o sistema de autenticação DjangoLink para este cabeçalho
Este documento explica a utilização do sistema de autenticações do Django em suas configurações padrões. Estas configurações evoluíram para atender as necessidades mais comuns de um projeto, lidando com uma considerável quantidade de tarefas e implementando cuidadosamente, o uso de senhas e permissões. Para projetos onde o sistema de autenticações demande outras necessidades diferentes das padrões, o Django oferece suporte para uma extensiva customização: extension and customization de autenticação.
A autenticação do Django oferece, tanto autenticação como autorização juntos. Estes serviços são referenciados como “sistema de autenticação” uma vez estas funções são, de alguma forma, interligadas.
Objetos “User”Link para este cabeçalho
Os objetos do tipo User são o núcleo do sistema de autenticação. Eles tipicamente representam as pessoas interagindo com seu site e são usados para habilitar coisas como restrinção de acesso, registro de perfis de usuários, associar conteúdo com criadores etc. Somente uma classe de usuário existe no “framework” de autenticação do Django, isto é, usuários 'superusers' ou admin 'staff' são somente objetos do tipo “user” com atributos especiais definidos e não classes diferentes de objetos “user”.
Os atributos primários de usuário padrão são:
Veja a :class:` documentação completa da API <django.contrib.auth.models.User>` para maiores detalhes, a documentação em questão é mais orientada a tarefa.
Criando usuáriosLink para este cabeçalho
A forma mais direta para se criar usuários, é utilizando a função de ajuda inclusa create_user() helper function:
>>> from django.contrib.auth.models import User
>>> user = User.objects.create_user('john', 'lennon@thebeatles.com', 'johnpassword')
# At this point, user is a User object that has already been saved
# to the database. You can continue to change its attributes
# if you want to change other fields.
>>> user.last_name = 'Lennon'
>>> user.save()
Se você tiver a administração do Django instalado, você também pode: ref: ` criar usuários de forma interativa < auth -admin >` .
Criando superusuáriosLink para este cabeçalho
Criando superusuários usando o commando createsuperuser
$ python manage.py createsuperuser --username=joe --email=joe@example.com
Será solicitada então uma senha. Após inserí-la, a conta de usuário será criada imediatamente. Caso seja desligada a opção:--username ou --email, estes valores serão solicitados.
Mudando as senhasLink para este cabeçalho
O Django não armazena senha em sua forma bruta (texto limpo) no modelo do usuário, mas somente um “hash” (see documentação de como as senhas são manipuladas para detalhes completos). Por causa disso, não tente manipular diretamente o atributo “password” do usuário. Este é o porque de uma função auxiliar ser usada para criar um usuário.
Para mudar a senha de usuários, você tem várias opções:
O manage.py changepassword *username* oferece um método para alteração da senha do “User” na linha de comando. Ele pergunta no “prompt” para alterar uma senha de um dado usuário a qual você deve informar duas vezes. Se ambas combinam, uma nova senha será alterada imediatamente. Se você não fornecer um usuário, o comando irá tentar alterar a senha do nome do usuário que combine com o usuário do sistema.
Você pode também mudar a senha programaticamente, usando set_password():
>>> from django.contrib.auth.models import User
>>> u = User.objects.get(username='john')
>>> u.set_password('new password')
>>> u.save()
Se você tiver a administração do Django instalado, você também pode alterar a senha do usuário nas : ref: páginas de administração do ` sistema de autenticação < auth -admin >` .
Django também fornece : ref: ` views < built-in -auth- vistas >` e : ref: ` forms < built-in -auth-forms>` que podem ser utilizados para permitir que os usuários alterem suas próprias senhas.
Ao alterar a senha de um usuário, todas as sessões deste serão finalizadas se SessionAuthenticationMiddleware estiver habilitado. Veja : ref:session-invalidation-on-password-change para detalhes.
Autenticando usuáriosLink para este cabeçalho
- authenticate(\**credentials)Link para esta definição
Para autenticar um dado usuário e senha, utilize
authenticate(). As credenciais serão pegas na forma de argumentos chave valor, o que para a configuração padrão é “usuário” e “senha” e será retornado um objeto do tipoUserse a senha for válida para este usuário. Caso a senha seja inválida, a funçãoauthenticate()retornará “None”. Exemplo:from django.contrib.auth import authenticate user = authenticate(username='john', password='secret') if user is not None: # the password verified for the user if user.is_active: print("User is valid, active and authenticated") else: print("The password is valid, but the account has been disabled!") else: # the authentication system was unable to verify the username and password print("The username and password were incorrect.")
Autenticação em requisições WebLink para este cabeçalho
Django uses sessions and middleware to hook the
authentication system into request objects.
These provide a request.user attribute
on every request which represents the current user. If the current user has not
logged in, this attribute will be set to an instance
of AnonymousUser, otherwise it will be an
instance of User.
You can tell them apart with
is_authenticated(), like so:
if request.user.is_authenticated():
# Do something for authenticated users.
...
else:
# Do something for anonymous users.
...
Como autenticar um usuárioLink para este cabeçalho
Caso queira adicionar um usuário autenticado à sessão atual - isto pode ser feito com a função login().
- login(request, user)Link para esta definição
To log a user in, from a view, use
login(). It takes anHttpRequestobject and aUserobject.login()saves the user’s ID in the session, using Django’s session framework.Note que qualquer dado definido durante um sessão anônima, fica retido na sessão após um usuário logar.
Estes exemplos mostram como é possível utilizar ambas funções
authenticate()elogin():from django.contrib.auth import authenticate, login def my_view(request): username = request.POST['username'] password = request.POST['password'] user = authenticate(username=username, password=password) if user is not None: if user.is_active: login(request, user) # Redirect to a success page. else: # Return a 'disabled account' error message ... else: # Return an 'invalid login' error message. ...
Selecting the authentication backendLink para este cabeçalho
When a user logs in, the user’s ID and the backend that was used for authentication are saved in the user’s session. This allows the same authentication backend to fetch the user’s details on a future request. The authentication backend to save in the session is selected as follows:
Use the value of the optional
backendargument, if provided.Use the value of the
user.backendattribute, if present. This allows pairingauthenticate()andlogin():authenticate()sets theuser.backendattribute on theUserobject it returns.Use the
backendinAUTHENTICATION_BACKENDS, if there is only one.Caso contrário, gera uma exceção.
In cases 1 and 2, the value of the backend argument or the user.backend
attribute should be a dotted import path string (like that found in
AUTHENTICATION_BACKENDS), not the actual backend class.
How to log a user outLink para este cabeçalho
- logout(request)Link para esta definição
To log out a user who has been logged in via
django.contrib.auth.login(), usedjango.contrib.auth.logout()within your view. It takes anHttpRequestobject and has no return value. Example:from django.contrib.auth import logout def logout_view(request): logout(request) # Redirect to a success page.Note that
logout()doesn’t throw any errors if the user wasn’t logged in.When you call
logout(), the session data for the current request is completely cleaned out. All existing data is removed. This is to prevent another person from using the same Web browser to log in and have access to the previous user’s session data. If you want to put anything into the session that will be available to the user immediately after logging out, do that after callingdjango.contrib.auth.logout().
Limitando o acesso de usuários authenticadosLink para este cabeçalho
The raw wayLink para este cabeçalho
The simple, raw way to limit access to pages is to check
request.user.is_authenticated() and either redirect to a
login page:
from django.conf import settings
from django.shortcuts import redirect
def my_view(request):
if not request.user.is_authenticated():
return redirect('%s?next=%s' % (settings.LOGIN_URL, request.path))
# ...
…or display an error message:
from django.shortcuts import render
def my_view(request):
if not request.user.is_authenticated():
return render(request, 'myapp/login_error.html')
# ...
O login_required decoratorLink para este cabeçalho
- login_required(redirect_field_name='next', login_url=None)Link para esta definição
As a shortcut, you can use the convenient
login_required()decorator:from django.contrib.auth.decorators import login_required @login_required def my_view(request): ...login_required()does the following:If the user isn’t logged in, redirect to
settings.LOGIN_URL, passing the current absolute path in the query string. Example:/accounts/login/?next=/polls/3/.If the user is logged in, execute the view normally. The view code is free to assume the user is logged in.
By default, the path that the user should be redirected to upon successful authentication is stored in a query string parameter called
"next". If you would prefer to use a different name for this parameter,login_required()takes an optionalredirect_field_nameparameter:from django.contrib.auth.decorators import login_required @login_required(redirect_field_name='my_redirect_field') def my_view(request): ...Note that if you provide a value to
redirect_field_name, you will most likely need to customize your login template as well, since the template context variable which stores the redirect path will use the value ofredirect_field_nameas its key rather than"next"(the default).login_required()also takes an optionallogin_urlparameter. Example:from django.contrib.auth.decorators import login_required @login_required(login_url='/accounts/login/') def my_view(request): ...Note that if you don’t specify the
login_urlparameter, you’ll need to ensure that thesettings.LOGIN_URLand your login view are properly associated. For example, using the defaults, add the following lines to your URLconf:from django.contrib.auth import views as auth_views url(r'^accounts/login/$', auth_views.login),The
settings.LOGIN_URLalso accepts view function names and named URL patterns. This allows you to freely remap your login view within your URLconf without having to update the setting.
O LoginRequired mixinLink para este cabeçalho
When using class-based views, you can
achieve the same behavior as with login_required by using the
LoginRequiredMixin. This mixin should be at the leftmost position in the
inheritance list.
- class LoginRequiredMixinLink para esta definição
-
If a view is using this mixin, all requests by non-authenticated users will be redirected to the login page or shown an HTTP 403 Forbidden error, depending on the
raise_exceptionparameter.You can set any of the parameters of
AccessMixinto customize the handling of unauthorized users:from django.contrib.auth.mixins import LoginRequiredMixin class MyView(LoginRequiredMixin, View): login_url = '/login/' redirect_field_name = 'redirect_to'
Limiting access to logged-in users that pass a testLink para este cabeçalho
To limit access based on certain permissions or some other test, you’d do essentially the same thing as described in the previous section.
The simple way is to run your test on request.user in the view directly. For example, this view
checks to make sure the user has an email in the desired domain and if not,
redirects to the login page:
from django.shortcuts import redirect
def my_view(request):
if not request.user.email.endswith('@example.com'):
return redirect('/login/?next=%s' % request.path)
# ...
- user_passes_test(test_func, login_url=None, redirect_field_name='next')Link para esta definição
As a shortcut, you can use the convenient
user_passes_testdecorator which performs a redirect when the callable returnsFalse:from django.contrib.auth.decorators import user_passes_test def email_check(user): return user.email.endswith('@example.com') @user_passes_test(email_check) def my_view(request): ...user_passes_test()takes a required argument: a callable that takes aUserobject and returnsTrueif the user is allowed to view the page. Note thatuser_passes_test()does not automatically check that theUseris not anonymous.user_passes_test()takes two optional arguments:login_urlLets you specify the URL that users who don’t pass the test will be redirected to. It may be a login page and defaults to
settings.LOGIN_URLif you don’t specify one.redirect_field_nameSame as for
login_required(). Setting it toNoneremoves it from the URL, which you may want to do if you are redirecting users that don’t pass the test to a non-login page where there’s no “next page”.
Por exemplo:
@user_passes_test(email_check, login_url='/login/') def my_view(request): ...
- class UserPassesTestMixinLink para esta definição
-
When using class-based views, you can use the
UserPassesTestMixinto do this.- test_func()Link para esta definição
You have to override the
test_func()method of the class to provide the test that is performed. Furthermore, you can set any of the parameters ofAccessMixinto customize the handling of unauthorized users:from django.contrib.auth.mixins import UserPassesTestMixin class MyView(UserPassesTestMixin, View): def test_func(self): return self.request.user.email.endswith('@example.com')
- get_test_func()Link para esta definição
You can also override the
get_test_func()method to have the mixin use a differently named function for its checks (instead oftest_func()).
O permission_required decoratorLink para este cabeçalho
- permission_required(perm, login_url=None, raise_exception=False)Link para esta definição
It’s a relatively common task to check whether a user has a particular permission. For that reason, Django provides a shortcut for that case: the
permission_required()decorator.:from django.contrib.auth.decorators import permission_required @permission_required('polls.can_vote') def my_view(request): ...Just like the
has_perm()method, permission names take the form"<app label>.<permission codename>"(i.e.polls.can_votefor a permission on a model in thepollsapplication).The decorator may also take an iterable of permissions, in which case the user must have all of the permissions in order to access the view.
Note that
permission_required()also takes an optionallogin_urlparameter:from django.contrib.auth.decorators import permission_required @permission_required('polls.can_vote', login_url='/loginpage/') def my_view(request): ...As in the
login_required()decorator,login_urldefaults tosettings.LOGIN_URL.If the
raise_exceptionparameter is given, the decorator will raisePermissionDenied, prompting the 403 (HTTP Forbidden) view instead of redirecting to the login page.If you want to use
raise_exceptionbut also give your users a chance to login first, you can add thelogin_required()decorator:from django.contrib.auth.decorators import login_required, permission_required @login_required @permission_required('polls.can_vote', raise_exception=True) def my_view(request): ...
O PermissionRequiredMixin mixinLink para este cabeçalho
To apply permission checks to class-based views, you can use the PermissionRequiredMixin:
- class PermissionRequiredMixinLink para esta definição
-
This mixin, just like the
permission_requireddecorator, checks whether the user accessing a view has all given permissions. You should specify the permission (or an iterable of permissions) using thepermission_requiredparameter:from django.contrib.auth.mixins import PermissionRequiredMixin class MyView(PermissionRequiredMixin, View): permission_required = 'polls.can_vote' # Or multiple of permissions: permission_required = ('polls.can_open', 'polls.can_edit')You can set any of the parameters of
AccessMixinto customize the handling of unauthorized users.You may also override these methods:
- get_permission_required()Link para esta definição
Returns an iterable of permission names used by the mixin. Defaults to the
permission_requiredattribute, converted to a tuple if necessary.
- has_permission()Link para esta definição
Returns a boolean denoting whether the current user has permission to execute the decorated view. By default, this returns the result of calling
has_perms()with the list of permissions returned byget_permission_required().
Authentication ViewsLink para este cabeçalho
Django provides several views that you can use for handling login, logout, and password management. These make use of the stock auth forms but you can pass in your own forms as well.
Django provides no default template for the authentication views. You should create your own templates for the views you want to use. The template context is documented in each view, see All authentication views.
Using the viewsLink para este cabeçalho
There are different methods to implement these views in your project. The
easiest way is to include the provided URLconf in django.contrib.auth.urls
in your own URLconf, for example:
urlpatterns = [
url('^', include('django.contrib.auth.urls')),
]
This will include the following URL patterns:
^login/$ [name='login']
^logout/$ [name='logout']
^password_change/$ [name='password_change']
^password_change/done/$ [name='password_change_done']
^password_reset/$ [name='password_reset']
^password_reset/done/$ [name='password_reset_done']
^reset/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$ [name='password_reset_confirm']
^reset/done/$ [name='password_reset_complete']
The views provide a URL name for easier reference. See the URL documentation for details on using named URL patterns.
If you want more control over your URLs, you can reference a specific view in your URLconf:
from django.contrib.auth import views as auth_views
urlpatterns = [
url('^change-password/$', auth_views.password_change),
]
The views have optional arguments you can use to alter the behavior of the
view. For example, if you want to change the template name a view uses, you can
provide the template_name argument. A way to do this is to provide keyword
arguments in the URLconf, these will be passed on to the view. For example:
urlpatterns = [
url(
'^change-password/$',
auth_views.password_change,
{'template_name': 'change-password.html'}
),
]
All views return a TemplateResponse
instance, which allows you to easily customize the response data before
rendering. A way to do this is to wrap a view in your own view:
from django.contrib.auth import views
def change_password(request):
template_response = views.password_change(request)
# Do something with `template_response`
return template_response
For more details, see the TemplateResponse documentation.
All authentication viewsLink para este cabeçalho
This is a list with all the views django.contrib.auth provides. For
implementation details see Using the views.
- login(request, template_name=`registration/login.html`, redirect_field_name='next', authentication_form=AuthenticationForm, current_app=None, extra_context=None)Link para esta definição
URL name:
loginSee the URL documentation for details on using named URL patterns.
Optional arguments:
template_name: The name of a template to display for the view used to log the user in. Defaults toregistration/login.html.redirect_field_name: The name of aGETfield containing the URL to redirect to after login. Defaults tonext.authentication_form: A callable (typically just a form class) to use for authentication. Defaults toAuthenticationForm.current_app: A hint indicating which application contains the current view. See the namespaced URL resolution strategy for more information.extra_context: A dictionary of context data that will be added to the default context data passed to the template.
Here’s what
django.contrib.auth.views.logindoes:If called via
GET, it displays a login form that POSTs to the same URL. More on this in a bit.If called via
POSTwith user submitted credentials, it tries to log the user in. If login is successful, the view redirects to the URL specified innext. Ifnextisn’t provided, it redirects tosettings.LOGIN_REDIRECT_URL(which defaults to/accounts/profile/). If login isn’t successful, it redisplays the login form.
It’s your responsibility to provide the html for the login template , called
registration/login.htmlby default. This template gets passed four template context variables:form: AFormobject representing theAuthenticationForm.next: The URL to redirect to after successful login. This may contain a query string, too.site: The currentSite, according to theSITE_IDsetting. If you don’t have the site framework installed, this will be set to an instance ofRequestSite, which derives the site name and domain from the currentHttpRequest.site_name: An alias forsite.name. If you don’t have the site framework installed, this will be set to the value ofrequest.META['SERVER_NAME']. For more on sites, see The “sites” framework.
If you’d prefer not to call the template
registration/login.html, you can pass thetemplate_nameparameter via the extra arguments to the view in your URLconf. For example, this URLconf line would usemyapp/login.htmlinstead:url(r'^accounts/login/$', auth_views.login, {'template_name': 'myapp/login.html'}),You can also specify the name of the
GETfield which contains the URL to redirect to after login by passingredirect_field_nameto the view. By default, the field is callednext.Here’s a sample
registration/login.htmltemplate you can use as a starting point. It assumes you have abase.htmltemplate that defines acontentblock:{% extends "base.html" %} {% block content %} {% if form.errors %} <p>Your username and password didn't match. Please try again.</p> {% endif %} {% if next %} {% if user.is_authenticated %} <p>Your account doesn't have access to this page. To proceed, please login with an account that has access.</p> {% else %} <p>Please login to see this page.</p> {% endif %} {% endif %} <form method="post" action="{% url 'login' %}"> {% csrf_token %} <table> <tr> <td>{{ form.username.label_tag }}</td> <td>{{ form.username }}</td> </tr> <tr> <td>{{ form.password.label_tag }}</td> <td>{{ form.password }}</td> </tr> </table> <input type="submit" value="login" /> <input type="hidden" name="next" value="{{ next }}" /> </form> {# Assumes you setup the password_reset view in your URLconf #} <p><a href="{% url 'password_reset' %}">Lost password?</a></p> {% endblock %}If you have customized authentication (see Customizing Authentication) you can pass a custom authentication form to the login view via the
authentication_formparameter. This form must accept arequestkeyword argument in its__init__method, and provide aget_user()method which returns the authenticated user object (this method is only ever called after successful form validation).
- logout(request, next_page=None, template_name='registration/logged_out.html', redirect_field_name='next', current_app=None, extra_context=None)Link para esta definição
Logs a user out.
URL name:
logoutOptional arguments:
next_page: The URL to redirect to after logout.template_name: The full name of a template to display after logging the user out. Defaults toregistration/logged_out.htmlif no argument is supplied.redirect_field_name: The name of aGETfield containing the URL to redirect to after log out. Defaults tonext. Overrides thenext_pageURL if the givenGETparameter is passed.current_app: A hint indicating which application contains the current view. See the namespaced URL resolution strategy for more information.extra_context: A dictionary of context data that will be added to the default context data passed to the template.
Template context:
title: The string “Logged out”, localized.site: The currentSite, according to theSITE_IDsetting. If you don’t have the site framework installed, this will be set to an instance ofRequestSite, which derives the site name and domain from the currentHttpRequest.site_name: An alias forsite.name. If you don’t have the site framework installed, this will be set to the value ofrequest.META['SERVER_NAME']. For more on sites, see The “sites” framework.current_app: A hint indicating which application contains the current view. See the namespaced URL resolution strategy for more information.extra_context: A dictionary of context data that will be added to the default context data passed to the template.
- logout_then_login(request, login_url=None, current_app=None, extra_context=None)Link para esta definição
Logs a user out, then redirects to the login page.
URL name: No default URL provided
Optional arguments:
login_url: The URL of the login page to redirect to. Defaults tosettings.LOGIN_URLif not supplied.current_app: A hint indicating which application contains the current view. See the namespaced URL resolution strategy for more information.extra_context: A dictionary of context data that will be added to the default context data passed to the template.
- password_change(request, template_name='registration/password_change_form.html', post_change_redirect=None, password_change_form=PasswordChangeForm, current_app=None, extra_context=None)Link para esta definição
Allows a user to change their password.
URL name:
password_changeOptional arguments:
template_name: The full name of a template to use for displaying the password change form. Defaults toregistration/password_change_form.htmlif not supplied.post_change_redirect: The URL to redirect to after a successful password change.password_change_form: A custom “change password” form which must accept auserkeyword argument. The form is responsible for actually changing the user’s password. Defaults toPasswordChangeForm.current_app: A hint indicating which application contains the current view. See the namespaced URL resolution strategy for more information.extra_context: A dictionary of context data that will be added to the default context data passed to the template.
Template context:
form: The password change form (seepassword_change_formabove).
- password_change_done(request, template_name='registration/password_change_done.html', current_app=None, extra_context=None)Link para esta definição
The page shown after a user has changed their password.
URL name:
password_change_doneOptional arguments:
template_name: The full name of a template to use. Defaults toregistration/password_change_done.htmlif not supplied.current_app: A hint indicating which application contains the current view. See the namespaced URL resolution strategy for more information.extra_context: A dictionary of context data that will be added to the default context data passed to the template.
- password_reset(request, is_admin_site=False, template_name='registration/password_reset_form.html', email_template_name='registration/password_reset_email.html', subject_template_name='registration/password_reset_subject.txt', password_reset_form=PasswordResetForm, token_generator=default_token_generator, post_reset_redirect=None, from_email=None, current_app=None, extra_context=None, html_email_template_name=None, extra_email_context=None)Link para esta definição
Allows a user to reset their password by generating a one-time use link that can be used to reset the password, and sending that link to the user’s registered email address.
If the email address provided does not exist in the system, this view won’t send an email, but the user won’t receive any error message either. This prevents information leaking to potential attackers. If you want to provide an error message in this case, you can subclass
PasswordResetFormand use thepassword_reset_formargument.Users flagged with an unusable password (see
set_unusable_password()aren’t allowed to request a password reset to prevent misuse when using an external authentication source like LDAP. Note that they won’t receive any error message since this would expose their account’s existence but no mail will be sent either.URL name:
password_resetOptional arguments:
template_name: The full name of a template to use for displaying the password reset form. Defaults toregistration/password_reset_form.htmlif not supplied.email_template_name: The full name of a template to use for generating the email with the reset password link. Defaults toregistration/password_reset_email.htmlif not supplied.subject_template_name: The full name of a template to use for the subject of the email with the reset password link. Defaults toregistration/password_reset_subject.txtif not supplied.password_reset_form: Form that will be used to get the email of the user to reset the password for. Defaults toPasswordResetForm.token_generator: Instance of the class to check the one time link. This will default todefault_token_generator, it’s an instance ofdjango.contrib.auth.tokens.PasswordResetTokenGenerator.post_reset_redirect: The URL to redirect to after a successful password reset request.from_email: A valid email address. By default Django uses theDEFAULT_FROM_EMAIL.current_app: A hint indicating which application contains the current view. See the namespaced URL resolution strategy for more information.extra_context: A dictionary of context data that will be added to the default context data passed to the template.html_email_template_name: The full name of a template to use for generating atext/htmlmultipart email with the password reset link. By default, HTML email is not sent.extra_email_context: A dictionary of context data that will available in the email template.
Template context:
form: The form (seepassword_reset_formabove) for resetting the user’s password.
Email template context:
email: An alias foruser.emailuser: The currentUser, according to theemailform field. Only active users are able to reset their passwords (User.is_active is True).site_name: An alias forsite.name. If you don’t have the site framework installed, this will be set to the value ofrequest.META['SERVER_NAME']. For more on sites, see The “sites” framework.domain: An alias forsite.domain. If you don’t have the site framework installed, this will be set to the value ofrequest.get_host().protocol: http or httpsuid: The user’s primary key encoded in base 64.token: Token to check that the reset link is valid.
Sample
registration/password_reset_email.html(email body template):Someone asked for password reset for email {{ email }}. Follow the link below: {{ protocol}}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %}The same template context is used for subject template. Subject must be single line plain text string.
- password_reset_done(request, template_name='registration/password_reset_done.html', current_app=None, extra_context=None)Link para esta definição
The page shown after a user has been emailed a link to reset their password. This view is called by default if the
password_reset()view doesn’t have an explicitpost_reset_redirectURL set.URL name:
password_reset_doneOptional arguments:
template_name: The full name of a template to use. Defaults toregistration/password_reset_done.htmlif not supplied.current_app: A hint indicating which application contains the current view. See the namespaced URL resolution strategy for more information.extra_context: A dictionary of context data that will be added to the default context data passed to the template.
- password_reset_confirm(request, uidb64=None, token=None, template_name='registration/password_reset_confirm.html', token_generator=default_token_generator, set_password_form=SetPasswordForm, post_reset_redirect=None, current_app=None, extra_context=None)Link para esta definição
Presents a form for entering a new password.
URL name:
password_reset_confirmOptional arguments:
uidb64: The user’s id encoded in base 64. Defaults toNone.token: Token to check that the password is valid. Defaults toNone.template_name: The full name of a template to display the confirm password view. Default value isregistration/password_reset_confirm.html.token_generator: Instance of the class to check the password. This will default todefault_token_generator, it’s an instance ofdjango.contrib.auth.tokens.PasswordResetTokenGenerator.set_password_form: Form that will be used to set the password. Defaults toSetPasswordFormpost_reset_redirect: URL to redirect after the password reset done. Defaults toNone.current_app: A hint indicating which application contains the current view. See the namespaced URL resolution strategy for more information.extra_context: A dictionary of context data that will be added to the default context data passed to the template.
Template context:
form: The form (seeset_password_formabove) for setting the new user’s password.validlink: Boolean, True if the link (combination ofuidb64andtoken) is valid or unused yet.
- password_reset_complete(request, template_name='registration/password_reset_complete.html', current_app=None, extra_context=None)Link para esta definição
Presents a view which informs the user that the password has been successfully changed.
URL name:
password_reset_completeOptional arguments:
template_name: The full name of a template to display the view. Defaults toregistration/password_reset_complete.html.current_app: A hint indicating which application contains the current view. See the namespaced URL resolution strategy for more information.extra_context: A dictionary of context data that will be added to the default context data passed to the template.
Helper functionsLink para este cabeçalho
- redirect_to_login(next, login_url=None, redirect_field_name='next')Link para esta definição
Redirects to the login page, and then back to another URL after a successful login.
Required arguments:
next: The URL to redirect to after a successful login.
Optional arguments:
login_url: The URL of the login page to redirect to. Defaults tosettings.LOGIN_URLif not supplied.redirect_field_name: The name of aGETfield containing the URL to redirect to after log out. Overridesnextif the givenGETparameter is passed.
Built-in formsLink para este cabeçalho
If you don’t want to use the built-in views, but want the convenience of not
having to write forms for this functionality, the authentication system
provides several built-in forms located in django.contrib.auth.forms:
- class AdminPasswordChangeFormLink para esta definição
A form used in the admin interface to change a user’s password.
Takes the
useras the first positional argument.
- class AuthenticationFormLink para esta definição
A form for logging a user in.
Takes
requestas its first positional argument, which is stored on the form instance for use by sub-classes.- confirm_login_allowed(user)Link para esta definição
By default,
AuthenticationFormrejects users whoseis_activeflag is set toFalse. You may override this behavior with a custom policy to determine which users can log in. Do this with a custom form that subclassesAuthenticationFormand overrides theconfirm_login_allowed()method. This method should raise aValidationErrorif the given user may not log in.For example, to allow all users to log in regardless of “active” status:
from django.contrib.auth.forms import AuthenticationForm class AuthenticationFormWithInactiveUsersOkay(AuthenticationForm): def confirm_login_allowed(self, user): passOr to allow only some active users to log in:
class PickyAuthenticationForm(AuthenticationForm): def confirm_login_allowed(self, user): if not user.is_active: raise forms.ValidationError( _("This account is inactive."), code='inactive', ) if user.username.startswith('b'): raise forms.ValidationError( _("Sorry, accounts starting with 'b' aren't welcome here."), code='no_b_users', )
- class PasswordChangeFormLink para esta definição
A form for allowing a user to change their password.
- class PasswordResetFormLink para esta definição
A form for generating and emailing a one-time use link to reset a user’s password.
- send_email(subject_template_name, email_template_name, context, from_email, to_email, html_email_template_name=None)Link para esta definição
-
Uses the arguments to send an
EmailMultiAlternatives. Can be overridden to customize how the email is sent to the user.- Parâmetros:
subject_template_name – the template for the subject.
email_template_name – the template for the email body.
context – context passed to the
subject_template,email_template, andhtml_email_template(if it is notNone).from_email – the sender’s email.
to_email – the email of the requester.
html_email_template_name – the template for the HTML body; defaults to
None, in which case a plain text email is sent.
By default,
save()populates thecontextwith the same variables thatpassword_reset()passes to its email context.
- class SetPasswordFormLink para esta definição
A form that lets a user change their password without entering the old password.
- class UserChangeFormLink para esta definição
A form used in the admin interface to change a user’s information and permissions.
- class UserCreationFormLink para esta definição
Um formulário para criar um novo usuário.
Authentication data in templatesLink para este cabeçalho
The currently logged-in user and their permissions are made available in the
template context when you use
RequestContext.
UsuáriosLink para este cabeçalho
When rendering a template RequestContext, the
currently logged-in user, either a User
instance or an AnonymousUser instance, is
stored in the template variable {{ user }}:
{% if user.is_authenticated %}
<p>Welcome, {{ user.username }}. Thanks for logging in.</p>
{% else %}
<p>Welcome, new user. Please log in.</p>
{% endif %}
This template context variable is not available if a RequestContext is not
being used.
PermissõesLink para este cabeçalho
The currently logged-in user’s permissions are stored in the template variable
{{ perms }}. This is an instance of
django.contrib.auth.context_processors.PermWrapper, which is a
template-friendly proxy of permissions.
In the {{ perms }} object, single-attribute lookup is a proxy to
User.has_module_perms.
This example would display True if the logged-in user had any permissions
in the foo app:
{{ perms.foo }}
Two-level-attribute lookup is a proxy to
User.has_perm. This example
would display True if the logged-in user had the permission
foo.can_vote:
{{ perms.foo.can_vote }}
Thus, you can check permissions in template {% if %} statements:
{% if perms.foo %}
<p>You have permission to do something in the foo app.</p>
{% if perms.foo.can_vote %}
<p>You can vote!</p>
{% endif %}
{% if perms.foo.can_drive %}
<p>You can drive!</p>
{% endif %}
{% else %}
<p>You don't have permission to do anything in the foo app.</p>
{% endif %}
It is possible to also look permissions up by {% if in %} statements.
For example:
{% if 'foo' in perms %}
{% if 'foo.can_vote' in perms %}
<p>In lookup works, too.</p>
{% endif %}
{% endif %}
Managing users in the adminLink para este cabeçalho
When you have both django.contrib.admin and django.contrib.auth
installed, the admin provides a convenient way to view and manage users,
groups, and permissions. Users can be created and deleted like any Django
model. Groups can be created, and permissions can be assigned to users or
groups. A log of user edits to models made within the admin is also stored and
displayed.
Criando usuáriosLink para este cabeçalho
You should see a link to “Users” in the “Auth” section of the main admin index page. The “Add user” admin page is different than standard admin pages in that it requires you to choose a username and password before allowing you to edit the rest of the user’s fields.
Also note: if you want a user account to be able to create users using the Django admin site, you’ll need to give them permission to add users and change users (i.e., the “Add user” and “Change user” permissions). If an account has permission to add users but not to change them, that account won’t be able to add users. Why? Because if you have permission to add users, you have the power to create superusers, which can then, in turn, change other users. So Django requires add and change permissions as a slight security measure.
Be thoughtful about how you allow users to manage permissions. If you give a non-superuser the ability to edit users, this is ultimately the same as giving them superuser status because they will be able to elevate permissions of users including themselves!
Mudando as senhasLink para este cabeçalho
User passwords are not displayed in the admin (nor stored in the database), but the password storage details are displayed. Included in the display of this information is a link to a password change form that allows admins to change user passwords.