5764d8f472
- Prestataire : entité/repo + ressource API Platform (RBAC directory.providers.*), ownership prestataire sur contacts/adresses/comptes-rendus (CHECK XOR à 3), DTO/service/drawer/fiche détail + onglet dédié dans le répertoire. - Prospect : société uniquement (suppression du champ name, company requis) ; migration de backfill, conversion prospect→client et MCP adaptés. - Champ site web sur client/prospect/prestataire (entités, DTO, onglet Information, MCP). - Validateurs front email / téléphone FR (0549200910) / URL sur Information et Contacts, enregistrement bloqué tant qu'un champ est invalide. - Autocomplete adresse branché sur la Base Adresse Nationale (api-adresse.data.gouv.fr) avec mode dégradé en saisie libre. - Administration : retrait de l'onglet Clients.
60 lines
1.7 KiB
PHP
60 lines
1.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Module\Directory\Infrastructure\Mcp\Tool;
|
|
|
|
use App\Module\Directory\Domain\Repository\ClientRepositoryInterface;
|
|
use App\Shared\Infrastructure\Mcp\Serializer;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use InvalidArgumentException;
|
|
use Mcp\Capability\Attribute\McpTool;
|
|
use Symfony\Bundle\SecurityBundle\Security;
|
|
use Symfony\Component\Security\Core\Exception\AccessDeniedException;
|
|
|
|
use function sprintf;
|
|
|
|
#[McpTool(name: 'update-client', description: 'Update a client (admin). Only provided fields change.')]
|
|
class UpdateClientTool
|
|
{
|
|
public function __construct(
|
|
private readonly ClientRepositoryInterface $clientRepository,
|
|
private readonly EntityManagerInterface $entityManager,
|
|
private readonly Security $security,
|
|
) {}
|
|
|
|
public function __invoke(
|
|
int $id,
|
|
?string $name = null,
|
|
?string $email = null,
|
|
?string $phone = null,
|
|
?string $website = null,
|
|
): string {
|
|
if (!$this->security->isGranted('ROLE_ADMIN')) {
|
|
throw new AccessDeniedException('Access denied: ROLE_ADMIN required.');
|
|
}
|
|
|
|
$client = $this->clientRepository->findById($id);
|
|
if (null === $client) {
|
|
throw new InvalidArgumentException(sprintf('Client with ID %d not found.', $id));
|
|
}
|
|
|
|
if (null !== $name) {
|
|
$client->setName($name);
|
|
}
|
|
if (null !== $email) {
|
|
$client->setEmail($email);
|
|
}
|
|
if (null !== $phone) {
|
|
$client->setPhone($phone);
|
|
}
|
|
if (null !== $website) {
|
|
$client->setWebsite($website);
|
|
}
|
|
|
|
$this->entityManager->flush();
|
|
|
|
return json_encode(Serializer::client($client));
|
|
}
|
|
}
|