odiseoteam/sylius-rbac-plugin

Sylius roles and permissions management plugin

Installs: 71 819

Dependents: 0

Suggesters: 0

Security: 0

Stars: 22

Watchers: 2

Forks: 38

Open Issues: 1

Type:sylius-plugin


README

Sylius Rbac Plugin
68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6f646973656f7465616d2f73796c6975732d726261632d706c7567696e2e737667 68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6f646973656f7465616d2f73796c6975732d726261632d706c7567696e2e737667 68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6f646973656f7465616d2f53796c69757352626163506c7567696e2f6d61737465722e737667 68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6f646973656f7465616d2f53796c6975735262616372506c7567696e2e737667 68747470733a2f2f706f7365722e707567782e6f72672f6f646973656f7465616d2f73796c6975732d726261632d706c7567696e2f646f776e6c6f616473

badge-partner-by-sylius.png

Odiseo Sylius Rbac Plugin

Description

This plugin provides basic roles and permissions management functionality for Sylius application. It's highly inspired on the old RbacPlugin.

Beware!

Adding Write access to a permission automatically means adding Read access.

Write permission access means also updating and deleting.

Installation

  1. Require plugin with composer:

    composer require odiseoteam/sylius-rbac-plugin --no-scripts
  2. Add plugin class and ProophServiceBusBundle to your bundles.php.

    return [
       // ...
       Odiseo\SyliusRbacPlugin\OdiseoSyliusRbacPlugin::class => ['all' => true],
    ];
  3. Override AdminUser entity:

a) Use AdministrationRoleAwareTrait and implement AdministrationRoleAwareInterface in the AdminUser class of your Sylius-Standard based project:

use Doctrine\ORM\Mapping as ORM;
use Odiseo\SyliusRbacPlugin\Entity\AdministrationRoleAwareInterface;
use Odiseo\SyliusRbacPlugin\Entity\AdministrationRoleAwareTrait;
use Sylius\Component\Core\Model\AdminUser as BaseAdminUser;

/**
 * @ORM\Entity
 * @ORM\Table(name="sylius_admin_user")
 */
class AdminUser extends BaseAdminUser implements AdministrationRoleAwareInterface
{
    use AdministrationRoleAwareTrait;
}

b) And override the model's class in the chosen configuration file (e.g. config/_sylius.yaml):

