Wiki Flow of Authentication¶
警告
This recipe has not received significant updates since its creation around the time Pyramid 1.0 was released. Since then, the wiki tutorial to which this recipe refers has received numerous significant updates. Pyramid 1.6.1 was released on 2016-02-02, and a major update to the wiki tutorial has been merged for the Pyramid 1.7 release. Upon the release of Pyramid 1.7, this recipe will be removed as obsolete.
This tutorial describes the "flow of authentication" of the result of the completing the Adding authorization tutorial chapter from the main Pyramid documentation.
This text was contributed by John Shipman.
Overall flow of an authentication¶
Now that you have seen all the pieces of the authentication mechanism, here are some examples that show how they all work together.
- Failed login: The user requests - /FrontPage/edit_page. The site presents the login form. The user enters- editoras the login, but enters an invalid password- bad. The site redisplays the login form with the message "Failed login". See Failed login.
- The user again requests - /FrontPage/edit_page. The site presents the login form, and this time the user enters login- editorand password- editor. The site presents the edit form with the content of- /FrontPage. The user makes some changes and saves them. See Successful login.
- The user again revisits - /FrontPage/edit_page. The site goes immediately to the edit form without requesting credentials. See Revisiting after authentication.
- The user clicks the - Logoutlink. See Logging out.
Failed login¶
The process starts when the user enters URL
http://localhost:6543/FrontPage/edit_page.  Let's assume that
this is the first request ever made to the application and the
page database is empty except for the Page instance created
for the front page by the initialize_sql function in
models.py.
This process involves two complete request/response cycles.
- From the front page, the user clicks Edit page. The request is to - /FrontPage/edit_page. The view callable is- login.login. The response is the- login.pttemplate with blank fields.
- The user enters invalid credentials and clicks Log in. A - POSTrequest is sent to- /FrontPage/edit_page. The view callable is again- login.login. The response is the- login.pttemplate showing the message "Failed login", with the entry fields displaying their former values.
Cycle 1:
- During URL dispatch, the route - '/{pagename}/edit_page'is considered for matching. The associated view has a- view_permission='edit'permission attached, so the dispatch logic has to verify that the user has that permission or the route is not considered to match.- The context for all route matching comes from the configured root factory, - RootFactory()in- models.py. This class has an- __acl__attribute that defines the access control list for all routes:- __acl__ = [ (Allow, Everyone, 'view'), (Allow, 'group:editors', 'edit') ] - In practice, this means that for any route that requires the - editpermission, the user must be authenticated and have the- group:editorsprincipal or the route is not considered to match.
- To find the list of the user's principals, the authorization first policy checks to see if the user has a - paste.auth.auth_tktcookie. Since the user has never been to the site, there is no such cookie, and the user is considered to be unauthenticated.
- Since the user is unauthenticated, the - groupfinderfunction in- security.pyis called with- Noneas its- useridargument. The function returns an empty list of principals.
- Because that list does not contain the - group:editorsprincipal, the- '/{pagename}/edit_page'route's- editpermission fails, and the route does not match.
- Because no routes match, the forbidden view callable is invoked: the - loginfunction in module- login.py.
- Inside the - loginfunction, the value of- login_urlis- http://localhost:6543/login, and the value of- referreris- http://localhost:6543/FrontPage/edit_page.- Because - request.paramshas no key for- 'came_from', the variable- came_fromis also set to- http://localhost:6543/FrontPage/edit_page. Variables- message,- login, and- passwordare set to the empty string.- Because - request.paramshas no key for- 'form.submitted', the- loginfunction returns this dictionary:- {'message': '', 'url':'http://localhost:6543/login', 'came_from':'http://localhost:6543/FrontPage/edit_page', 'login':'', 'password':''} 
- This dictionary is used to render the - login.pttemplate. In the form, the- actionattribute is- http://localhost:6543/login, and the value of- came_fromis included in that form as a hidden field by this line in the template:- <input type="hidden" name="came_from" value="${came_from}"/> 
Cycle 2:
- The user enters incorrect credentials and clicks the Log in button, which does a - POSTrequest to URL- http://localhost:6543/login. The name of the Log in button in this form is- form.submitted.
- The route with pattern - '/login'matches this URL, so control is passed again to the- loginview callable.
- The - login_urland- referrerhave the same value this time (- http://localhost:6543/login), so variable- referreris set to- '/'.- Since - request.paramsdoes have a key- 'form.submitted', the values of- loginand- passwordare retrieved from- request.params.- Because the login and password do not match any of the entries in the - USERSdictionary in- security.py, variable- messageis set to- 'Failed login'.- The view callable returns this dictionary: - {'message':'Failed login', 'url':'http://localhost:6543/login', 'came_from':'/', 'login':'editor', 'password':'bad'} 
- The - login.pttemplate is rendered using those values.
Successful login¶
In this scenario, the user again requests URL
/FrontPage/edit_page.
This process involves four complete request/response cycles.
- The user clicks Edit page. The view callable is - login.login. The response is template- login.pt, with all the fields blank.
- The user enters valid credentials and clicks Log in. The view callable is - login.login. The response is a redirect to- /FrontPage/edit_page.
- The view callable is - views.edit_page. The response renders template- edit.pt, displaying the current page content.
- The user edits the content and clicks Save. The view callable is - views.edit_page. The response is a redirect to- /FrontPage.
Execution proceeds as in Failed login, up to the point
where the password editor is successfully matched against the
value from the USERS dictionary.
Cycle 2:
- Within the - login.loginview callable, the value of- login_urlis- http://localhost:6543/login, and the value of- referreris- '/', and- came_fromis- http://localhost:6543/FrontPage/edit_pagewhen this block is executed:- if USERS.get(login) == password: headers = remember(request, login) return HTTPFound(location=came_from, headers=headers) 
- Because the password matches this time, - pyramid.security.rememberreturns a sequence of header tuples that will set a- paste.auth.auth_tktauthentication cookie in the user's browser for the login- 'editor'.
- The - HTTPFoundexception returns a response that redirects the browser to- http://localhost:6543/FrontPage/edit_page, including the headers that set the authentication cookie.
Cycle 3:
- Route pattern - '/{pagename}/edit_page'matches this URL, but the corresponding view is restricted by an- 'edit'permission.
- Because the user now has an authentication cookie defining their login name as - 'editor', the- groupfinderfunction is called with that value as its- useridargument.
- The - groupfinderfunction returns the list- ['group:editors']. This satisfies the access control entry- (Allow, 'group:editors', 'edit'), which grants the- editpermission. Thus, this route matches, and control passes to view callable- edit_page.
- Within - edit_page,- nameis set to- 'FrontPage', the page name from- request.matchdict['pagename'], and- pageis set to an instance of- models.Pagethat holds the current content of- FrontPage.
- Since this request did not come from a form, - request.paramsdoes not have a key for- 'form.submitted'.
- The - edit_pagefunction calls- pyramid.security.authenticated_userid()to find out whether the user is authenticated. Because of the cookies set previously, the variable- logged_inis set to the userid- 'editor'.
- The - edit_pagefunction returns this dictionary:- {'page':page, 'logged_in':'editor', 'save_url':'http://localhost:6543/FrontPage/edit_page'} 
- Template - edit.ptis rendered with those values. Among other features of this template, these lines cause the inclusion of a Logout link:- <span tal:condition="logged_in"> <a href="${request.application_url}/logout">Logout</a> </span> - For the example case, this link will refer to - http://localhost:6543/logout.- These lines of the template display the current page's content in a form whose - actionattribute is- http://localhost:6543/FrontPage/edit_page:- <form action="${save_url}" method="post"> <textarea name="body" tal:content="page.data" rows="10" cols="60"/> <input type="submit" name="form.submitted" value="Save"/> </form> 
Cycle 4:
- The user edits the page content and clicks Save. 
- URL - http://localhost:6543/FrontPage/edit_pagegoes through the same routing as before, up until the line that checks whether- request.paramshas a key- 'form.submitted'. This time, within the- edit_pageview callable, these lines are executed:- page.data = request.params['body'] session.add(page) return HTTPFound(location = route_url('view_page', request, pagename=name)) - The first two lines replace the old page content with the contents of the - bodytext area from the form, and then update the page stored in the database. The third line causes a response that redirects the browser to- http://localhost:6543/FrontPage.
Revisiting after authentication¶
In this case, the user has an authentication cookie set in their
browser that specifies their login as 'editor'.  The
requested URL is http://localhost:6543/FrontPage/edit_page.
This process requires two request/response cycles.
- The user clicks Edit page. The view callable is - views.edit_page. The response is- edit.pt, showing the current page content.
- The user edits the content and clicks Save. The view callable is - views.edit_page. The response is a redirect to- /Frontpage.
Cycle 1:
- The route with pattern - /{pagename}/edit_pagematches the URL, and because of the authentication cookie,- groupfinderreturns a list containing the- group:editorsprincipal, which- models.RootFactory.__acl__uses to grant the- editpermission, so this route matches and dispatches to the view callable- views.edit_page().
- In - edit_page, because the request did not come from a form submission,- request.paramshas no key for- 'form.submitted'.
- The variable - logged_inis set to the login name- 'editor'by calling- authenticated_userid, which extracts it from the authentication cookie.
- The function returns this dictionary: - {'page':page, 'save_url':'http://localhost:6543/FrontPage/edit_page', 'logged_in':'editor'} 
- Template - edit.ptis rendered with the values from that dictionary. Because of the presence of the- 'logged_in'entry, a Logout link appears.
Cycle 2:
- The user edits the page content and clicks Save. 
- The - POSToperation works as in Successful login.
Logging out¶
This process starts with a request URL
http://localhost:6543/logout.
- The route with pattern - '/logout'matches and dispatches to the view callable- logoutin- login.py.
- The call to - pyramid.security.forget()returns a list of header tuples that will, when returned with the response, cause the browser to delete the user's authentication cookie.
- The view callable returns an - HTTPFoundexception that redirects the browser to named route- view_wiki, which will translate to URL- http://localhost:6543. It also passes along the headers that delete the authentication cookie.
