1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Ps2alerts\Api\Controller\Statistics; |
4
|
|
|
|
5
|
|
|
use League\Route\Http\JsonResponse as Response; |
6
|
|
|
use Ps2alerts\Api\Controller\EndpointBaseController; |
7
|
|
|
use Ps2alerts\Api\Loader\Statistics\AlertStatisticsLoader; |
8
|
|
|
use Symfony\Component\HttpFoundation\Request; |
9
|
|
|
|
10
|
|
|
class AlertStatisticsEndpoint extends EndpointBaseController |
11
|
|
|
{ |
12
|
|
|
/** |
13
|
|
|
* Construct |
14
|
|
|
* |
15
|
|
|
* @param \Ps2alerts\Api\Loader\Statistics\AlertStatisticsLoader $loader |
16
|
|
|
*/ |
17
|
|
|
public function __construct(AlertStatisticsLoader $loader) |
18
|
|
|
{ |
19
|
|
|
$this->loader = $loader; |
20
|
|
|
} |
21
|
|
|
|
22
|
|
|
/** |
23
|
|
|
* Gets total alerts based on provided parameters |
24
|
|
|
* |
25
|
|
|
* @param \Symfony\Component\HttpFoundation\Request $request |
26
|
|
|
* |
27
|
|
|
* @return \League\Route\Http\JsonResponse |
28
|
|
|
*/ |
29
|
|
|
public function readTotals(Request $request) |
30
|
|
|
{ |
31
|
|
|
$post = $request->request->all(); |
32
|
|
|
|
33
|
|
|
$return = $this->loader->readTotals($post); |
|
|
|
|
34
|
|
|
|
35
|
|
|
if (empty($return)) { |
36
|
|
|
return new Response\NoContent(); |
37
|
|
|
} |
38
|
|
|
|
39
|
|
|
return new Response\Ok($return); |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
/** |
43
|
|
|
* Retrieves the zones totals |
44
|
|
|
* |
45
|
|
|
* @param \Symfony\Component\HttpFoundation\Request $request |
46
|
|
|
* |
47
|
|
|
* @return \League\Route\Http\JsonResponse |
48
|
|
|
*/ |
49
|
|
|
public function readZoneTotals(Request $request) |
|
|
|
|
50
|
|
|
{ |
51
|
|
|
$return = $this->loader->readZoneTotals(); |
|
|
|
|
52
|
|
|
|
53
|
|
|
if (empty($return)) { |
54
|
|
|
return new Response\NoContent(); |
55
|
|
|
} |
56
|
|
|
|
57
|
|
|
return new Response\Ok($return); |
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
/** |
61
|
|
|
* Retrieves the victory summary (daily or monthly) |
62
|
|
|
* |
63
|
|
|
* @param \Symfony\Component\HttpFoundation\Request $request |
64
|
|
|
* |
65
|
|
|
* @return \League\Route\Http\JsonResponse |
66
|
|
|
*/ |
67
|
|
|
public function readHistorySummary(Request $request) |
68
|
|
|
{ |
69
|
|
|
$post = $request->request->all(); |
70
|
|
|
|
71
|
|
|
$return = $this->loader->readHistorySummary($post); |
|
|
|
|
72
|
|
|
|
73
|
|
|
if (empty($return)) { |
74
|
|
|
return new Response\NoContent(); |
75
|
|
|
} |
76
|
|
|
|
77
|
|
|
return new Response\Ok($return); |
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
/** |
81
|
|
|
* Retrives a list of alerts based off filters |
82
|
|
|
* |
83
|
|
|
* @param \Symfony\Component\HttpFoundation\Request $request |
84
|
|
|
* |
85
|
|
|
* @return \League\Route\Http\JsonResponse |
86
|
|
|
*/ |
87
|
|
|
public function readAlertHistory(Request $request) |
88
|
|
|
{ |
89
|
|
|
$post = $request->request->all(); |
90
|
|
|
|
91
|
|
|
$return = $this->loader->readAlertHistory($post); |
|
|
|
|
92
|
|
|
|
93
|
|
|
if (empty($return)) { |
94
|
|
|
return new Response\NoContent(); |
95
|
|
|
} |
96
|
|
|
|
97
|
|
|
return new Response\Ok($return); |
98
|
|
|
} |
99
|
|
|
} |
100
|
|
|
|
It seems like the method you are trying to call exists only in some of the possible types.
Let’s take a look at an example:
Available Fixes
Add an additional type-check:
Only allow a single type to be passed if the variable comes from a parameter: