2019-09-13 19:38:22 +02:00
|
|
|
<?php
|
2020-02-22 18:14:36 +01:00
|
|
|
/**
|
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 - 2020 Jan Böhmer (https://github.com/jbtronics)
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published
|
|
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-01-05 15:46:58 +01:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2019-09-13 19:38:22 +02:00
|
|
|
/**
|
2019-11-09 00:47:20 +01:00
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
2019-09-13 19:38:22 +02:00
|
|
|
*
|
2019-11-01 13:40:30 +01:00
|
|
|
* Copyright (C) 2019 Jan Böhmer (https://github.com/jbtronics)
|
2019-09-13 19:38:22 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Form\Permissions;
|
|
|
|
|
|
|
|
use App\Services\PermissionResolver;
|
2020-01-05 22:49:00 +01:00
|
|
|
use RuntimeException;
|
2019-09-13 19:38:22 +02:00
|
|
|
use Symfony\Component\Form\DataMapperInterface;
|
|
|
|
use Symfony\Component\Form\FormInterface;
|
2020-01-05 22:49:00 +01:00
|
|
|
use Traversable;
|
2019-09-13 19:38:22 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This class is a data mapper that maps the permission data from DB (accessed via a PermissionResolver),
|
|
|
|
* to TristateCheckboxes and vice versa.
|
|
|
|
*/
|
2020-01-05 22:49:00 +01:00
|
|
|
final class PermissionsMapper implements DataMapperInterface
|
2019-09-13 19:38:22 +02:00
|
|
|
{
|
2020-02-01 16:17:20 +01:00
|
|
|
private $resolver;
|
|
|
|
private $inherit;
|
2019-09-13 19:38:22 +02:00
|
|
|
|
|
|
|
public function __construct(PermissionResolver $resolver, bool $inherit = false)
|
|
|
|
{
|
|
|
|
$this->inherit = $inherit;
|
|
|
|
$this->resolver = $resolver;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps the view data of a compound form to its children.
|
|
|
|
*
|
|
|
|
* The method is responsible for calling {@link FormInterface::setData()}
|
|
|
|
* on the children of compound forms, defining their underlying model data.
|
|
|
|
*
|
2020-01-05 22:49:00 +01:00
|
|
|
* @param mixed $viewData View data of the compound form being initialized
|
|
|
|
* @param FormInterface[]|Traversable $forms A list of {@link FormInterface} instances
|
2019-09-13 19:38:22 +02:00
|
|
|
*/
|
2022-08-14 19:09:07 +02:00
|
|
|
public function mapDataToForms($viewData, $forms): void
|
2019-09-13 19:38:22 +02:00
|
|
|
{
|
|
|
|
foreach ($forms as $form) {
|
|
|
|
if ($this->inherit) {
|
|
|
|
$value = $this->resolver->inherit(
|
|
|
|
$viewData,
|
|
|
|
$form->getParent()->getConfig()->getOption('perm_name'),
|
|
|
|
$form->getName()
|
|
|
|
) ?? false;
|
|
|
|
} else {
|
|
|
|
$value = $this->resolver->dontInherit(
|
|
|
|
$viewData,
|
|
|
|
$form->getParent()->getConfig()->getOption('perm_name'),
|
|
|
|
$form->getName()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$form->setData($value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps the model data of a list of children forms into the view data of their parent.
|
|
|
|
*
|
|
|
|
* This is the internal cascade call of FormInterface::submit for compound forms, since they
|
|
|
|
* cannot be bound to any input nor the request as scalar, but their children may:
|
|
|
|
*
|
|
|
|
* $compoundForm->submit($arrayOfChildrenViewData)
|
|
|
|
* // inside:
|
|
|
|
* $childForm->submit($childViewData);
|
|
|
|
* // for each entry, do the same and/or reverse transform
|
|
|
|
* $this->dataMapper->mapFormsToData($compoundForm, $compoundInitialViewData)
|
|
|
|
* // then reverse transform
|
|
|
|
*
|
|
|
|
* When a simple form is submitted the following is happening:
|
|
|
|
*
|
|
|
|
* $simpleForm->submit($submittedViewData)
|
|
|
|
* // inside:
|
|
|
|
* $this->viewData = $submittedViewData
|
|
|
|
* // then reverse transform
|
|
|
|
*
|
|
|
|
* The model data can be an array or an object, so this second argument is always passed
|
|
|
|
* by reference.
|
|
|
|
*
|
2020-01-05 22:49:00 +01:00
|
|
|
* @param FormInterface[]|Traversable $forms A list of {@link FormInterface} instances
|
|
|
|
* @param mixed $viewData The compound form's view data that get mapped
|
|
|
|
* its children model data
|
2019-09-13 19:38:22 +02:00
|
|
|
*/
|
2020-08-21 22:44:38 +02:00
|
|
|
public function mapFormsToData($forms, &$viewData): void
|
2019-09-13 19:38:22 +02:00
|
|
|
{
|
|
|
|
if ($this->inherit) {
|
2020-01-05 22:49:00 +01:00
|
|
|
throw new RuntimeException('The permission type is readonly when it is showing read only data!');
|
2019-09-13 19:38:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($forms as $form) {
|
|
|
|
$value = $form->getData();
|
|
|
|
$this->resolver->setPermission(
|
|
|
|
$viewData,
|
|
|
|
$form->getParent()->getConfig()->getOption('perm_name'),
|
|
|
|
$form->getName(),
|
|
|
|
$value
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-11-09 00:47:20 +01:00
|
|
|
}
|