-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathRulesActionBase.php
More file actions
133 lines (116 loc) · 2.9 KB
/
RulesActionBase.php
File metadata and controls
133 lines (116 loc) · 2.9 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
<?php
namespace Drupal\rules\Core;
use Drupal\Component\Plugin\Exception\ContextException;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Plugin\ContextAwarePluginBase;
use Drupal\Core\Session\AccountInterface;
use Drupal\rules\Context\ContextProviderTrait;
/**
* Base class for rules actions.
*/
abstract class RulesActionBase extends ContextAwarePluginBase implements RulesActionInterface {
use ContextProviderTrait;
use ExecutablePluginTrait;
use ConfigurationAccessControlTrait;
/**
* The plugin configuration.
*
* @var array
*/
protected $configuration;
/**
* {@inheritdoc}
*/
public function getContextValue($name) {
try {
return parent::getContextValue($name);
}
catch (ContextException $e) {
// Catch the undocumented exception thrown when no context value is set
// for a required context.
// @todo: Remove once https://www.drupal.org/node/2677162 is fixed.
if (strpos($e->getMessage(), 'context is required') === FALSE) {
throw $e;
}
}
}
/**
* {@inheritdoc}
*/
public function refineContextDefinitions(array $selected_data) {
// Do not refine anything by default.
}
/**
* {@inheritdoc}
*/
public function assertMetadata(array $selected_data) {
// Nothing to assert by default.
return [];
}
/**
* {@inheritdoc}
*/
public function getConfiguration() {
return [
'id' => $this->getPluginId(),
] + $this->configuration;
}
/**
* {@inheritdoc}
*/
public function setConfiguration(array $configuration) {
$this->configuration = $configuration + $this->defaultConfiguration();
return $this;
}
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [];
}
/**
* {@inheritdoc}
*/
public function calculateDependencies() {
return [];
}
/**
* {@inheritdoc}
*/
public function executeMultiple(array $objects) {
// @todo: Remove this once it is removed from the interface.
}
/**
* {@inheritdoc}
*/
public function autoSaveContext() {
// Per default no context parameters will be auto saved.
return [];
}
/**
* {@inheritdoc}
*/
public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) {
// Just deny access per default for now.
if ($return_as_object) {
return AccessResult::forbidden();
}
return FALSE;
}
/**
* {@inheritdoc}
*/
public function execute() {
// Provide a reasonable default implementation that calls doExecute() while
// passing the defined context as arguments.
$args = [];
foreach ($this->getContextDefinitions() as $name => $definition) {
$value = $this->getContextValue($name);
if ($definition->isMultiple() && !is_array($value)) {
$value = [$value];
}
$args[$name] = $value;
}
call_user_func_array([$this, 'doExecute'], $args);
}
}