1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Date: 23.11.15 |
4
|
|
|
* |
5
|
|
|
* @author Portey Vasil <[email protected]> |
6
|
|
|
*/ |
7
|
|
|
|
8
|
|
|
namespace Youshido\GraphQL\Parser\Ast; |
9
|
|
|
|
10
|
|
|
use Youshido\GraphQL\Parser\Ast\Interfaces\FieldInterface; |
11
|
|
|
use Youshido\GraphQL\Parser\Ast\Interfaces\FragmentInterface; |
12
|
|
|
use Youshido\GraphQL\Parser\Location; |
13
|
|
|
|
14
|
|
|
class Query extends AbstractAst implements FieldInterface |
15
|
|
|
{ |
16
|
|
|
|
17
|
|
|
use AstArgumentsTrait; |
18
|
|
|
use AstDirectivesTrait; |
19
|
|
|
|
20
|
|
|
/** @var string */ |
21
|
|
|
protected $name; |
22
|
|
|
|
23
|
|
|
/** @var string */ |
24
|
|
|
protected $alias; |
25
|
|
|
|
26
|
|
|
/** @var Field[]|Query[] */ |
27
|
|
|
protected $fields = []; |
28
|
|
|
|
29
|
|
|
/** |
30
|
|
|
* Query constructor. |
31
|
|
|
* |
32
|
|
|
* @param string $name |
33
|
|
|
* @param string $alias |
34
|
|
|
* @param array $arguments |
35
|
|
|
* @param array $fields |
36
|
|
|
* @param array $directives |
37
|
|
|
* @param Location $location |
38
|
|
|
*/ |
39
|
94 |
View Code Duplication |
public function __construct($name, $alias = '', array $arguments, array $fields, array $directives, Location $location) |
|
|
|
|
40
|
|
|
{ |
41
|
94 |
|
parent::__construct($location); |
42
|
|
|
|
43
|
94 |
|
$this->name = $name; |
44
|
94 |
|
$this->alias = $alias; |
45
|
94 |
|
$this->setFields($fields); |
46
|
94 |
|
$this->setArguments($arguments); |
47
|
94 |
|
$this->setDirectives($directives); |
48
|
94 |
|
} |
49
|
|
|
|
50
|
69 |
|
public function getName() |
51
|
|
|
{ |
52
|
69 |
|
return $this->name; |
53
|
|
|
} |
54
|
|
|
|
55
|
|
|
/** |
56
|
|
|
* @return Field[]|Query[]|FragmentInterface[] |
57
|
|
|
*/ |
58
|
63 |
|
public function getFields() |
59
|
|
|
{ |
60
|
63 |
|
return array_values($this->fields); |
61
|
|
|
} |
62
|
|
|
|
63
|
|
|
/** |
64
|
|
|
* @return bool |
65
|
|
|
*/ |
66
|
22 |
|
public function hasFields() |
67
|
|
|
{ |
68
|
22 |
|
return (bool)count($this->fields); |
69
|
|
|
} |
70
|
|
|
|
71
|
|
|
/** |
72
|
|
|
* @param Field[]|Query[] $fields |
73
|
|
|
*/ |
74
|
94 |
|
public function setFields($fields) |
75
|
|
|
{ |
76
|
|
|
/** |
77
|
|
|
* we cannot store fields by name because of TypedFragments |
78
|
|
|
*/ |
79
|
94 |
|
$this->fields = $fields; |
|
|
|
|
80
|
94 |
|
} |
81
|
|
|
|
82
|
69 |
|
public function getAlias() |
83
|
|
|
{ |
84
|
69 |
|
return $this->alias; |
85
|
|
|
} |
86
|
|
|
|
87
|
|
|
public function hasField($name, $deep = false) |
88
|
|
|
{ |
89
|
|
|
foreach ($this->getFields() as $field) { |
90
|
|
|
if ($field->getName() == $name) { |
91
|
|
|
return true; |
92
|
|
|
} |
93
|
|
|
|
94
|
|
|
if ($deep && $field instanceof Query) { |
95
|
|
|
if ($field->hasField($name)) { |
96
|
|
|
return true; |
97
|
|
|
} |
98
|
|
|
} |
99
|
|
|
} |
100
|
|
|
|
101
|
|
|
return false; |
102
|
|
|
} |
103
|
|
|
|
104
|
|
|
} |
105
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.