Test Setup Failed
Push — master ( 31905c...c65f95 )
by Kirill
02:41
created

Repository::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 2
1
<?php
2
/**
3
 * This file is part of Railt package.
4
 *
5
 * For the full copyright and license information, please view the LICENSE
6
 * file that was distributed with this source code.
7
 */
8
declare(strict_types=1);
9
10
namespace Railt\Adapters\Webonyx;
11
12
use GraphQL\Type\Definition\ResolveInfo;
13
use Railt\Adapters\InputInterface;
14
use Railt\Reflection\Abstraction\DefinitionInterface;
15
use Railt\Reflection\Abstraction\ObjectTypeInterface;
16
use Railt\Reflection\Abstraction\Type\TypeInterface;
17
use Railt\Routing\Contracts\RouteInterface;
18
use Railt\Routing\Contracts\RouterInterface;
19
use Railt\Routing\Route;
20
use Railt\Routing\Router;
21
22
/**
23
 * Class Repository
24
 * @package Railt\Adapters\Webonyx
25
 */
26
class Repository
27
{
28
    /**
29
     * @var Router|RouterInterface
30
     */
31
    private $router;
32
33
    /**
34
     * @var DefinitionInterface|TypeInterface
35
     */
36
    private $type;
37
38
    /**
39
     * Repository constructor.
40
     * @param RouterInterface $router
41
     * @param ObjectTypeInterface $type
42
     */
43
    public function __construct(RouterInterface $router, ObjectTypeInterface $type)
44
    {
45
        $this->router = $router;
46
        $this->type   = $type;
47
    }
48
49
    /**
50
     * @param InputInterface $input
51
     * @param mixed $parent
52
     * @return mixed
53
     */
54
    public function fetch(InputInterface $input, $parent)
55
    {
56
        $result = $parent;
57
58
        if ($this->router->has($input->getPath())) {
59
            $routes = $this->router->get($input->getPath());
60
61
            foreach ($routes as $route) {
62
                //
63
                // Allows invocation for only same matched query type:
64
                //      "mutation", "query" or "subscription"
0 ignored issues
show
Unused Code Comprehensibility introduced by
56% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
65
                //
66
                if ($route->matchMethod($input->getQueryType())) {
67
                    $result = $this->invoke($route, $input, $result);
68
                }
69
            }
70
        }
71
72
        return $result;
73
    }
74
75
    /**
76
     * @param RouteInterface|Route $route
77
     * @param InputInterface $input
78
     * @param $parent
79
     * @return mixed
80
     */
81
    private function invoke(RouteInterface $route, InputInterface $input, $parent)
82
    {
83
        $output = new Output($parent, $parent);
84
85
        return (object)$route->call($this->router->getContainer(), [
86
            'route'  => $route,
87
            'input'  => $input,
88
            'output' => $output,
89
            'type'   => $this->type,
90
        ]);
91
    }
92
}
93