1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
|
.. _wiki2_adding_authorization:
====================
Adding authorization
====================
In the last chapter we built :term:`authentication` into our wiki. We also
went one step further and used the ``request.identity`` object to perform some
explicit :term:`authorization` checks. This is fine for a lot of applications,
but :app:`Pyramid` provides some facilities for cleaning this up and decoupling
the constraints from the view function itself.
We will implement access control with the following steps:
* Update the :term:`security policy` to break down the :term:`identity` into a list of :term:`principals <principal>` (``security.py``).
* Utilize the :class:`pyramid.authorization.ACLHelper` to support a per-context mapping of principals to permissions (``security.py``).
* Add new :term:`resource` definitions that will be used as the :term:`context`
for the wiki pages (``routes.py``).
* Add an :term:`ACL` to each resource (``routes.py``).
* Replace the inline checks on the views with :term:`permission` declarations
(``views/default.py``).
Add ACL support
---------------
A :term:`principal` is a level of abstraction on top of the raw :term:`identity`
that describes the user in terms of its capabilities, roles, or other
identifiers that are easier to generalize. The permissions are then written
against the principals without focusing on the exact user involved.
:app:`Pyramid` defines two builtin principals used in every application:
:attr:`pyramid.authorization.Everyone` and :attr:`pyramid.authorization.Authenticated`.
On top of these we have already mentioned the required principals for this
application in the original design. The user has two possible roles: ``editor``
or ``basic``. These will be prefixed by the string ``role:`` to avoid clashing
with any other types of principals.
Open the file ``tutorial/security.py`` and edit it as follows:
.. literalinclude:: src/authorization/tutorial/security.py
:linenos:
:emphasize-lines: 2-6,17,42-53
:language: python
Only the highlighted lines need to be added.
Note that the role comes from the ``User`` object. We also add the ``user.id``
as a principal for when we want to allow that exact user to edit pages which
they have created.
We're using the :class:`pyramid.authorization.ACLHelper`, which will suffice for most applications.
It uses the :term:`context` to define the mapping between a :term:`principal` and :term:`permission` for the current request via the ``__acl__`` method or attribute.
The ``permits`` method completes our implementation of the :class:`pyramid.interfaces.ISecurityPolicy` interface and enables our application to use :attr:`pyramid.request.Request.has_permission` and the ``permission=`` constraint on views.
Add resources and ACLs
----------------------
Resources and context are the hidden gems of :app:`Pyramid`. You've made it!
Every URL in a web application represents a :term:`resource` (the "R" in
Uniform Resource Locator). Often the resource is something in your data model,
but it could also be an abstraction over many models.
Our wiki has two resources:
#. A ``NewPage``. Represents a potential ``Page`` that does not exist. Any
logged-in user, having either role of ``basic`` or ``editor``, can create
pages.
#. A ``PageResource``. Represents a ``Page`` that is to be viewed or edited.
``editor`` users, as well as the original creator of the ``Page``, may edit
the ``PageResource``. Anyone may view it.
.. note::
The wiki data model is simple enough that the ``PageResource`` is mostly
redundant with our ``models.Page`` SQLAlchemy class. It is completely valid
to combine these into one class. However, for this tutorial, they are
explicitly separated to make clear the distinction between the parts about
which :app:`Pyramid` cares versus application-defined objects.
There are many ways to define these resources, and they can even be grouped
into collections with a hierarchy. However, we're keeping it simple here!
Open the file ``tutorial/routes.py`` and edit the following lines:
.. literalinclude:: src/authorization/tutorial/routes.py
:linenos:
:emphasize-lines: 1-11,18-
:language: python
The highlighted lines need to be edited or added.
The ``NewPage`` class has an ``__acl__`` on it that returns a list of mappings
from :term:`principal` to :term:`permission`. This defines *who* can do *what*
with that :term:`resource`. In our case we want to allow only those users with
the principals of either ``role:editor`` or ``role:basic`` to have the
``create`` permission:
.. literalinclude:: src/authorization/tutorial/routes.py
:lines: 31-39
:lineno-match:
:emphasize-lines: 5-9
:language: python
The ``NewPage`` is loaded as the :term:`context` of the ``add_page`` route by
declaring a ``factory`` on the route:
.. literalinclude:: src/authorization/tutorial/routes.py
:lines: 19-20
:lineno-match:
:emphasize-lines: 1-2
:language: python
The ``PageResource`` class defines the :term:`ACL` for a ``Page``. It uses an
actual ``Page`` object to determine *who* can do *what* to the page.
.. literalinclude:: src/authorization/tutorial/routes.py
:lines: 48-
:lineno-match:
:emphasize-lines: 5-10
:language: python
The ``PageResource`` is loaded as the :term:`context` of the ``view_page`` and
``edit_page`` routes by declaring a ``factory`` on the routes:
.. literalinclude:: src/authorization/tutorial/routes.py
:lines: 18-22
:lineno-match:
:emphasize-lines: 1,4-5
:language: python
Add view permissions
--------------------
At this point we've modified our application to load the ``PageResource``,
including the actual ``Page`` model in the ``page_factory``. The
``PageResource`` is now the :term:`context` for all ``view_page`` and
``edit_page`` views. Similarly the ``NewPage`` will be the context for the
``add_page`` view.
Open the file ``tutorial/views/default.py``.
First, you can drop a few imports that are no longer necessary:
.. literalinclude:: src/authorization/tutorial/views/default.py
:lines: 3-5
:lineno-match:
:emphasize-lines: 1
:language: python
Edit the ``view_page`` view to declare the ``view`` permission, and remove the
explicit checks within the view:
.. literalinclude:: src/authorization/tutorial/views/default.py
:lines: 18-23
:lineno-match:
:emphasize-lines: 1-2,4
:language: python
The work of loading the page has already been done in the factory, so we can
just pull the ``page`` object out of the ``PageResource``, loaded as
``request.context``. Our factory also guarantees we will have a ``Page``, as it
raises the ``HTTPNotFound`` exception if no ``Page`` exists, again simplifying
the view logic.
Edit the ``edit_page`` view to declare the ``edit`` permission:
.. literalinclude:: src/authorization/tutorial/views/default.py
:lines: 38-42
:lineno-match:
:emphasize-lines: 1-2,4
:language: python
Edit the ``add_page`` view to declare the ``create`` permission:
.. literalinclude:: src/authorization/tutorial/views/default.py
:lines: 52-56
:lineno-match:
:emphasize-lines: 1-2,4
:language: python
Note the ``pagename`` here is pulled off of the context instead of
``request.matchdict``. The factory has done a lot of work for us to hide the
actual route pattern.
The ACLs defined on each :term:`resource` are used by the :term:`security
policy` to determine if any :term:`principal` is allowed to have some
:term:`permission`. If this check fails (for example, the user is not logged
in) then an ``HTTPForbidden`` exception will be raised automatically. Thus
we're able to drop those exceptions and checks from the views themselves.
Rather we've defined them in terms of operations on a resource.
The final ``tutorial/views/default.py`` should look like the following:
.. literalinclude:: src/authorization/tutorial/views/default.py
:linenos:
:language: python
Viewing the application in a browser
------------------------------------
We can finally examine our application in a browser (See
:ref:`wiki2-start-the-application`). Launch a browser and visit each of the
following URLs, checking that the result is as expected:
- http://localhost:6543/ invokes the ``view_wiki`` view. This always
redirects to the ``view_page`` view of the ``FrontPage`` page object. It
is executable by any user.
- http://localhost:6543/login invokes the ``login`` view, and a login form will be displayed.
On every page, there is a "Login" link in the upper right corner while the user is not authenticated, else it is a "Logout" link when the user is authenticated.
Supplying the credentials with either the username ``editor`` and password ``editor``, or username
``basic`` and password ``basic``, will authenticate the user and grant access for that group.
After logging in (as a result of hitting an edit or add page and submitting valid credentials), we will see a "Logout" link in the upper right hand corner.
When we click it, we are logged out, redirected back to the front page, and a "Login" link is shown in the upper right hand corner.
- http://localhost:6543/FrontPage invokes the ``view_page`` view of the ``FrontPage`` page object.
- http://localhost:6543/FrontPage/edit_page invokes the ``edit_page`` view for
the ``FrontPage`` page object. It is executable by only the ``editor`` user.
If a different user invokes it, then the "403 Forbidden" page will be displayed.
If an anonymous user invokes it, then a login form will be displayed.
- http://localhost:6543/add_page/SomePageName invokes the ``add_page`` view for a page.
If the page already exists, then it redirects the user to the ``edit_page`` view for the page object.
It is executable by either the ``editor`` or ``basic`` user.
If an anonymous user invokes it, then a login form will be displayed.
- http://localhost:6543/SomePageName/edit_page invokes the ``edit_page`` view
for an existing page, or generates an error if the page does not exist. It is
editable by the ``basic`` user if the page was created by that user in the
previous step. If instead the page was created by the ``editor`` user, then
the login page should be shown for the ``basic`` user.
|