Skip to content

Commit 073556b

Browse files
committed
ISSUE-344: refactor
1 parent 510f067 commit 073556b

File tree

6 files changed

+82
-23
lines changed

6 files changed

+82
-23
lines changed

config/services.yml

+13-16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
imports:
2+
- { resource: services/*.xml }
3+
14
services:
25
Psr\Container\ContainerInterface:
36
alias: 'service_container'
@@ -6,14 +9,19 @@ services:
69
resource: '../src/Controller'
710
public: true
811
autowire: true
9-
tags: ['controller.service_arguments']
12+
autoconfigure: true
1013

11-
# Symfony\Component\Serializer\SerializerInterface:
12-
# autowire: true
13-
# autoconfigure: true
14+
PhpList\RestBundle\:
15+
resource: '../src/'
16+
exclude:
17+
- '../src/Controller/'
18+
- '../src/DependencyInjection/'
19+
- '../src/Kernel.php'
20+
autowire: true
21+
autoconfigure: true
1422

1523
my.secure_handler:
16-
class: \PhpList\RestBundle\ViewHandler\SecuredViewHandler
24+
class: PhpList\RestBundle\ViewHandler\SecuredViewHandler
1725

1826
my.secure_view_handler:
1927
parent: fos_rest.view_handler.default
@@ -24,14 +32,3 @@ services:
2432
autowire: true
2533
autoconfigure: true
2634

27-
PhpList\Core\Domain\Repository\Messaging\SubscriberListRepository:
28-
autowire: true
29-
autoconfigure: true
30-
31-
PhpList\RestBundle\EventListener\ExceptionListener:
32-
tags:
33-
- { name: kernel.event_listener, event: kernel.exception }
34-
35-
PhpList\RestBundle\EventListener\ResponseListener:
36-
tags:
37-
- { name: kernel.event_listener, event: kernel.response }

config/services/controllers.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
services:
2+
PhpList\RestBundle\Controller\SubscriberController:
3+
autowire: true
4+
arguments:
5+
$authentication: '@PhpList\Core\Security\Authentication'
6+
$repository: '@PhpList\Core\Domain\Repository\Subscription\SubscriberRepository'
7+
$subscriberNormalizer: '@PhpList\RestBundle\Serializer\SubscriberNormalizer'

config/services/listeners.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
services:
2+
PhpList\RestBundle\EventListener\ExceptionListener:
3+
tags:
4+
- { name: kernel.event_listener, event: kernel.exception }
5+
6+
PhpList\RestBundle\EventListener\ResponseListener:
7+
tags:
8+
- { name: kernel.event_listener, event: kernel.response }

config/services/serializer.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
services:
2+
PhpList\RestBundle\Serializer\SubscriberNormalizer:
3+
tags: ['serializer.normalizer']
4+
autowire: true
5+

src/Controller/SubscriberController.php

+13-7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
namespace PhpList\RestBundle\Controller;
66

7+
use PhpList\RestBundle\Serializer\SubscriberNormalizer;
78
use Symfony\Bridge\Doctrine\Attribute\MapEntity;
89
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
910
use PhpList\Core\Domain\Model\Subscription\Subscriber;
@@ -16,7 +17,6 @@
1617
use Symfony\Component\HttpKernel\Exception\ConflictHttpException;
1718
use Symfony\Component\HttpKernel\Exception\UnprocessableEntityHttpException;
1819
use Symfony\Component\Routing\Attribute\Route;
19-
use Symfony\Component\Serializer\Normalizer\AbstractNormalizer;
2020
use Symfony\Component\Serializer\SerializerInterface;
2121
use OpenApi\Attributes as OA;
2222

@@ -30,13 +30,16 @@ class SubscriberController extends AbstractController
3030
use AuthenticationTrait;
3131

3232
private SubscriberRepository $subscriberRepository;
33+
private SubscriberNormalizer $subscriberNormalizer;
3334

3435
public function __construct(
3536
Authentication $authentication,
36-
SubscriberRepository $repository
37+
SubscriberRepository $repository,
38+
SubscriberNormalizer $subscriberNormalizer
3739
) {
3840
$this->authentication = $authentication;
3941
$this->subscriberRepository = $repository;
42+
$this->subscriberNormalizer = $subscriberNormalizer;
4043
}
4144

4245
#[Route('/subscribers', name: 'create_subscriber', methods: ['POST'])]
@@ -229,15 +232,18 @@ public function postAction(Request $request, SerializerInterface $serializer): J
229232
public function getAction(
230233
Request $request,
231234
#[MapEntity(mapping: ['subscriberId' => 'id'])] Subscriber $subscriber,
232-
SerializerInterface $serializer
233235
): JsonResponse {
234236
$this->requireAuthentication($request);
235237

236-
$json = $serializer->serialize($subscriber, 'json', [
237-
AbstractNormalizer::GROUPS => 'SubscriberListMembers',
238-
]);
238+
$subscriber = $this->subscriberRepository->findSubscriberWithSubscriptions($subscriber->getId());
239239

240-
return new JsonResponse($json, Response::HTTP_OK, [], true);
240+
if (!$subscriber) {
241+
return new JsonResponse(['error' => 'Subscriber not found'], Response::HTTP_NOT_FOUND);
242+
}
243+
244+
$data = $this->subscriberNormalizer->normalize($subscriber);
245+
246+
return new JsonResponse($data, Response::HTTP_OK, []);
241247
}
242248

243249
/**
+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace PhpList\RestBundle\Serializer;
6+
7+
use PhpList\Core\Domain\Model\Subscription\Subscriber;
8+
use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
9+
10+
class SubscriberNormalizer implements NormalizerInterface
11+
{
12+
public function normalize($object, string $format = null, array $context = []): array
13+
{
14+
if (!$object instanceof Subscriber) {
15+
return [];
16+
}
17+
18+
return [
19+
'id' => $object->getId(),
20+
'email' => $object->getEmail(),
21+
'subscribedLists' => array_map(function ($subscription) {
22+
23+
return [
24+
'id' => $subscription->getSubscriberList()->getId(),
25+
'name' => $subscription->getSubscriberList()->getName(),
26+
];
27+
}, $object->getSubscriptions()->toArray()),
28+
];
29+
}
30+
31+
public function supportsNormalization($data, string $format = null): bool
32+
{
33+
return $data instanceof Subscriber;
34+
}
35+
}
36+

0 commit comments

Comments
 (0)