1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* Copyright 2014 SURFnet bv |
5
|
|
|
* |
6
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
7
|
|
|
* you may not use this file except in compliance with the License. |
8
|
|
|
* You may obtain a copy of the License at |
9
|
|
|
* |
10
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0 |
11
|
|
|
* |
12
|
|
|
* Unless required by applicable law or agreed to in writing, software |
13
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, |
14
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
15
|
|
|
* See the License for the specific language governing permissions and |
16
|
|
|
* limitations under the License. |
17
|
|
|
*/ |
18
|
|
|
|
19
|
|
|
namespace Surfnet\StepupMiddleware\ApiBundle\Controller; |
20
|
|
|
|
21
|
|
|
use Surfnet\Stepup\Identity\Value\NameId; |
22
|
|
|
use Surfnet\StepupMiddleware\ApiBundle\Identity\Service\SraaService; |
23
|
|
|
use Surfnet\StepupMiddleware\ApiBundle\Response\JsonNotFoundResponse; |
24
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\Controller; |
25
|
|
|
use Symfony\Component\HttpFoundation\JsonResponse; |
26
|
|
|
|
27
|
|
|
class SraaController extends Controller |
28
|
|
|
{ |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* @var SraaService |
32
|
|
|
*/ |
33
|
|
|
private $sraaService; |
34
|
|
|
|
35
|
|
|
public function __construct(SraaService $sraaService) |
36
|
|
|
{ |
37
|
|
|
$this->sraaService = $sraaService; |
38
|
|
|
} |
39
|
|
|
|
40
|
|
|
/** |
41
|
|
|
* @param string $nameId injected by symfony from the request |
42
|
|
|
* @return JsonNotFoundResponse|JsonResponse |
43
|
|
|
*/ |
44
|
|
|
public function getAction($nameId) |
45
|
|
|
{ |
46
|
|
|
$this->denyAccessUnlessGranted(['ROLE_RA']); |
47
|
|
|
|
48
|
|
|
$sraa = $this->sraaService->findByNameId(new NameId($nameId)); |
49
|
|
|
|
50
|
|
|
if (!$sraa) { |
51
|
|
|
return new JsonNotFoundResponse(); |
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
return new JsonResponse($sraa); |
55
|
|
|
} |
56
|
|
|
} |
57
|
|
|
|