From dc172ae5611d926805516931245f74013ae31a1a Mon Sep 17 00:00:00 2001 From: florimondmanca Date: Thu, 19 Dec 2024 11:00:12 +0100 Subject: [PATCH] =?UTF-8?q?Enregistre=20la=20date=20de=20cr=C3=A9ation=20d?= =?UTF-8?q?e=20l'organisation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...nvertAccessRequestToUserCommandHandler.php | 4 ++- .../SaveOrganizationCommandHandler.php | 3 +++ src/Domain/User/Organization.php | 13 ++++++++++ .../Admin/OrganizationCrudController.php | 4 +++ .../Doctrine/Fixtures/OrganizationFixture.php | 3 +++ .../Mapping/User.Organization.orm.xml | 5 ++++ .../Migrations/Version20241219094151.php | 26 +++++++++++++++++++ ...tAccessRequestToUserCommandHandlerTest.php | 1 + .../SaveOrganizationCommandHandlerTest.php | 14 ++++++++++ tests/Unit/Domain/User/OrganizationTest.php | 4 +++ 10 files changed, 76 insertions(+), 1 deletion(-) create mode 100644 src/Infrastructure/Persistence/Doctrine/Migrations/Version20241219094151.php diff --git a/src/Application/User/Command/ConvertAccessRequestToUserCommandHandler.php b/src/Application/User/Command/ConvertAccessRequestToUserCommandHandler.php index 60b700c4c..429b71327 100644 --- a/src/Application/User/Command/ConvertAccessRequestToUserCommandHandler.php +++ b/src/Application/User/Command/ConvertAccessRequestToUserCommandHandler.php @@ -50,10 +50,12 @@ public function __invoke(ConvertAccessRequestToUserCommand $command): void $organization = $this->organizationRepository->findOneBySiret($accessRequest->getSiret()); $organizationRole = OrganizationRolesEnum::ROLE_ORGA_CONTRIBUTOR->value; // Default organization role + $now = $this->dateUtils->getNow(); if (!$organization) { $organizationRole = OrganizationRolesEnum::ROLE_ORGA_ADMIN->value; // The first user in an organization becomes an admin $organization = (new Organization($this->idFactory->make())) + ->setCreatedAt($now) ->setSiret($accessRequest->getSiret()) ->setName($accessRequest->getOrganization()); $this->organizationRepository->add($organization); @@ -64,7 +66,7 @@ public function __invoke(ConvertAccessRequestToUserCommand $command): void ->setPassword($accessRequest->getPassword()) ->setEmail($accessRequest->getEmail()) ->setRoles([UserRolesEnum::ROLE_USER->value]) - ->setRegistrationDate($this->dateUtils->getNow()); + ->setRegistrationDate($now); $organizationUser = (new OrganizationUser($this->idFactory->make())) ->setUser($user) diff --git a/src/Application/User/Command/SaveOrganizationCommandHandler.php b/src/Application/User/Command/SaveOrganizationCommandHandler.php index be440d9d6..6f9fc13a6 100644 --- a/src/Application/User/Command/SaveOrganizationCommandHandler.php +++ b/src/Application/User/Command/SaveOrganizationCommandHandler.php @@ -4,6 +4,7 @@ namespace App\Application\User\Command; +use App\Application\DateUtilsInterface; use App\Application\IdFactoryInterface; use App\Domain\User\Exception\SiretAlreadyExistException; use App\Domain\User\Organization; @@ -13,6 +14,7 @@ final class SaveOrganizationCommandHandler { public function __construct( private IdFactoryInterface $idFactory, + private DateUtilsInterface $dateUtils, private OrganizationRepositoryInterface $organizationRepository, ) { } @@ -21,6 +23,7 @@ public function __invoke(SaveOrganizationCommand $command): Organization { if (!$command->organization) { $organization = (new Organization($this->idFactory->make())) + ->setCreatedAt($this->dateUtils->getNow()) ->setSiret($command->siret) ->setName($command->name); diff --git a/src/Domain/User/Organization.php b/src/Domain/User/Organization.php index c254394fd..e95a7ec00 100644 --- a/src/Domain/User/Organization.php +++ b/src/Domain/User/Organization.php @@ -6,6 +6,7 @@ class Organization { + private \DateTimeInterface $createdAt; private string $name; private ?string $siret; private ?string $logo; @@ -20,6 +21,18 @@ public function getUuid(): string return $this->uuid; } + public function getCreatedAt(): \DateTimeInterface + { + return $this->createdAt; + } + + public function setCreatedAt(\DateTimeInterface $createdAt): self + { + $this->createdAt = $createdAt; + + return $this; + } + public function getName(): string { return $this->name; diff --git a/src/Infrastructure/Controller/Admin/OrganizationCrudController.php b/src/Infrastructure/Controller/Admin/OrganizationCrudController.php index aec010617..3bf532329 100644 --- a/src/Infrastructure/Controller/Admin/OrganizationCrudController.php +++ b/src/Infrastructure/Controller/Admin/OrganizationCrudController.php @@ -8,6 +8,7 @@ use App\Domain\User\Organization; use EasyCorp\Bundle\EasyAdminBundle\Config\Crud; use EasyCorp\Bundle\EasyAdminBundle\Controller\AbstractCrudController; +use EasyCorp\Bundle\EasyAdminBundle\Field\DateField; use EasyCorp\Bundle\EasyAdminBundle\Field\TextField; final class OrganizationCrudController extends AbstractCrudController @@ -29,6 +30,9 @@ public function configureFields(string $pageName): iterable { return [ TextField::new('name')->setLabel('Nom de l\'organisation'), + DateField::new('createdAt') + ->setLabel('Date de création') + ->setDisabled($pageName === Crud::PAGE_EDIT), TextField::new('siret')->setLabel('Siret'), ]; } diff --git a/src/Infrastructure/Persistence/Doctrine/Fixtures/OrganizationFixture.php b/src/Infrastructure/Persistence/Doctrine/Fixtures/OrganizationFixture.php index c273f0bc5..e8ca51493 100644 --- a/src/Infrastructure/Persistence/Doctrine/Fixtures/OrganizationFixture.php +++ b/src/Infrastructure/Persistence/Doctrine/Fixtures/OrganizationFixture.php @@ -23,14 +23,17 @@ public function load(ObjectManager $manager): void { $mainOrg = (new Organization(self::MAIN_ORG_ID)) ->setName(self::MAIN_ORG_NAME) + ->setCreatedAt(new \DateTimeImmutable('2022-11-01')) ->setLogo('/path/to/logo.jpeg'); $otherOrg = (new Organization(self::OTHER_ORG_ID)) ->setName('Mairie de Savenay') + ->setCreatedAt(new \DateTimeImmutable('2023-02-13')) ->setSiret('12345678909876'); $otherOrg2 = (new Organization(self::OTHER_ORG_ID_2)) ->setName('Mairie de Saint Ouen') + ->setCreatedAt(new \DateTimeImmutable('2023-06-24')) ->setSiret('67876540989876'); $organizationUser1 = new OrganizationUser('53aede0c-1ff3-4873-9e3d-132950dfb893'); diff --git a/src/Infrastructure/Persistence/Doctrine/Mapping/User.Organization.orm.xml b/src/Infrastructure/Persistence/Doctrine/Mapping/User.Organization.orm.xml index 0a04e0c1c..ab7350f76 100644 --- a/src/Infrastructure/Persistence/Doctrine/Mapping/User.Organization.orm.xml +++ b/src/Infrastructure/Persistence/Doctrine/Mapping/User.Organization.orm.xml @@ -7,6 +7,11 @@ + + + + + diff --git a/src/Infrastructure/Persistence/Doctrine/Migrations/Version20241219094151.php b/src/Infrastructure/Persistence/Doctrine/Migrations/Version20241219094151.php new file mode 100644 index 000000000..2dee60e45 --- /dev/null +++ b/src/Infrastructure/Persistence/Doctrine/Migrations/Version20241219094151.php @@ -0,0 +1,26 @@ +addSql('ALTER TABLE organization ADD created_at TIMESTAMP(0) WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP NOT NULL'); + } + + public function down(Schema $schema): void + { + $this->addSql('ALTER TABLE organization DROP created_at'); + } +} diff --git a/tests/Unit/Application/User/Command/ConvertAccessRequestToUserCommandHandlerTest.php b/tests/Unit/Application/User/Command/ConvertAccessRequestToUserCommandHandlerTest.php index 27ed4cb1f..76d57f516 100644 --- a/tests/Unit/Application/User/Command/ConvertAccessRequestToUserCommandHandlerTest.php +++ b/tests/Unit/Application/User/Command/ConvertAccessRequestToUserCommandHandlerTest.php @@ -192,6 +192,7 @@ public function testConvertWithSiretNotLinkedToAnOrganization(): void ->setRegistrationDate($date); $organization = (new Organization('d145a0e3-e397-412c-ba6a-90b150f7aec2')) + ->setCreatedAt($date) ->setName('Fairness') ->setSiret('82050375300015'); diff --git a/tests/Unit/Application/User/Command/SaveOrganizationCommandHandlerTest.php b/tests/Unit/Application/User/Command/SaveOrganizationCommandHandlerTest.php index e994d1f8a..5c327fcfe 100644 --- a/tests/Unit/Application/User/Command/SaveOrganizationCommandHandlerTest.php +++ b/tests/Unit/Application/User/Command/SaveOrganizationCommandHandlerTest.php @@ -4,6 +4,7 @@ namespace App\Tests\Unit\Application\User\Command; +use App\Application\DateUtilsInterface; use App\Application\IdFactoryInterface; use App\Application\User\Command\SaveOrganizationCommand; use App\Application\User\Command\SaveOrganizationCommandHandler; @@ -15,22 +16,31 @@ final class SaveOrganizationCommandHandlerTest extends TestCase { private $idFactory; + private $dateUtils; private $organizationRepository; public function setUp(): void { $this->idFactory = $this->createMock(IdFactoryInterface::class); + $this->dateUtils = $this->createMock(DateUtilsInterface::class); $this->organizationRepository = $this->createMock(OrganizationRepositoryInterface::class); } public function testCreate(): void { + $date = new \DateTimeImmutable('2024-05-07'); + $this->dateUtils + ->expects(self::once()) + ->method('getNow') + ->willReturn($date); + $this->idFactory ->expects(self::once()) ->method('make') ->willReturn('7fb74c5d-069b-4027-b994-7545bb0942d0'); $createdOrganization = (new Organization(uuid: '7fb74c5d-069b-4027-b994-7545bb0942d0')) + ->setCreatedAt($date) ->setSiret('21930027400012') ->setName('Commune de La Courneuve'); @@ -45,6 +55,7 @@ public function testCreate(): void $handler = new SaveOrganizationCommandHandler( $this->idFactory, + $this->dateUtils, $this->organizationRepository, ); @@ -87,6 +98,7 @@ public function testUpdateWithSameSiret(): void $handler = new SaveOrganizationCommandHandler( $this->idFactory, + $this->dateUtils, $this->organizationRepository, ); @@ -131,6 +143,7 @@ public function testUpdateWithDifferentSiret(): void $handler = new SaveOrganizationCommandHandler( $this->idFactory, + $this->dateUtils, $this->organizationRepository, ); @@ -177,6 +190,7 @@ public function testSiretAlreadyExist(): void $handler = new SaveOrganizationCommandHandler( $this->idFactory, + $this->dateUtils, $this->organizationRepository, ); diff --git a/tests/Unit/Domain/User/OrganizationTest.php b/tests/Unit/Domain/User/OrganizationTest.php index eacfcde63..66c3458c7 100644 --- a/tests/Unit/Domain/User/OrganizationTest.php +++ b/tests/Unit/Domain/User/OrganizationTest.php @@ -11,12 +11,16 @@ final class OrganizationTest extends TestCase { public function testGetters(): void { + $date = new \DateTimeImmutable('2024-05-07'); + $organization = (new Organization('6598fd41-85cb-42a6-9693-1bc45f4dd392')) + ->setCreatedAt($date) ->setName('Mairie de Savenay') ->setSiret('21440195200129') ->setLogo('/path/to/logo.jpg'); $this->assertSame('6598fd41-85cb-42a6-9693-1bc45f4dd392', $organization->getUuid()); + $this->assertEquals($date, $organization->getCreatedAt()); $this->assertSame('Mairie de Savenay', $organization->getName()); $this->assertSame('21440195200129', $organization->getSiret()); $this->assertSame('Mairie de Savenay', (string) $organization);