|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
declare(strict_types=1); |
|
4
|
|
|
|
|
5
|
|
|
namespace MartinGeorgiev\Doctrine\ORM\Query\AST\Functions; |
|
6
|
|
|
|
|
7
|
|
|
use Doctrine\ORM\Query\AST\Node; |
|
8
|
|
|
use MartinGeorgiev\Doctrine\ORM\Query\AST\Functions\Traits\BooleanValidationTrait; |
|
9
|
|
|
|
|
10
|
|
|
/** |
|
11
|
|
|
* Implementation of PostgreSQL JSONB_SET(). |
|
12
|
|
|
* |
|
13
|
|
|
* Returns the target jsonb with the section designated by path replaced by the new value, |
|
14
|
|
|
* or with the new value added if create_missing is true (default is true) and the item |
|
15
|
|
|
* designated by path does not exist. |
|
16
|
|
|
* |
|
17
|
|
|
* As with the path orientated operators, negative integers that appear in path count from the end |
|
18
|
|
|
* of JSON arrays. |
|
19
|
|
|
* |
|
20
|
|
|
* @see https://www.postgresql.org/docs/16/functions-json.html |
|
21
|
|
|
* @since 0.10 |
|
22
|
|
|
* |
|
23
|
|
|
* @author Martin Georgiev <[email protected]> |
|
24
|
|
|
* |
|
25
|
|
|
* @example Using it in DQL with path and value: "SELECT JSONB_SET(e.jsonbData, '{address,city}', '\"Sofia\"') FROM Entity e" |
|
26
|
|
|
* @example Using it in DQL with create_if_missing flag: "SELECT JSONB_SET(e.jsonbData, '{address,city}', '\"Sofia\"', false) FROM Entity e" |
|
27
|
|
|
*/ |
|
28
|
|
|
class JsonbSet extends BaseVariadicFunction |
|
29
|
|
|
{ |
|
30
|
|
|
use BooleanValidationTrait; |
|
|
|
|
|
|
31
|
|
|
|
|
32
|
4 |
|
protected function getNodeMappingPattern(): array |
|
33
|
|
|
{ |
|
34
|
4 |
|
return ['StringPrimary']; |
|
35
|
|
|
} |
|
36
|
|
|
|
|
37
|
4 |
|
protected function getFunctionName(): string |
|
38
|
|
|
{ |
|
39
|
4 |
|
return 'jsonb_set'; |
|
40
|
|
|
} |
|
41
|
|
|
|
|
42
|
4 |
|
protected function getMinArgumentCount(): int |
|
43
|
|
|
{ |
|
44
|
4 |
|
return 3; |
|
45
|
|
|
} |
|
46
|
|
|
|
|
47
|
4 |
|
protected function getMaxArgumentCount(): int |
|
48
|
|
|
{ |
|
49
|
4 |
|
return 4; |
|
50
|
|
|
} |
|
51
|
|
|
|
|
52
|
3 |
|
protected function validateArguments(Node ...$arguments): void |
|
53
|
|
|
{ |
|
54
|
3 |
|
parent::validateArguments(...$arguments); |
|
55
|
|
|
|
|
56
|
|
|
// Validate that the fourth parameter is a valid boolean if provided |
|
57
|
2 |
|
if (\count($arguments) === 4) { |
|
58
|
2 |
|
$this->validateBoolean($arguments[3], $this->getFunctionName()); |
|
59
|
|
|
} |
|
60
|
|
|
} |
|
61
|
|
|
} |
|
62
|
|
|
|