4
4
5
5
namespace PhpList \RestBundle \Controller ;
6
6
7
+ use PhpList \RestBundle \Serializer \SubscriberNormalizer ;
7
8
use Symfony \Bridge \Doctrine \Attribute \MapEntity ;
8
9
use Symfony \Bundle \FrameworkBundle \Controller \AbstractController ;
9
10
use PhpList \Core \Domain \Model \Subscription \Subscriber ;
16
17
use Symfony \Component \HttpKernel \Exception \ConflictHttpException ;
17
18
use Symfony \Component \HttpKernel \Exception \UnprocessableEntityHttpException ;
18
19
use Symfony \Component \Routing \Attribute \Route ;
19
- use Symfony \Component \Serializer \Normalizer \AbstractNormalizer ;
20
20
use Symfony \Component \Serializer \SerializerInterface ;
21
21
use OpenApi \Attributes as OA ;
22
22
@@ -30,13 +30,16 @@ class SubscriberController extends AbstractController
30
30
use AuthenticationTrait;
31
31
32
32
private SubscriberRepository $ subscriberRepository ;
33
+ private SubscriberNormalizer $ subscriberNormalizer ;
33
34
34
35
public function __construct (
35
36
Authentication $ authentication ,
36
- SubscriberRepository $ repository
37
+ SubscriberRepository $ repository ,
38
+ SubscriberNormalizer $ subscriberNormalizer
37
39
) {
38
40
$ this ->authentication = $ authentication ;
39
41
$ this ->subscriberRepository = $ repository ;
42
+ $ this ->subscriberNormalizer = $ subscriberNormalizer ;
40
43
}
41
44
42
45
#[Route('/subscribers ' , name: 'create_subscriber ' , methods: ['POST ' ])]
@@ -229,15 +232,18 @@ public function postAction(Request $request, SerializerInterface $serializer): J
229
232
public function getAction (
230
233
Request $ request ,
231
234
#[MapEntity(mapping: ['subscriberId ' => 'id ' ])] Subscriber $ subscriber ,
232
- SerializerInterface $ serializer
233
235
): JsonResponse {
234
236
$ this ->requireAuthentication ($ request );
235
237
236
- $ json = $ serializer ->serialize ($ subscriber , 'json ' , [
237
- AbstractNormalizer::GROUPS => 'SubscriberListMembers ' ,
238
- ]);
238
+ $ subscriber = $ this ->subscriberRepository ->findSubscriberWithSubscriptions ($ subscriber ->getId ());
239
239
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 , []);
241
247
}
242
248
243
249
/**
0 commit comments