sylius_user:
    resources:
        admin:
            user:
                classes:
                    model: App\Entity\AdminUser
  1. Import routing in config/routes/sylius_rbac.yaml:

    sylius_rbac:
        resource: "@OdiseoSyliusRbacPlugin/Resources/config/routing.yml"
  2. Import configuration in config/packages/sylius_rbac.yaml:

    imports:
        - { resource: "@OdiseoSyliusRbacPlugin/Resources/config/config.yml" }
  3. Copy plugin migrations to your migrations directory (e.g. src/Migrations) and apply them to your database:

    cp -R vendor/odiseoteam/sylius-rbac-plugin/migrations/* src/Migrations/
    bin/console doctrine:migrations:migrate
  4. Copy overwritten SyliusAdminBundle templates:

    mkdir -p templates/bundles/SyliusAdminBundle
    cp -R vendor/odiseoteam/sylius-rbac-plugin/src/Resources/views/SyliusAdminBundle/* templates/bundles/SyliusAdminBundle/
  5. Run installation command

    bin/console sylius-rbac:install-plugin

    Which consists of:

    • sylius:fixtures:load

      Loading fixture with a default "No sections access" role.

      The command runs in non-interactive mode so it will NOT purge your database. However, once you run it again it will throw an exception because of duplicate entry constraint violation.

      If you want to install RBAC plugin again on the same environment you will have to remove all roles manually via administration panel or run all commands except sylius:fixtures:load separately.

    • sylius-rbac:normalize-administrators

      Assigns role created in a previous step to all already existent administrators.

    • sylius-rbac:grant-access <roleName> <adminSections>

      Where adminSections can be a space-separated list of any of these:

      • catalogManagement
      • configuration
      • customerManagement
      • marketingManagement
      • salesManagement

      Beware!

      There are two ways of defining root administrator's email address:

      • Provide it as a parameter in your configuration file (you will not be asked to enter it again via CLI during plugin's installation)
      parameters:
          root_administrator_email: example@example.com
      • Provide it via CLI

      e.g. bin/console sylius-rbac:grant-access administrator configuration catalogManagement

      In order to permit access to admin panel sections, please provide administrator's email address: sylius@example.com

      By default, installation command creates Configurator role with access granted to all sections.

Beware!

You can also use bin/console sylius-rbac:grant-access-to-given-administrator <email> <roleName> <adminSections> command in order to provide an email address as an input parameter.

Beware!

AdminUser entity references AdministrationRoleInterface, which is an abstraction layer above the default AdministrationRole implementation. You can easily customize it by adding a following snippet in your *.yaml configuration file:

doctrine:
    orm:
        resolve_target_entities:
            Odiseo\SyliusRbacPlugin\Entity\AdministrationRoleInterface: FullyQualifiedClassName

Sections configuration

By default, RbacPlugin is provided with access configuration for basic Sylius sections (catalog, configuration, customers, marketing and sales) as well as for RBAC section, added by the plugin itself. Each section has a bunch of route prefixes associated with them, that describes which section gives permissions to which resources management.

However, usually, a Sylius application has a plenty of custom functions within existing or entirely new sections. This plugin allows you to extend its configuration, in order to restrict access to these custom routes.

For the matter of example let's assume we have a simple Supplier resource (containing only string $name property). It also has already generated routes, that we would like to restrict access to:

  • app_admin_supplier_index
  • app_admin_supplier_create
  • app_admin_supplier_update
  • app_admin_supplier_bulk_delete
  • app_admin_supplier_delete

If you don't know how to create and configure custom resource in Sylius application, check out relevant documentation chapter.

Extending basic Sylius section with new route prefixes

The only thing required to restrict Supplier-related routes with, for example, "Customer management" permission, is adding appropriate route prefix to customers section configuration:

odiseo_sylius_rbac:
    sylius_sections:
        customers:
            - app_admin_supplier

You would probably also want to add extend "Customers" section in Admin main menu (take a look at this docs chapter for more information).

Customers sections customized

As a result, each Administrator allowed to manage customers in the Admin panel would also be able to manage Suppliers. You may also notice, nothing has changed in permissions configuration form, as no new section has been added to the RBAC configuration.

Permissions configuration - no changes

Adding a custom section to the application

What if you want to differentiate your new resources management permission? The other possibility is to define your own, custom section in a plugin configuration:

odiseo_sylius_rbac:
    custom_sections:
        suppliers:
            - app_admin_supplier

Curiosity: RBAC is also defined as a custom section! You can easily check it out in a plugin source code.

With such a configuration, you should notice a new permission configuration available in the Administration Role form.

Permissions configuration - no changes

To display new permission name nicely, you should also configure a translation in your application's translation file:

sylius_rbac:
    ui:
        permission:
            suppliers: Suppliers

Beware!

You should take into account that by default the RBAC Plugin recognizes the admin-related routes using logic placed in the HardcodedRouteNameChecker class, which is the following:

    public function isAdminRoute(string $routeName): bool
    {
        return
            strpos($routeName, 'sylius_admin') !== false ||
            strpos($routeName, 'sylius_rbac_admin') !== false
        ;
    }

Let's assume that you added a new route to your application and you want it to be handled by the RBAC plugin. Once you did so, you should override the checker placed above and customize it in the following manner:

    public function isAdminRoute(string $routeName): bool
    {
        return
            strpos($routeName, 'sylius_admin') !== false ||
            strpos($routeName, 'sylius_rbac_admin') !== false ||
            strpos($routeName, 'your_custom_phrase' !== false
        ;
    }

Remember!

When configuring a custom section in Admin main menu, name it the same way you named it under custom_sections key in the plugin configuration. It will be automatically hidden and shown, exactly as basic Sylius sections!

$suppliersSubmenu = $menu->addChild('suppliers')->setLabel('Suppliers');

$suppliersSubmenu
    ->addChild('supplier', ['route' => 'app_admin_supplier_index'])
    ->setLabel('Manage Suppliers')
    ->setLabelAttribute('icon', 'address card outline')
;

Suppliers section

After these few simple steps, you can already give your custom permission to any already existent Administration role.

Security issues

If you think that you have found a security issue, please do not use the issue tracker and do not post it publicly. Instead, all security issues must be sent to security@sylius.com.

Credits

This plugin is maintained by Odiseo. Want us to help you with this plugin or any Sylius project? Contact us on team@odiseo.com.ar.