-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSet.php
More file actions
237 lines (209 loc) · 6.3 KB
/
Set.php
File metadata and controls
237 lines (209 loc) · 6.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<?php
namespace SyncEngine\Task;
use SyncEngine\Model\ColumnModel;
use SyncEngine\Model\TaskModel;
use SyncEngine\Service\ConditionsValidator;
use SyncEngine\Service\ExecuteContext;
use SyncEngine\Service\ExecuteData;
use SyncEngine\Service\SchemaConverter;
use SyncEngine\Structure\Data\ConfigData;
use SyncEngine\Structure\Data\ResourceData;
use SyncEngine\Structure\Data\SchemaData;
use SyncEngine\Task\Type\ModifierTaskType;
class Set extends TaskModel
{
public function __construct()
{
parent::__construct();
$this->type = ModifierTaskType::TYPE;
$this->icon = 'task-set';
$this->name = $this->trans( 'Set' );
$this->description = $this->trans( 'Set your own values' );
}
public function getFields(): array
{
return [
/*'override' => [
'label' => $this->trans( 'Override existing' ),
'type' => 'switch',
],*/
'key' => [
'label' => $this->trans( 'Key / Column name' ),
'help' => [
$this->trans( 'The data column key name for the values that needs to be set' ),
$this->trans( 'Nested keys are supported: {example}', [ 'example' => 'key.nested_key', ] ),
$this->trans( 'Leave empty for root' ),
],
'type' => 'text',
'taggable' => true,
],
'reorder' => [
'label' => $this->trans( 'Reorder data?' ),
'help' => $this->trans(
'This will append all configured columns at the end of the current data.'
),
'type' => 'switch',
],
'force' => [
'label' => $this->trans( 'Force if invalid?' ),
'help' => [
$this->trans(
'When existing data is scalar, create new data collection from values set in this task.'
),
$this->trans( 'You can still reference the original value through the {{ data|String }} tag.' ),
],
'type' => 'switch',
],
'set' => [
'label' => $this->trans( 'Set method' ),
'type' => 'select',
'default' => 'params',
'choices' => [
'params' => $this->trans( 'Set column values' ),
'schema' => $this->trans( 'Set schema' ),
'both' => $this->trans( 'Set both' ),
],
],
'schema' => [
'label' => [
'icon' => 'schema',
'text' => $this->trans( 'Schema' ),
],
'conditions' => [
'set' => [ 'schema', 'both' ],
],
'type' => 'entity',
'entity' => 'storage',
'query' => [ 'where' => [ 'type' => 'schema' ] ],
'actions' => [ 'edit', 'create' ],
'fields' => [
'strict' => [
'label' => $this->trans( 'Remove columns not defined in schema?' ),
'type' => 'switch',
],
],
],
'params' => [
'label' => '',
'type' => 'grid',
'taggable' => true,
'sortable' => true,
'conditions' => [
'set' => [ 'params', 'both' ],
],
'columns' => [
'key' => $this->trans( 'Column key/name' ),
'value' => [
'header' => $this->trans( 'Value' ),
'customizable' => true,
'selectLabel' => $this->trans( '-- Unchanged --' ),
'help' => $this->trans(
'Use {wildcard} to insert the current value.',
[ 'wildcard' => '{*value*}' ]
),
'choices' => [
'{*unset*}' => $this->trans( 'Unset' ),
'{*null*}' => $this->trans( 'Null' ),
],
],
'column' => [
'label' => $this->trans( 'Column Type' ),
'type' => 'column',
],
],
],
];
}
public function execute( ConfigData $config, ExecuteContext $context, ExecuteData $data ): ExecuteData
{
$key = $config['key'] ?? null;
$set = $config['set'] ?? 'params';
$schema = $config['schema'] ?? [];
$params = $config['params'] ?? [];
$reorder = ! empty( $config['reorder'] );
$force = ! empty( $config['force'] );
$resource = $data->get( $key );
if ( 'schema' === $set || 'both' === $set ) {
$schema = SchemaData::fromStorage( $schema );
if ( ! empty( $config['strict'] ) ) {
$columns = $schema->getColumnNames();
foreach ( $resource as $column => $value ) {
if ( ! in_array( $column, $columns ) ) {
unset( $resource[ $column ] );
}
}
}
$resource = ( new SchemaConverter( $schema ) )->convert( $resource );
}
if ( 'params' === $set || 'both' === $set ) {
$resource = $this->_executeParams( $params, $context, $resource, $reorder, $force );
}
$data->set( $resource, $key );
return $data;
}
protected function _executeParams( iterable $params, ExecuteContext $context, mixed $resource, $reorder = false, $force = false ): mixed
{
if ( ! is_iterable( $resource ) ) {
if ( $force ) {
$resource = new ResourceData();
} else {
if ( null === $resource ) {
$context->addError( $this->trans( 'Data key not found' ) );
} else {
$context->addError( $this->trans( 'Data is not iterable' ) );
}
return $resource;
}
}
if ( empty( $params ) ) {
$context->addError( $this->trans( 'No set params configured' ) );
return $resource;
}
if ( ! $resource instanceof ResourceData ) {
$resource = ResourceData::create( $resource );
}
/**
* Convert to iterable and place the raw value as key.
*
* @todo Opt-in?
*/
if ( $resource instanceof ExecuteData && $resource->isRaw() ) {
$resource = new ExecuteData( [ 'raw' => $resource->get() ] );
}
foreach ( $params as $row ) {
if ( ! isset( $row['key'] ) ) {
continue;
}
$key = $row['key'];
$value = $row['value'] ?? null;
if ( '{*unset*}' === $value ) {
unset( $resource[ $key ] );
continue;
}
if ( '{*null*}' === $value ) {
$value = null;
} else {
$current = $resource[ $key ] ?? null;
// @todo Improve null validation for current value?
if ( ConditionsValidator::isEmptyValue( $value ) && null !== $current ) {
$value = $current;
} elseif ( is_string( $value ) && str_contains( $value, '{*value*}' ) ) {
$value = str_replace( '{*value*}', (string) $current, $value );
}
}
if ( $value instanceof ResourceData ) {
$value = $value->get();
}
$columnConfig = $row['column'] ?? '';
if ( ! empty( $columnConfig['_class'] ) ) {
$value = ColumnModel::get( $columnConfig['_class'] )?->format( $value, $columnConfig );
}
if ( $reorder ) {
// Unset current value so the new value will be appended.
unset( $resource[ $key ] );
}
$resource[ $key ] = $value;
}
return $resource->get();
}
}