1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* This file is part of the `tvi/monitor-bundle` project. |
5
|
|
|
* |
6
|
|
|
* (c) https://github.com/turnaev/monitor-bundle/graphs/contributors |
7
|
|
|
* |
8
|
|
|
* For the full copyright and license information, please view the LICENSE.md |
9
|
|
|
* file that was distributed with this source code. |
10
|
|
|
*/ |
|
|
|
|
11
|
|
|
|
12
|
|
|
namespace Tvi\MonitorBundle\Controller; |
13
|
|
|
|
14
|
|
|
use Symfony\Component\HttpFoundation\Request; |
15
|
|
|
use Symfony\Component\HttpFoundation\Response; |
16
|
|
|
use JMS\Serializer\Serializer; |
17
|
|
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; |
18
|
|
|
use Tvi\MonitorBundle\Exception\HttpException; |
19
|
|
|
use Tvi\MonitorBundle\Reporter\ReporterManager; |
20
|
|
|
use Tvi\MonitorBundle\Runner\RunnerManager; |
21
|
|
|
|
22
|
|
|
/** |
|
|
|
|
23
|
|
|
* @property RunnerManager $runnerManager |
24
|
|
|
* @property ReporterManager $reporterManager |
25
|
|
|
* @property Serializer $serializer |
26
|
|
|
* |
27
|
|
|
* @author Vladimir Turnaev <[email protected]> |
28
|
|
|
*/ |
|
|
|
|
29
|
|
|
trait TraitApiInfoCheck |
30
|
|
|
{ |
31
|
4 |
|
public function checkInfoAction(Request $request, $id, string $version): Response |
|
|
|
|
32
|
|
|
{ |
33
|
|
|
try { |
34
|
4 |
|
$checks = $this->runnerManager->findChecks($id); |
35
|
3 |
|
if (1 === \count($checks)) { |
36
|
2 |
|
$check = current($checks); |
37
|
|
|
|
38
|
2 |
|
return $this->creatResponse($check, Response::HTTP_OK, true); |
|
|
|
|
39
|
|
|
} |
40
|
|
|
|
41
|
1 |
|
throw new NotFoundHttpException(sprintf('Check "%s" not found', $id)); |
42
|
2 |
|
} catch (NotFoundHttpException $e) { |
43
|
1 |
|
$e = new HttpException($e->getStatusCode(), $e->getMessage()); |
44
|
|
|
|
45
|
1 |
|
return $this->creatResponse($e->toArray(), $e->getStatusCode(), true); |
46
|
1 |
|
} catch (\Exception $e) { |
47
|
1 |
|
return $this->creatResponse($e->getMessage(), Response::HTTP_INTERNAL_SERVER_ERROR); |
48
|
|
|
} |
49
|
|
|
} |
50
|
|
|
|
51
|
8 |
|
public function checkInfosAction(Request $request, string $version): Response |
|
|
|
|
52
|
|
|
{ |
53
|
|
|
try { |
54
|
8 |
|
list($ids, $checks, $groups, $tags) = $this->getFilterParams($request); |
|
|
|
|
55
|
8 |
|
$checks = $checks ? $checks : $ids; |
56
|
|
|
|
57
|
8 |
|
$checks = $this->runnerManager->findChecks($checks, $groups, $tags); |
58
|
7 |
|
$checks = array_values($checks); |
59
|
|
|
|
60
|
7 |
|
return $this->creatResponse($checks, Response::HTTP_OK, true); |
61
|
1 |
|
} catch (\Exception $e) { |
62
|
1 |
|
return $this->creatResponse($e->getMessage(), Response::HTTP_INTERNAL_SERVER_ERROR); |
63
|
|
|
} |
64
|
|
|
} |
65
|
|
|
} |
66
|
|
|
|