-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStore.php
More file actions
81 lines (69 loc) · 1.55 KB
/
Store.php
File metadata and controls
81 lines (69 loc) · 1.55 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
<?php
namespace App\Task;
use App\Model\DatasetModel;
use App\Model\TaskModel;
use App\Service\ExecutionContext;
class Store extends TaskModel
{
public function __construct()
{
$this->type = 'storage';
$this->name = 'Store';
$this->description = 'Get or set a dataset';
parent::__construct();
}
public function getFields(): array
{
return [
'action' => [
'label' => 'Action',
'type' => 'select',
'default' => 'set',
'choices' => [
'set' => 'Set dataset',
'get' => 'Get dataset',
],
],
'dataset' => [
'label' => 'Dataset',
'type' => 'entity',
'entity' => 'dataset',
'actions' => [ 'edit', 'create' ],
],
'key' => [
'label' => 'Data key',
'type' => 'text', // @todo Column/Key selection field type.
],
];
}
function execute( array $config, ExecutionContext $context, $data )
{
if ( empty( $config['dataset'] ) ) {
$context->addError( 'No dataset selected' );
return $data;
}
$dataset = DatasetModel::get( $config['dataset'] );
if ( ! $dataset ) {
$context->addError( 'Dataset not found' );
return $data;
}
$key = $config['key'] ?? '';
$action = $config['action'] ?? false;
if ( 'get' === $action ) {
$value = $dataset->getData();
if ( $key ) {
$data[ $key ] = $value;
} else {
$data = $value;
}
} else {
$value = $data;
if ( $key ) {
$value = $value[ $key ] ?? null;
}
$dataset->setData( $value );
$dataset->persist( $context->getEntityManager(), true );
}
return $data;
}
}