Completed
Pull Request — master (#38)
by Boy
02:59
created

InstitutionListingService   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 37
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 4

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 3
c 1
b 0
f 0
lcom 1
cbo 4
dl 0
loc 37
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 7 1
A getAll() 0 13 2
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\StepupMiddlewareClientBundle\Identity\Service;
20
21
use Surfnet\StepupMiddlewareClient\Identity\Service\InstitutionListingService as LibraryInstitutionListingService;
22
use Surfnet\StepupMiddlewareClientBundle\Exception\InvalidResponseException;
23
use Surfnet\StepupMiddlewareClientBundle\Identity\Dto\InstitutionListingCollection;
24
use Symfony\Component\Validator\Validator\ValidatorInterface;
25
26
class InstitutionListingService
27
{
28
    /**
29
     * @var ValidatorInterface
30
     */
31
    private $validator;
32
33
    /**
34
     * @var LibraryInstitutionListingService
35
     */
36
    private $clientService;
37
38
    public function __construct(
39
        LibraryInstitutionListingService $institutionListingService,
40
        ValidatorInterface $validator
41
    ) {
42
        $this->clientService = $institutionListingService;
43
        $this->validator = $validator;
44
    }
45
46
    /**
47
     * @return InstitutionListingCollection
48
     */
49
    public function getAll()
50
    {
51
        $data = $this->clientService->getAll();
52
        $collection = InstitutionListingCollection::fromData($data);
53
54
        $violations = $this->validator->validate($collection);
55
56
        if (count($violations) > 0) {
57
            throw InvalidResponseException::withViolations('Invalid InstitutionListings received', $violations);
58
        }
59
60
        return $collection;
61
    }
62
}
63