mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
The previous name, WorkflowDocumentService, was misleading as its functionality extends to all stored objects and not limited to documents. Therefore, it was renamed to WorkflowStoredObjectPermissionHelper. Consequently, all references to this service were updated throughout the codebase.
55 lines
1.6 KiB
PHP
55 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* Chill is a software for social workers
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Chill\ActivityBundle\Security\Authorization;
|
|
|
|
use Chill\ActivityBundle\Entity\Activity;
|
|
use Chill\ActivityBundle\Repository\ActivityRepository;
|
|
use Chill\DocStoreBundle\Repository\AssociatedEntityToStoredObjectInterface;
|
|
use Chill\DocStoreBundle\Security\Authorization\StoredObjectRoleEnum;
|
|
use Chill\DocStoreBundle\Security\Authorization\StoredObjectVoter\AbstractStoredObjectVoter;
|
|
use Chill\DocStoreBundle\Service\WorkflowStoredObjectPermissionHelper;
|
|
use Symfony\Component\Security\Core\Security;
|
|
|
|
class ActivityStoredObjectVoter extends AbstractStoredObjectVoter
|
|
{
|
|
public function __construct(
|
|
private readonly ActivityRepository $repository,
|
|
Security $security,
|
|
WorkflowStoredObjectPermissionHelper $workflowDocumentService
|
|
) {
|
|
parent::__construct($security, $workflowDocumentService);
|
|
}
|
|
|
|
protected function getRepository(): AssociatedEntityToStoredObjectInterface
|
|
{
|
|
return $this->repository;
|
|
}
|
|
|
|
protected function getClass(): string
|
|
{
|
|
return Activity::class;
|
|
}
|
|
|
|
protected function attributeToRole(StoredObjectRoleEnum $attribute): string
|
|
{
|
|
return match ($attribute) {
|
|
StoredObjectRoleEnum::EDIT => ActivityVoter::UPDATE,
|
|
StoredObjectRoleEnum::SEE => ActivityVoter::SEE_DETAILS,
|
|
};
|
|
}
|
|
|
|
protected function canBeAssociatedWithWorkflow(): bool
|
|
{
|
|
return false;
|
|
}
|
|
}
|