Entity based ACL
Introduction
One of the core concepts of the B2B Suite is that all entities can be restricted through ACL settings. Therefore, the package contains a component named ACL which provides a common base implementation for access restriction.
To guarantee a high level of flexibility, the ACL component has no dependencies on other parts of the framework. At its core, ACL is an implementation of an M:N relation management in the database. They provide the means of creating the tables, storing and removing the relation, and reading the information. This is implemented in a way that multiple relations (e.g., user and role) can be resolved to a single true
/false
result or joined in a query.
Architecture
In order to understand the design decisions of the ACL component, we first take a look at the different requirements imposed on ACL. As you can see in the graphic below, access control is basically a concern of every technical layer of the application.
The base ACL component described in this document provides functionality for repository filtering and service checks. The Authentication component provides the context for the currently logged-in user and the ACL route component then provides the ability to secure routes and means of inspection for allowed routes.
Naming
Name | Description |
---|---|
Context | The user or role |
Subject | The entity that is allowed/denied |
Data structure
The ACL is represented as M:N relation tables in the database and always looks like this:
CREATE TABLE `b2b_acl_*` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`entity_id` INT(11) NOT NULL,
`referenced_entity_id` INT(11) NOT NULL,
`grantable` TINYINT(4) NOT NULL DEFAULT '0',
[...]
);
Case | Description |
---|---|
No record exists | The referenced entity is not accessible for the given context |
A record exists | The referenced entity is accessible for the given context |
Grantable is 1 | The context may grant access to the referenced entity for other contexts |
Address ACL example
For example, let's look at the schema part responsible for storing the address access rights.
As you can see, the addresses (subject) can be allowed in two distinct contexts, either through a role or through a contact. In between these entities are two ACL tables holding the M:N relations. On the left, you see the ContactRole table. This table holds the information of which contact is assigned to what roles.
This allows for a single query to select all allowed addresses of a particular user combined from the role and direct assignments.
Usage
For this part, we stay at the address example. Since the ACL is directly implemented through the storage layer, there is no service but just a repository for access and data manipulation. So we need an instance of Shopware\B2B\Acl\Framework\AclRepository
. The address ACL repository can be retrieved through the DIC by the b2b_address.acl_repository
key.
The repository then provides the following methods. If you are already familiar with other ACL implementations, most methods will look quite familiar.
<?php declare(strict_types=1);
namespace Shopware\B2B\Acl\Framework;
use Shopware\B2B\Acl\Framework\AclQuery;
use Shopware\B2B\Acl\Framework\AclUnsupportedContextException;
use Shopware\B2B\Common\IdValue;
class AclRepository
{
/**
* @throws AclUnsupportedContextException
*/
public function allow($context, IdValue $subjectId, bool $grantable = false): void
{
[...]
}
/**
* @throws AclUnsupportedContextException
*/
public function allowAll($context, array $subjectIds, bool $grantable = false): void
{
[...]
}
/**
* @throws AclUnsupportedContextException
*/
public function deny($context, IdValue $subjectId): void
{
[...]
}
/**
* @throws AclUnsupportedContextException
*/
public function denyAll($context, array $subjectIds): void
{
[...]
}
/**
* @throws AclUnsupportedContextException
*/
public function isAllowed($context, IdValue $subjectId): bool
{
[...]
}
/**
* @throws AclUnsupportedContextException
*/
public function isGrantable($context, IdValue $subjectId): bool
{
[...]
}
/**
* @throws AclUnsupportedContextException
* @return IdValue[]
*/
public function getAllAllowedIds($context): array
{
[...]
}
/**
* @throws AclUnsupportedContextException
*/
public function fetchAllGrantableIds($context): array
{
[...]
}
/**
* @throws AclUnsupportedContextException
*/
public function fetchAllDirectlyIds($context): array
{
[...]
}
/**
* @throws AclUnsupportedContextException
*/
public function getUnionizedSqlQuery($context): AclQuery
{
[...]
}
}
Important commonalities are:
All methods act on a context. This context must be one of the following types:
Shopware\B2B\Contact\Framework\ContactEntity
Shopware\B2B\StoreFrontAuthentication\Framework\Identity
Shopware\B2B\StoreFrontAuthentication\Framework\OwnershipContext
Shopware\B2B\Role\Framework\RoleEntity
Shopware\B2B\Role\Framework\RoleAclGrantContext
Shopware\B2B\Contact\Framework\ContactAclGrantContext
The AclGrantContext and its accompanied AclContextProvider allow a component to use and select arbitrary ACL targets without depending on the explicit implementation.
Depending on the provided context, the methods decide whether they utilize both tables or just one.
- Reading usually utilizes both.
- Writing utilizes only the directly related table.
If the provided context is not supported, a Shopware\B2B\Acl\Framework\AclUnsupportedContextException
is thrown.
Debtors, for example, are unknown to the ACL, so all debtor identities will trigger the exception.
Modifying entity access
A standard use case is to allow records to a user, this simple code snippet can do this:
$aclAddressRepository = $this->container->get('b2b_address.acl_repository');
$contactRepository = $this->container->get('b2b_contact.repository');
$contact = $contactRepository->fetchOneById(1);
$aclAddressRepository->allow(
$contact, // the contact
22, // the id of the address
true // whether the contact may grant access to other contacts
);
We can then deny the access just by this:
$aclAdressRepository->deny(
$contact, // the contact
22, // the id of the address
);
or just set it not grantable, by
$aclAdressRepository->allow(
$contact, // the contact
22, // the id of the address
false // whether the contact may grant access to other contacts
);
Reading entity access
If you want to know whether a certain contact can access an entity, you can call isAllowed
.
$aclAdressRepository->isAllowed(
$contact, // the contact
22, // the id of the address
);
Or you just want to check whether an entity can be granted by a contact.
$aclAdressRepository->isGrantable(
$contact, // the contact
22, // the id of the address
);
One of the more complex problems you might face is that you want to filter a query by ACL assignments (frontend listing).
This can be achieved by this snippet:
<?php declare(strict_types=1);
namespace My\Namespace;
use Doctrine\DBAL\Query\QueryBuilder;
use Shopware\B2B\Acl\Framework\AclUnsupportedContextException;
use Shopware\B2B\StoreFrontAuthentication\Framework\OwnershipContext;
protected function applyAcl(OwnershipContext $context, QueryBuilder $query): void
{
try {
$aclQuery = $this->aclRepository->getUnionizedSqlQuery($context);
$query->innerJoin(
self::TABLE_ALIAS,
'(' . $aclQuery->sql . ')',
'acl_query',
self::TABLE_ALIAS . '.id = acl_query.referenced_entity_id'
);
foreach ($aclQuery->params as $name => $value) {
$query->setParameter($name, $value);
}
} catch (AclUnsupportedContextException $e) {
// nth
}
}
The getUnionizedSqlQuery
method returns a Shopware\B2B\Acl\Framework\AclQuery
instance that can then be used as a join in the DBAL QueryBuilder
. If you want to inspect the query yourself, be warned that it might look strange due to some performance tuning for MySQL.
Extending the ACL
Add a new Subject
The most common use case will be that you want to extend the ACL to span around your own entity. How this is done can be observed in many places throughout the B2B Suite. So let's take a look at the addresses again.
You first need to define the relations from role and contact to your entity. This is achieved by creating small classes that contain particular information:
<?php declare(strict_types=1);
namespace Shopware\B2B\Address\Framework;
use Shopware\B2B\Acl\Framework\AclTable;
use Shopware\B2B\Contact\Framework\AclTableContactContextResolver;
class AddressContactAclTable extends AclTable
{
public function __construct()
{
parent::__construct(
'contact_address', // name suffix
'b2b_debtor_contact', // context table
'id', // context primary key
's_user_addresses', // subject table name
'id' // subject primary key
);
}
protected function getContextResolvers(): array
{
return [
new AclTableContactContextResolver(),
];
}
}
This is the implementation utilized to set up the contact<->address
relation. In __construct
, we set up the table and relation properties. The getContextResolver
method returns a utility class responsible for extracting the id
from different context objects. See further down below for additional information on this interface.
An identical class exists for the role<->address
relation.
Now we need to tell the B2B Suite to create the necessary tables. In Shopware, this must be done during the plugin installation process. Because the container is not yet set up with the B2B Suite services, we use a static factory method in the following code:
use Shopware\B2B\Acl\Framework\AclDdlService;
use Shopware\B2B\Address\Framework\AddressContactTable;
AclDdlService::create()->createTable(new AddressContactTable());
Now the table exists, but we must still make the table definition accessible through the DIC, so the ACL component can set up appropriate repositories. This is achieved through a tag in the service definition:
<service id="b2b_address.contact_acl_table" class="Shopware\B2B\Address\Framework\AddressContactAclTable">
<tag name="b2b_acl.table"/>
</service>
Finally, we need to register the service in the DIC. This is done by this XML snippet:
<service id="b2b_address.acl_repository" class="Shopware\B2B\Acl\Framework\AclRepository">
<factory service="b2b_acl.repository_factory" method="createRepository"/>
<argument type="string">s_user_addresses</argument>
</service>
There we are; the addresses are ACL-ified entities.
Add a new context
Since the ACL is so loosely coupled with the B2B Suite, it is possible to create your own complete subset of restrictions based on other contexts than contact and role. For this, you have to create a different Shopware\B2B\Acl\Framework\AclContextResolver
. An AclContextResolver
is responsible for extracting the primary key out of a given context object and produces a query that joins the main ACL table. This is done by implementing getQuery
, isMainContext
, and extractId
.
<?php declare(strict_types=1);
namespace My\Namespace;
use Doctrine\DBAL\Query\QueryBuilder;
use Shopware\B2B\Acl\Framework\AclContextResolver;
use Shopware\B2B\Acl\Framework\AclQuery;
class MyContextResolver extends AclContextResolver
{
public function getQuery(string $aclTableName, int $contextId, QueryBuilder $queryContext): AclQuery
{
// your implementation here
}
public function extractId($context): int
{
// your implementation here
}
public function isMainContext(): bool
{
// your implementation here
}
}
A rather generic implementation for getQuery
that just filters for a given contextId
look like this:
public function getQuery(string $aclTableName, int $contextId, QueryBuilder $queryBuilder): AclQuery
{
$mainPrefix = $this->getNextPrefix();
$queryBuilder
->select($mainPrefix . '.*')
->from($aclTableName, $mainPrefix)
->where($mainPrefix . '.entity_id = :p_' . $mainPrefix)
->setParameter('p_' . $mainPrefix, $contextId);
return (new AclQuery())->fromQueryBuilder($queryBuilder);
}
Notice the getMainPrefix
call. This allows the ACL component to be joined without conflicting SQL aliases.
An implementation of extract id usually looks like this:
public function extractId($context): int
{
if ($context instanceof ContactIdentity) {
return $context->getId();
}
if ($context instanceof OwnershipContext && is_a($context->identityClassName, ContactIdentity::class, true)) {
return $context->identityId;
}
if ($context instanceof ContactEntity && $context->id) {
return $context->id;
}
throw new AclUnsupportedContextException();
}
Make sure to throw a UnsupportedContextException
if no ID can be produced.
The isMainContext
method finally just returns true or false. Since it is possible to have more than one ContextResolver that can extract a valid ID, one context resolver must be responsible for the writes, and this is the flag that notifies the AclRepository
.
Security
The nature of this implementation is that you, as a developer, have the greatest degree of freedom in using the ACL. This, of course, means that you are responsible for securing the workflow yourself.
The ACL component is just a collection of commonly used functions, not an automatically wired security layer. The core suite secures the workflows through its test suite; we appreciate and look forward to your contributions 😃