1 | <?php |
||
25 | class QueryEndpoint extends AbstractSearchEndpoint implements OrderedNormalizerInterface |
||
26 | { |
||
27 | use ParametersTrait; |
||
28 | |||
29 | /** |
||
30 | * @var BuilderInterface|BoolQuery |
||
31 | */ |
||
32 | private $query; |
||
33 | |||
34 | /** |
||
35 | * @var OptionsResolver |
||
36 | */ |
||
37 | private $resolver; |
||
38 | |||
39 | /** |
||
40 | * Instantiates resolver. |
||
41 | */ |
||
42 | public function __construct() |
||
43 | { |
||
44 | $this->resolver = new OptionsResolver(); |
||
45 | $this->configureResolver($this->resolver); |
||
46 | } |
||
47 | |||
48 | /** |
||
49 | * {@inheritdoc} |
||
50 | */ |
||
51 | public function addBuilder(BuilderInterface $builder, $parameters = []) |
||
52 | { |
||
53 | if (!$this->query && !(array_key_exists('bool_type', $parameters) && !empty($parameters['bool_type']))) { |
||
54 | $this->setBuilder($builder); |
||
55 | } else { |
||
56 | $parameters = $this->resolver->resolve(array_filter($parameters)); |
||
57 | $this->isBool() ? : $this->convertToBool(); |
||
58 | $this->query->add($builder, $parameters['bool_type']); |
||
|
|||
59 | } |
||
60 | |||
61 | return $this; |
||
62 | } |
||
63 | |||
64 | /** |
||
65 | * {@inheritdoc} |
||
66 | */ |
||
67 | public function normalize(NormalizerInterface $normalizer, $format = null, array $context = []) |
||
68 | { |
||
69 | $isRelevant = false; |
||
70 | |||
71 | if ($this->hasReference('filtered_query')) { |
||
72 | /** @var FilteredQuery $query */ |
||
73 | $query = $this->getReference('filtered_query'); |
||
74 | if ($this->getBuilder()) { |
||
75 | $query->setQuery($this->getBuilder()); |
||
76 | } |
||
77 | $this->setBuilder($query); |
||
78 | $isRelevant = true; |
||
79 | } |
||
80 | |||
81 | if ($this->getBuilder()) { |
||
82 | if (method_exists($this->getBuilder(), 'setParameters') && count($this->getParameters()) > 0) { |
||
83 | $this |
||
84 | ->getBuilder() |
||
85 | ->setParameters($this->processArray($this->getBuilder()->getParameters())); |
||
86 | } |
||
87 | |||
88 | $isRelevant = true; |
||
89 | } |
||
90 | |||
91 | return $isRelevant ? [$this->getBuilder()->getType() => $this->getBuilder()->toArray()] : null; |
||
92 | } |
||
93 | |||
94 | /** |
||
95 | * {@inheritdoc} |
||
96 | */ |
||
97 | public function getOrder() |
||
98 | { |
||
99 | return 2; |
||
100 | } |
||
101 | |||
102 | /** |
||
103 | * {@inheritdoc} |
||
104 | */ |
||
105 | public function getBuilder() |
||
106 | { |
||
107 | return $this->query; |
||
108 | } |
||
109 | |||
110 | /** |
||
111 | * Sets builder. |
||
112 | * |
||
113 | * @param BuilderInterface $builder |
||
114 | */ |
||
115 | protected function setBuilder(BuilderInterface $builder) |
||
116 | { |
||
117 | $this->query = $builder; |
||
118 | } |
||
119 | |||
120 | /** |
||
121 | * Default properties for query. |
||
122 | * |
||
123 | * @param OptionsResolver $resolver |
||
124 | */ |
||
125 | protected function configureResolver(OptionsResolver $resolver) |
||
126 | { |
||
127 | $resolver |
||
128 | ->setDefaults( |
||
129 | ['bool_type' => BoolQuery::MUST] |
||
130 | ); |
||
131 | } |
||
132 | |||
133 | /** |
||
134 | * Returns true if query is bool. |
||
135 | * |
||
136 | * @return bool |
||
137 | */ |
||
138 | protected function isBool() |
||
142 | |||
143 | /** |
||
144 | * Returns bool instance for this endpoint case. |
||
145 | * |
||
146 | * @return BoolQuery |
||
147 | */ |
||
148 | protected function getBoolInstance() |
||
152 | |||
153 | /** |
||
154 | * Converts query to bool. |
||
155 | */ |
||
156 | private function convertToBool() |
||
166 | } |
||
167 |
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the interface: