1
|
|
|
<?php |
2
|
|
|
namespace keeko\core\responder; |
3
|
|
|
|
4
|
|
|
use Symfony\Component\HttpFoundation\Request; |
5
|
|
|
use Symfony\Component\HttpFoundation\JsonResponse; |
6
|
|
|
use keeko\framework\domain\payload\PayloadInterface; |
7
|
|
|
use keeko\framework\foundation\AbstractPayloadResponder; |
8
|
|
|
use keeko\core\model\Application; |
9
|
|
|
use keeko\core\model\Package; |
10
|
|
|
use Tobscure\JsonApi\Document; |
11
|
|
|
use Tobscure\JsonApi\Collection; |
12
|
|
|
use Tobscure\JsonApi\Parameters; |
13
|
|
|
|
14
|
|
|
/** |
15
|
|
|
* Automatically generated JsonResponder for List all applications |
16
|
|
|
* |
17
|
|
|
* @author gossi |
18
|
|
|
*/ |
19
|
|
|
class ApplicationListJsonResponder extends AbstractPayloadResponder { |
20
|
|
|
|
21
|
|
|
/** |
22
|
|
|
* @param Request $request |
23
|
|
|
* @param PayloadInterface $payload |
24
|
|
|
*/ |
25
|
|
|
public function found(Request $request, PayloadInterface $payload) { |
26
|
|
|
$params = new Parameters($request->query->all()); |
27
|
|
|
$data = $payload->get('model'); |
28
|
|
|
$serializer = Application::getSerializer(); |
29
|
|
|
$resource = new Collection($data, $serializer); |
30
|
|
|
$resource = $resource->with($params->getInclude(['package'])); |
31
|
|
|
$resource = $resource->fields($params->getFields([ |
|
|
|
|
32
|
|
|
'application' => Application::getSerializer()->getFields(), |
33
|
|
|
'package' => Package::getSerializer()->getFields() |
34
|
|
|
])); |
35
|
|
|
$document = new Document($resource); |
36
|
|
|
|
37
|
|
|
// meta |
38
|
|
|
$document->setMeta([ |
39
|
|
|
'total' => $data->getNbResults(), |
40
|
|
|
'first' => $data->getFirstPage(), |
41
|
|
|
'next' => $data->getNextPage(), |
42
|
|
|
'previous' => $data->getPreviousPage(), |
43
|
|
|
'last' => $data->getLastPage() |
44
|
|
|
]); |
45
|
|
|
|
46
|
|
|
// return response |
47
|
|
|
return new JsonResponse($document->toArray()); |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
/** |
51
|
|
|
*/ |
52
|
|
|
protected function getPayloadMethods() { |
53
|
|
|
return [ |
54
|
|
|
'keeko\framework\domain\payload\Found' => 'found' |
55
|
|
|
]; |
56
|
|
|
} |
57
|
|
|
} |
58
|
|
|
|
This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.
If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress.
In this case you can add the
@ignore
PhpDoc annotation to the duplicate definition and it will be ignored.