mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-26 00:24:59 +00:00
- Update unique constraint on `PersonIdentifier` to use `canonical` instead of `value`. - Refactor repository method `findByDefinitionAndValue` to `findByDefinitionAndCanonical`, updating logic accordingly. - Adjust validation logic in `UniqueIdentifierConstraintValidator` to align with the new canonical-based approach. - Modify related integration and unit tests to support the changes. - Inject `PersonIdentifierManagerInterface` into the repository to handle canonical value generation.
49 lines
1.5 KiB
PHP
49 lines
1.5 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\PersonBundle\PersonIdentifier\Identifier;
|
|
|
|
use Chill\PersonBundle\Entity\Identifier\PersonIdentifier;
|
|
use Chill\PersonBundle\Entity\Identifier\PersonIdentifierDefinition;
|
|
use Chill\PersonBundle\PersonIdentifier\PersonIdentifierEngineInterface;
|
|
use Symfony\Component\Form\Extension\Core\Type\TextType;
|
|
use Symfony\Component\Form\FormBuilderInterface;
|
|
|
|
final readonly class StringIdentifier implements PersonIdentifierEngineInterface
|
|
{
|
|
public const NAME = 'chill-person-bundle.string-identifier';
|
|
|
|
public static function getName(): string
|
|
{
|
|
return self::NAME;
|
|
}
|
|
|
|
public function canonicalizeValue(array $value, PersonIdentifierDefinition $definition): ?string
|
|
{
|
|
return trim($value['content'] ?? '');
|
|
}
|
|
|
|
public function buildForm(FormBuilderInterface $builder, PersonIdentifierDefinition $personIdentifierDefinition): void
|
|
{
|
|
$builder->add('content', TextType::class, ['label' => false]);
|
|
}
|
|
|
|
public function renderAsString(?PersonIdentifier $identifier, PersonIdentifierDefinition $definition): string
|
|
{
|
|
return trim($identifier?->getValue()['content'] ?? '');
|
|
}
|
|
|
|
public function isEmpty(PersonIdentifier $identifier): bool
|
|
{
|
|
return '' === trim($identifier->getValue()['content'] ?? '');
|
|
}
|
|
}
|