45 lines
1.4 KiB
PHP
45 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Controller\Api;
|
|
|
|
use App\BusProNet\ApiClient;
|
|
use App\BusProNet\Exception\ApiClientException;
|
|
use App\BusProNet\Model\Notification;
|
|
use App\Entity\User;
|
|
use App\Security\Crypt;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\HttpFoundation\JsonResponse;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Routing\Attribute\Route;
|
|
use Symfony\Component\Security\Http\Attribute\IsGranted;
|
|
|
|
#[Route('/api')]
|
|
#[IsGranted('ROLE_OAUTH2_PROFILE')]
|
|
class CrmAttributeController extends AbstractController
|
|
{
|
|
public function __construct(private readonly ApiClient $apiClient, private readonly Crypt $crypt)
|
|
{
|
|
}
|
|
|
|
#[Route('/crm-attributes', name: 'api_crm_attributes', methods: ['GET'])]
|
|
public function index(): JsonResponse
|
|
{
|
|
/** @var User $user */
|
|
$user = $this->getUser();
|
|
$email = $user->getEmail();
|
|
$password = $this->crypt->decrypt($user->getPassword());
|
|
|
|
try {
|
|
$data = $this->apiClient->getCrmAttributes($email, $password);
|
|
|
|
if ($data instanceof Notification) {
|
|
return new JsonResponse(['message' => $data->message, 'code' => $data->code], Response::HTTP_BAD_REQUEST);
|
|
}
|
|
|
|
return $this->json($data);
|
|
} catch (ApiClientException $e) {
|
|
return new JsonResponse(['message' => $e->getMessage()], Response::HTTP_BAD_REQUEST);
|
|
}
|
|
}
|
|
}
|