1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Copyright 2021 Aleksandar Panic |
4
|
|
|
* |
5
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
6
|
|
|
* you may not use this file except in compliance with the License. |
7
|
|
|
* You may obtain a copy of the License at |
8
|
|
|
* |
9
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0 |
10
|
|
|
* |
11
|
|
|
* Unless required by applicable law or agreed to in writing, software |
12
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, |
13
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
14
|
|
|
* See the License for the specific language governing permissions and |
15
|
|
|
* limitations under the License. |
16
|
|
|
*/ |
17
|
|
|
|
18
|
|
|
namespace ArekX\PQL\Drivers\MySql\Builder\Builders; |
19
|
|
|
|
20
|
|
|
use ArekX\PQL\Drivers\MySql\Builder\MySqlQueryBuilderState; |
21
|
|
|
|
22
|
|
|
class RawBuilder extends QueryPartBuilder |
23
|
|
|
{ |
24
|
7 |
|
protected function getInitialParts(): array |
25
|
|
|
{ |
26
|
7 |
|
return []; |
27
|
|
|
} |
28
|
|
|
|
29
|
7 |
|
protected function getRequiredParts(): array |
30
|
|
|
{ |
31
|
7 |
|
return ['query']; |
32
|
|
|
} |
33
|
|
|
|
34
|
7 |
|
protected function getPartBuilders(): array |
35
|
|
|
{ |
36
|
|
|
return [ |
37
|
7 |
|
'query' => fn($part) => $part, |
38
|
7 |
|
'params' => fn($part, MySqlQueryBuilderState $state) => $this->mergeParams($part, $state) |
39
|
7 |
|
]; |
40
|
|
|
} |
41
|
|
|
|
42
|
2 |
|
protected function mergeParams($part, MySqlQueryBuilderState $state) |
43
|
|
|
{ |
44
|
2 |
|
$paramsBuilder = $state->getParamsBuilder(); |
45
|
|
|
|
46
|
2 |
|
foreach ($part as $key => $value) { |
47
|
2 |
|
$type = null; |
48
|
2 |
|
$paramValue = $value; |
49
|
|
|
|
50
|
2 |
|
if (is_array($value)) { |
51
|
1 |
|
[$paramValue, $type] = $value; |
52
|
|
|
} |
53
|
|
|
|
54
|
2 |
|
$paramsBuilder->add($key, $paramValue, $type); |
55
|
|
|
} |
56
|
|
|
} |
57
|
|
|
} |