1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Ps2alerts\Api\Controller\Endpoint\Alerts; |
4
|
|
|
|
5
|
|
|
use League\Fractal\Manager; |
6
|
|
|
use Ps2alerts\Api\Controller\Endpoint\AbstractEndpointController; |
7
|
|
|
use Ps2alerts\Api\Contract\ConfigAwareInterface; |
8
|
|
|
use Ps2alerts\Api\Contract\ConfigAwareTrait; |
9
|
|
|
use Ps2alerts\Api\Repository\AlertRepository; |
10
|
|
|
use Ps2alerts\Api\Transformer\AlertTotalTransformer; |
11
|
|
|
use Ps2alerts\Api\Transformer\AlertTransformer; |
12
|
|
|
use Symfony\Component\HttpFoundation\Request; |
13
|
|
|
use Symfony\Component\HttpFoundation\Response; |
14
|
|
|
|
15
|
|
|
class AlertEndpointController extends AbstractEndpointController implements |
16
|
|
|
ConfigAwareInterface |
17
|
|
|
{ |
18
|
|
|
use ConfigAwareTrait; |
19
|
|
|
|
20
|
|
|
/** |
21
|
|
|
* Construct |
22
|
|
|
* |
23
|
|
|
* @param Ps2alerts\Api\Repository\AlertRepository $repository |
24
|
|
|
* @param Ps2alerts\Api\Transformer\AlertTransformer $transformer |
25
|
|
|
* @param League\Fractal\Manager $fractal |
26
|
|
|
*/ |
27
|
|
|
public function __construct( |
28
|
|
|
AlertRepository $repository, |
29
|
|
|
AlertTransformer $transformer, |
30
|
|
|
Manager $fractal |
31
|
|
|
) { |
32
|
|
|
$this->repository = $repository; |
33
|
|
|
$this->transformer = $transformer; |
34
|
|
|
$this->fractal = $fractal; |
35
|
|
|
} |
36
|
|
|
|
37
|
|
|
/** |
38
|
|
|
* Returns a single alert's information |
39
|
|
|
* |
40
|
|
|
* @param Symfony\Component\HttpFoundation\Request $request |
41
|
|
|
* @param Symfony\Component\HttpFoundation\Response $response |
42
|
|
|
* @param array $args |
43
|
|
|
* |
44
|
|
|
* @return \League\Fractal\TransformerAbstract |
45
|
|
|
*/ |
46
|
|
View Code Duplication |
public function getSingle(Request $request, Response $response, array $args) |
|
|
|
|
47
|
|
|
{ |
48
|
|
|
$alert = $this->repository->readSingleById($args['id']); |
49
|
|
|
|
50
|
|
|
if (empty($alert)) { |
51
|
|
|
return $this->errorEmpty($response); |
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
return $this->respond('item', $alert, $this->transformer, $request, $response); |
55
|
|
|
} |
56
|
|
|
|
57
|
|
|
/** |
58
|
|
|
* Returns all currently running alerts |
59
|
|
|
* |
60
|
|
|
* @param Symfony\Component\HttpFoundation\Request $request |
61
|
|
|
* @param Symfony\Component\HttpFoundation\Response $response |
62
|
|
|
* |
63
|
|
|
* @return \League\Fractal\TransformerAbstract |
64
|
|
|
*/ |
65
|
|
View Code Duplication |
public function getActives(Request $request, Response $response) |
|
|
|
|
66
|
|
|
{ |
67
|
|
|
$actives = $this->repository->readAllByFields(['InProgress' => 1]); |
68
|
|
|
|
69
|
|
|
if (empty($actives)) { |
70
|
|
|
return $this->errorEmpty($response); |
71
|
|
|
} |
72
|
|
|
|
73
|
|
|
return $this->respond('collection', $actives, $this->transformer, $request, $response); |
74
|
|
|
} |
75
|
|
|
} |
76
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.