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 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
|
<?xml version="1.0" encoding="UTF-8"?>
<!-- Reviewed: no -->
<sect1 id="zend.acl.introduction">
<title>Introduction</title>
<para>
<classname>Zend_Acl</classname> provides a lightweight and flexible access control list
(<acronym>ACL</acronym>) implementation for privileges management. In general, an
application may utilize such <acronym>ACL</acronym>'s to control access to certain
protected objects by other requesting objects.
</para>
<para>
For the purposes of this documentation:
</para>
<itemizedlist>
<listitem>
<para>
a <emphasis>resource</emphasis> is an object
to which access is controlled.
</para>
</listitem>
<listitem>
<para>
a <emphasis>role</emphasis> is an object
that may request access to a Resource.
</para>
</listitem>
</itemizedlist>
<para>
Put simply, <emphasis>roles request access to resources</emphasis>. For
example, if a parking attendant requests access to a car, then the parking attendant is the
requesting role, and the car is the resource, since access to the car may not be granted to
everyone.
</para>
<para>
Through the specification and use of an <acronym>ACL</acronym>, an application may control
how roles are granted access to resources.
</para>
<sect2 id="zend.acl.introduction.resources">
<title>Resources</title>
<para>
Creating a resource in <classname>Zend_Acl</classname> is very simple.
<classname>Zend_Acl</classname> provides the resource,
<classname>Zend_Acl_Resource_Interface</classname>, to facilitate creating resources in
an application. A class need only implement this interface, which consists of a single
method, <methodname>getResourceId()</methodname>, for <classname>Zend_Acl</classname> to
recognize the object as a resource. Additionally,
<classname>Zend_Acl_Resource</classname> is provided by <classname>Zend_Acl</classname>
as a basic resource implementation for developers to extend as needed.
</para>
<para>
<classname>Zend_Acl</classname> provides a tree structure to which multiple resources
can be added. Since resources are stored in such a tree structure, they can be
organized from the general (toward the tree root) to the specific (toward the tree
leaves). Queries on a specific resource will automatically search the resource's
hierarchy for rules assigned to ancestor resources, allowing for simple inheritance of
rules. For example, if a default rule is to be applied to each building in a city, one
would simply assign the rule to the city, instead of assigning the same rule to each
building. Some buildings may require exceptions to such a rule, however, and this can
be achieved in <classname>Zend_Acl</classname> by assigning such exception rules to
each building that requires such an exception. A resource may inherit from only one
parent resource, though this parent resource can have its own parent resource, etc.
</para>
<para>
<classname>Zend_Acl</classname> also supports privileges on resources (e.g., "create",
"read", "update", "delete"), so the developer can assign rules that affect all
privileges or specific privileges on one or more resources.
</para>
</sect2>
<sect2 id="zend.acl.introduction.roles">
<title>Roles</title>
<para>
As with resources, creating a role is also very simple. All roles must implement
<classname>Zend_Acl_Role_Interface</classname>. This interface consists of a single
method, <methodname>getRoleId()</methodname>, Additionally,
<classname>Zend_Acl_Role</classname> is provided by <classname>Zend_Acl</classname> as
a basic role implementation for developers to extend as needed.
</para>
<para>
In <classname>Zend_Acl</classname>, a role may inherit from one or more roles. This is
to support inheritance of rules among roles. For example, a user role, such as "sally",
may belong to one or more parent roles, such as "editor" and "administrator". The
developer can assign rules to "editor" and "administrator" separately, and "sally"
would inherit such rules from both, without having to assign rules directly to "sally".
</para>
<para>
Though the ability to inherit from multiple roles is very useful, multiple inheritance
also introduces some degree of complexity. The following example illustrates the
ambiguity condition and how <classname>Zend_Acl</classname> solves it.
</para>
<example id="zend.acl.introduction.roles.example.multiple_inheritance">
<title>Multiple Inheritance among Roles</title>
<para>
The following code defines three base roles - "guest",
"member", and "admin" - from which other roles may
inherit. Then, a role identified by "someUser" is established and
inherits from the three other roles. The order in which these roles appear in the
<varname>$parents</varname> array is important. When necessary,
<classname>Zend_Acl</classname> searches for access rules defined not only for the
queried role (herein, "someUser"), but also upon the roles from which
the queried role inherits (herein, "guest", "member", and
"admin"):
</para>
<programlisting language="php"><![CDATA[
$acl = new Zend_Acl();
$acl->addRole(new Zend_Acl_Role('guest'))
->addRole(new Zend_Acl_Role('member'))
->addRole(new Zend_Acl_Role('admin'));
$parents = array('guest', 'member', 'admin');
$acl->addRole(new Zend_Acl_Role('someUser'), $parents);
$acl->add(new Zend_Acl_Resource('someResource'));
$acl->deny('guest', 'someResource');
$acl->allow('member', 'someResource');
echo $acl->isAllowed('someUser', 'someResource') ? 'allowed' : 'denied';
]]></programlisting>
<para>
Since there is no rule specifically defined for the "someUser" role and
"someResource", <classname>Zend_Acl</classname> must search for rules that may be
defined for roles that "someUser" inherits. First, the "admin" role is visited, and
there is no access rule defined for it. Next, the "member" role is visited, and
<classname>Zend_Acl</classname> finds that there is a rule specifying that "member"
is allowed access to "someResource".
</para>
<para>
If <classname>Zend_Acl</classname> were to continue examining the rules defined for
other parent roles, however, it would find that "guest" is denied access to
"someResource". This fact introduces an ambiguity because now
"someUser" is both denied and allowed access to "someResource", by reason of having
inherited conflicting rules from different parent roles.
</para>
<para>
<classname>Zend_Acl</classname> resolves this ambiguity by completing a query when
it finds the first rule that is directly applicable to the query. In this case,
since the "member" role is examined before the "guest" role, the example code would
print "allowed".
</para>
</example>
<note>
<para>
When specifying multiple parents for a role, keep in mind that the last parent
listed is the first one searched for rules applicable to an authorization query.
</para>
</note>
</sect2>
<sect2 id="zend.acl.introduction.creating">
<title>Creating the Access Control List</title>
<para>
An Access Control List (<acronym>ACL</acronym>) can represent any set of physical or
virtual objects that you wish. For the purposes of demonstration, however, we will
create a basic Content Management System (<acronym>CMS</acronym>)
<acronym>ACL</acronym> that maintains several tiers of groups over a wide variety of
areas. To create a new <acronym>ACL</acronym> object, we instantiate the
<acronym>ACL</acronym> with no parameters:
</para>
<programlisting language="php"><![CDATA[
$acl = new Zend_Acl();
]]></programlisting>
<note>
<para>
Until a developer specifies an "allow" rule, <classname>Zend_Acl</classname> denies
access to every privilege upon every resource by every role.
</para>
</note>
</sect2>
<sect2 id="zend.acl.introduction.role_registry">
<title>Registering Roles</title>
<para>
<acronym>CMS</acronym>'s will nearly always require a hierarchy of permissions to
determine the authoring capabilities of its users. There may be a 'Guest' group to
allow limited access for demonstrations, a 'Staff' group for the majority of
<acronym>CMS</acronym> users who perform most of the day-to-day operations, an 'Editor'
group for those responsible for publishing, reviewing, archiving and deleting content,
and finally an 'Administrator' group whose tasks may include all of those of the other
groups as well as maintenance of sensitive information, user management, back-end
configuration data, backup and export. This set of permissions can be represented in a
role registry, allowing each group to inherit privileges from 'parent' groups, as well
as providing distinct privileges for their unique group only. The permissions may be
expressed as follows:
</para>
<table id="zend.acl.introduction.role_registry.table.example_cms_access_controls">
<title>Access Controls for an Example CMS</title>
<tgroup cols="3">
<thead>
<row>
<entry>Name</entry>
<entry>Unique Permissions</entry>
<entry>Inherit Permissions From</entry>
</row>
</thead>
<tbody>
<row>
<entry>Guest</entry>
<entry>View</entry>
<entry>N/A</entry>
</row>
<row>
<entry>Staff</entry>
<entry>Edit, Submit, Revise</entry>
<entry>Guest</entry>
</row>
<row>
<entry>Editor</entry>
<entry>Publish, Archive, Delete</entry>
<entry>Staff</entry>
</row>
<row>
<entry>Administrator</entry>
<entry>(Granted all access)</entry>
<entry>N/A</entry>
</row>
</tbody>
</tgroup>
</table>
<para>
For this example, <classname>Zend_Acl_Role</classname> is used, but any object that
implements <classname>Zend_Acl_Role_Interface</classname> is acceptable. These groups
can be added to the role registry as follows:
</para>
<programlisting language="php"><![CDATA[
$acl = new Zend_Acl();
// Add groups to the Role registry using Zend_Acl_Role
// Guest does not inherit access controls
$roleGuest = new Zend_Acl_Role('guest');
$acl->addRole($roleGuest);
// Staff inherits from guest
$acl->addRole(new Zend_Acl_Role('staff'), $roleGuest);
/*
Alternatively, the above could be written:
$acl->addRole(new Zend_Acl_Role('staff'), 'guest');
*/
// Editor inherits from staff
$acl->addRole(new Zend_Acl_Role('editor'), 'staff');
// Administrator does not inherit access controls
$acl->addRole(new Zend_Acl_Role('administrator'));
]]></programlisting>
</sect2>
<sect2 id="zend.acl.introduction.defining">
<title>Defining Access Controls</title>
<para>
Now that the <acronym>ACL</acronym> contains the relevant roles, rules can be
established that define how resources may be accessed by roles. You may have noticed
that we have not defined any particular resources for this example, which is simplified
to illustrate that the rules apply to all resources. <classname>Zend_Acl</classname>
provides an implementation whereby rules need only be assigned from general to
specific, minimizing the number of rules needed, because resources and roles inherit
rules that are defined upon their ancestors.
</para>
<note>
<para>
In general, <classname>Zend_Acl</classname> obeys a given rule if and only if a
more specific rule does not apply.
</para>
</note>
<para>
Consequently, we can define a reasonably complex set of rules with a minimum amount of
code. To apply the base permissions as defined above:
</para>
<programlisting language="php"><![CDATA[
$acl = new Zend_Acl();
$roleGuest = new Zend_Acl_Role('guest');
$acl->addRole($roleGuest);
$acl->addRole(new Zend_Acl_Role('staff'), $roleGuest);
$acl->addRole(new Zend_Acl_Role('editor'), 'staff');
$acl->addRole(new Zend_Acl_Role('administrator'));
// Guest may only view content
$acl->allow($roleGuest, null, 'view');
/*
Alternatively, the above could be written:
$acl->allow('guest', null, 'view');
//*/
// Staff inherits view privilege from guest, but also needs additional
// privileges
$acl->allow('staff', null, array('edit', 'submit', 'revise'));
// Editor inherits view, edit, submit, and revise privileges from
// staff, but also needs additional privileges
$acl->allow('editor', null, array('publish', 'archive', 'delete'));
// Administrator inherits nothing, but is allowed all privileges
$acl->allow('administrator');
]]></programlisting>
<para>
The <constant>NULL</constant> values in the above <methodname>allow()</methodname> calls
are used to indicate that the allow rules apply to all resources.
</para>
</sect2>
<sect2 id="zend.acl.introduction.querying">
<title>Querying an ACL</title>
<para>
We now have a flexible <acronym>ACL</acronym> that can be used to determine whether
requesters have permission to perform functions throughout the web application.
Performing queries is quite simple using the <methodname>isAllowed()</methodname>
method:
</para>
<programlisting language="php"><![CDATA[
echo $acl->isAllowed('guest', null, 'view') ?
"allowed" : "denied";
// allowed
echo $acl->isAllowed('staff', null, 'publish') ?
"allowed" : "denied";
// denied
echo $acl->isAllowed('staff', null, 'revise') ?
"allowed" : "denied";
// allowed
echo $acl->isAllowed('editor', null, 'view') ?
"allowed" : "denied";
// allowed because of inheritance from guest
echo $acl->isAllowed('editor', null, 'update') ?
"allowed" : "denied";
// denied because no allow rule for 'update'
echo $acl->isAllowed('administrator', null, 'view') ?
"allowed" : "denied";
// allowed because administrator is allowed all privileges
echo $acl->isAllowed('administrator') ?
"allowed" : "denied";
// allowed because administrator is allowed all privileges
echo $acl->isAllowed('administrator', null, 'update') ?
"allowed" : "denied";
// allowed because administrator is allowed all privileges
]]></programlisting>
</sect2>
</sect1>
<!--
vim:se ts=4 sw=4 et:
-->
|