6
6
7
7
use HiEvents \DomainObjects \EventDomainObject ;
8
8
use HiEvents \DomainObjects \Generated \ProductDomainObjectAbstract ;
9
- use HiEvents \DomainObjects \TaxAndFeesDomainObject ;
10
9
use HiEvents \DomainObjects \ProductPriceDomainObject ;
10
+ use HiEvents \DomainObjects \TaxAndFeesDomainObject ;
11
11
use HiEvents \Http \Actions \BaseAction ;
12
12
use HiEvents \Repository \Interfaces \ProductRepositoryInterface ;
13
13
use HiEvents \Resources \Product \ProductResource ;
14
14
use Illuminate \Http \JsonResponse ;
15
+ use Illuminate \Http \Response ;
15
16
16
17
class GetProductAction extends BaseAction
17
18
{
@@ -22,16 +23,22 @@ public function __construct(ProductRepositoryInterface $productRepository)
22
23
$ this ->productRepository = $ productRepository ;
23
24
}
24
25
25
- public function __invoke (int $ eventId , int $ productId ): JsonResponse
26
+ public function __invoke (int $ eventId , int $ productId ): JsonResponse | Response
26
27
{
27
28
$ this ->isActionAuthorized ($ eventId , EventDomainObject::class);
28
29
29
- return $ this -> resourceResponse (ProductResource::class, $ this ->productRepository
30
+ $ product = $ this ->productRepository
30
31
->loadRelation (TaxAndFeesDomainObject::class)
31
32
->loadRelation (ProductPriceDomainObject::class)
32
33
->findFirstWhere ([
33
34
ProductDomainObjectAbstract::EVENT_ID => $ eventId ,
34
35
ProductDomainObjectAbstract::ID => $ productId ,
35
- ]));
36
+ ]);
37
+
38
+ if ($ product === null ) {
39
+ return $ this ->notFoundResponse ();
40
+ }
41
+
42
+ return $ this ->resourceResponse (ProductResource::class, $ product );
36
43
}
37
44
}
0 commit comments