rules_admin.inc
16.2 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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
<?php
/**
* @file Rules Admin UI
* Implements rule management and configuration screens.
*/
/**
* Reaction rules overview.
*/
function rules_admin_reaction_overview($form, &$form_state, $base_path) {
RulesPluginUI::formDefaults($form, $form_state);
$conditions = array('plugin' => 'reaction rule', 'active' => TRUE);
$collapsed = TRUE;
if (empty($_GET['tag'])) {
$tag = 0;
}
else {
$tag = $_GET['tag'];
$conditions['tags'] = array($tag);
$collapsed = FALSE;
}
if (empty($_GET['event'])) {
$event = 0;
}
else {
$event = $_GET['event'];
// Filter using a wildcard suffix so configured event names with suffixes
// are found also.
$conditions['event'] = $event . '%';
$collapsed = FALSE;
}
$form['help'] = array(
'#type' => 'markup',
'#markup' => t('Reaction rules, listed below, react on selected events on the site. Each reaction rule may fire any number of <em>actions</em>, and may have any number of <em>conditions</em> that must be met for the actions to be executed. You can also set up <a href="@url1">components</a> – stand-alone sets of Rules configuration that can be used in Rules and other parts of your site. See <a href="@url2">the online documentation</a> for an introduction on how to use Rules.',
array('@url1' => url('admin/config/workflow/rules/components'),
'@url2' => rules_external_help('rules'))),
);
$form['filter'] = array(
'#type' => 'fieldset',
'#title' => t('Filter'),
'#collapsible' => TRUE,
);
$form['filter']['#id'] = 'rules-filter-form';
$form['filter']['#attached']['css'][] = drupal_get_path('module', 'rules') . '/ui/rules.ui.css';
$form['filter']['event'] = array(
'#type' => 'select',
'#title' => t('Filter by event'),
'#options' => array(0 => t('<All>')) + RulesPluginUI::getOptions('event'),
'#default_value' => $event,
);
$form['filter']['tag'] = array(
'#type' => 'select',
'#title' => t('Filter by tag'),
'#options' => array(0 => t('<All>')) + RulesPluginUI::getTags(),
'#default_value' => $tag,
);
$form['filter']['submit'] = array(
'#type' => 'submit',
'#value' => t('Filter'),
'#name' => '', // prevent from showing up in $_GET.
);
$options = array('show plugin' => FALSE, 'base path' => $base_path);
$form['active'] = rules_ui()->overviewTable($conditions, $options);
$form['active']['#caption'] = t('Active rules');
$form['active']['#empty'] = t('There are no active rules. <a href="!url">Add new rule</a>.', array('!url' => url('admin/config/workflow/rules/reaction/add')));
$conditions['active'] = FALSE;
$form['inactive'] = rules_ui()->overviewTable($conditions, $options);
$form['inactive']['#caption'] = t('Inactive rules');
$form['inactive']['#empty'] = t('There are no inactive rules.');
$form['filter']['#collapsed'] = $collapsed;
$form['#submit'][] = 'rules_form_submit_rebuild';
$form['#method'] = 'get';
return $form;
}
/**
* Components overview.
*/
function rules_admin_components_overview($form, &$form_state, $base_path) {
RulesPluginUI::formDefaults($form, $form_state);
$collapsed = TRUE;
if (empty($_GET['tag'])) {
$tag = 0;
}
else {
$tag = $_GET['tag'];
$conditions['tags'] = array($tag);
$collapsed = FALSE;
}
if (empty($_GET['plugin'])) {
// Get the plugin name usable as component.
$conditions['plugin'] = array_keys(rules_filter_array(rules_fetch_data('plugin_info'), 'component', TRUE));
$plugin = 0;
}
else {
$plugin = $_GET['plugin'];
$conditions['plugin'] = $plugin;
$collapsed = FALSE;
}
$form['help'] = array(
'#type' => 'markup',
'#markup' => t('Components are stand-alone sets of Rules configuration that can be used by Rules and other modules on your site. Components are for example useful if you want to use the same conditions, actions or rules in multiple places, or call them from your custom module. You may also export each component separately. See <a href="@url">the online documentation</a> for more information about how to use components.',
array('@url' => rules_external_help('components'))),
);
$form['filter'] = array(
'#type' => 'fieldset',
'#title' => t('Filter'),
'#collapsible' => TRUE,
);
$form['filter']['#id'] = 'rules-filter-form';
$form['filter']['#attached']['css'][] = drupal_get_path('module', 'rules') . '/ui/rules.ui.css';
$form['filter']['plugin'] = array(
'#type' => 'select',
'#title' => t('Filter by plugin'),
'#options' => array(0 => t('<All>')) + rules_admin_component_options(),
'#default_value' => $plugin,
);
$form['filter']['tag'] = array(
'#type' => 'select',
'#title' => t('Filter by tag'),
'#options' => array(0 => '<All>') + RulesPluginUI::getTags(),
'#default_value' => $tag,
);
$form['filter']['submit'] = array(
'#type' => 'submit',
'#value' => t('Filter'),
'#name' => '', // prevent from showing up in $_GET.
);
$form['table'] = RulesPluginUI::overviewTable($conditions, array('hide status op' => TRUE));
$form['table']['#empty'] = t('There are no rule components.');
$form['filter']['#collapsed'] = $collapsed;
$form['#submit'][] = 'rules_form_submit_rebuild';
$form['#method'] = 'get';
return $form;
}
/**
* Rules settings form.
*/
function rules_admin_settings($form, &$form_state) {
if (module_exists('path')) {
// Present a list of available path cleaning callbacks.
// @see rules_clean_path()
$options = array(
'rules_path_default_cleaning_method' => t('Rules (built in)'),
);
if (module_exists('ctools')) {
$options['rules_path_clean_ctools'] = t('CTools');
}
if (module_exists('pathauto')) {
$options['rules_path_clean_pathauto'] = t('Pathauto');
$pathauto_help = t("Note that Pathauto's URL path cleaning method can be configured at <a href='!url'>admin/config/search/path/settings</a>.", array('!url' => url('admin/config/search/path/settings')));
}
else {
$pathauto_help = t('Install the <a href="http://drupal.org/project/pathauto">Pathauto module</a> in order to get a configurable URL path cleaning method.');
}
$form['path']['rules_path_cleaning_callback'] = array(
'#type' => 'select',
'#title' => t('URL path cleaning method'),
'#description' => t('Choose the path cleaning method to be applied when generating URL path aliases.') . ' ' . $pathauto_help,
'#default_value' => variable_get('rules_path_cleaning_callback', 'rules_path_default_cleaning_method'),
'#options' => $options,
);
}
$form['rules_log_errors'] = array(
'#type' => 'radios',
'#title' => t('Logging of Rules evaluation errors'),
'#options' => array(
RulesLog::WARN => t('Log all warnings and errors'),
RulesLog::ERROR => t('Log errors only'),
),
'#default_value' => variable_get('rules_log_errors', RulesLog::WARN),
'#description' => t('Evaluations errors are logged to the system log.'),
);
$form['debug'] = array(
'#type' => 'fieldset',
'#title' => t('Debugging'),
);
$form['debug']['rules_debug_log'] = array(
'#type' => 'checkbox',
'#title' => t('Log debug information to the system log'),
'#default_value' => variable_get('rules_debug_log', 0),
);
$form['debug']['rules_debug'] = array(
'#type' => 'radios',
'#title' => t('Show debug information'),
'#default_value' => variable_get('rules_debug', 0),
'#options' => array(
0 => t('Never'),
RulesLog::WARN => t('In case of errors'),
RulesLog::INFO => t('Always'),
),
'#description' => t('Debug information is only shown when rules are evaluated and is visible for users having the permission <a href="!url">%link</a>.', array('%link' => t('Access the Rules debug log'), '!url' => url('admin/people/permissions', array('fragment' => 'module-rules')))),
);
$form['debug']['regions'] = array(
'#type' => 'container',
'#states' => array(
// Hide the regions settings when the debug log is disabled.
'invisible' => array(
'input[name="rules_debug"]' => array('value' => '0'),
),
),
);
$theme_default = variable_get('theme_default', 'bartik');
$admin_theme = variable_get('admin_theme', 'seven');
$form['debug']['regions']['rules_debug_region_' . $theme_default] = array(
'#type' => 'select',
'#title' => t('Default theme region'),
'#description' => t("The region, where the debug log should be displayed on the default theme %theme. For other themes, Rules will try to display the log on the same region, or hide it in case it doesn't exist.", array('%theme' => $theme_default)),
'#options' => system_region_list($theme_default, REGIONS_VISIBLE),
'#default_value' => variable_get('rules_debug_region_' . $theme_default, 'help'),
);
$form['debug']['regions']['rules_debug_region_' . $admin_theme] = array(
'#type' => 'select',
'#title' => t('Admin theme region'),
'#description' => t('The region, where the debug log should be displayed on the admin theme %theme.', array('%theme' => $admin_theme)),
'#options' => system_region_list($admin_theme, REGIONS_VISIBLE),
'#default_value' => variable_get('rules_debug_region_' . $admin_theme, 'help'),
);
if (db_table_exists('rules_rules')) {
drupal_set_message(t('There are left over rule configurations from a previous Rules 1.x installation. Proceed to the <a href="!url">upgrade page</a> to convert them and consult the README.txt for more details.', array('!url' => url('admin/config/workflow/rules/upgrade'))), 'warning');
}
return system_settings_form($form);
}
/**
* Advanced settings form.
*/
function rules_admin_settings_advanced($form, &$form_state) {
$form['integrity'] = array(
'#type' => 'fieldset',
'#title' => t('Integrity'),
'#description' => t('Rules checks the integrity of your configurations to discover and exclude broken configurations from evaluation.'),
);
$form['integrity']['start_integrity_check'] = array(
'#type' => 'submit',
'#value' => t('Recheck integrity'),
'#submit' => array('rules_admin_settings_integrity_check_submit'),
);
$form['cache'] = array(
'#type' => 'fieldset',
'#title' => t('Cache'),
'#description' => t('Rules caches information about available actions, conditions and data types. Additionally all components and reaction rules are cached for efficient evaluation.'),
);
$form['cache']['rebuild_rules_cache'] = array(
'#type' => 'submit',
'#value' => t("Rebuild Rules' cache"),
'#weight' => 2,
'#submit' => array('rules_admin_settings_cache_rebuild_submit'),
);
return $form;
}
/**
* Form submit callback to check the integrity of all configurations.
*/
function rules_admin_settings_integrity_check_submit($form, &$form_state) {
$start = microtime(TRUE);
$count = 0;
$rules_configs = rules_config_load_multiple(FALSE);
foreach ($rules_configs as $rules_config) {
rules_config_update_dirty_flag($rules_config, TRUE, TRUE);
if ($rules_config->dirty) {
$count++;
$variables = array('%label' => $rules_config->label(), '%name' => $rules_config->name, '@plugin' => $rules_config->plugin(), '!uri'=> url(RulesPluginUI::path($rules_config->name)));
drupal_set_message(t('The @plugin <a href="!uri">%label (%name)</a> fails the integrity check and cannot be executed.', $variables), 'error');
}
}
drupal_set_message(t('Integrity of %count configurations checked in %duration seconds. %count_failed broken configurations found.', array(
'%count' => count($rules_configs),
'%count_failed' => $count,
'%duration' => round(microtime(TRUE) - $start, 2),
)));
}
/**
* Form submit callback: Rebuild the Rules' cache.
*/
function rules_admin_settings_cache_rebuild_submit($form, &$form_state) {
$start = microtime(TRUE);
rules_clear_cache();
// Manually trigger cache rebuilding of all caches.
rules_get_cache();
_rules_rebuild_component_cache();
RulesEventSet::rebuildEventCache();
drupal_set_message(t('Rules cache rebuilt in %duration seconds.', array(
'%duration' => round(microtime(TRUE) - $start, 2),
)));
}
/**
* Add reaction rules form.
*/
function rules_admin_add_reaction_rule($form, &$form_state, $base_path) {
RulesPluginUI::formDefaults($form, $form_state);
$rules_config = isset($form_state['rules_config']) ? $form_state['rules_config'] : rules_reaction_rule();
$rules_config->form($form, $form_state, array('show settings' => TRUE, 'button' => TRUE));
$form['settings']['#collapsible'] = FALSE;
$form['settings']['#type'] = 'container';
$form['settings']['label']['#default_value'] = '';
// Hide the rule elements stuff for now.
foreach (array('elements', 'conditions', 'add', 'events') as $key) {
$form[$key]['#access'] = FALSE;
}
foreach (array('active', 'weight') as $key) {
$form['settings'][$key]['#access'] = FALSE;
}
// Incorporate the form to add the first event.
$form['settings'] += rules_ui_add_event(array(), $form_state, $rules_config, $base_path);
$form['settings']['event']['#tree'] = FALSE;
$form['settings']['event_settings']['#tree'] = FALSE;
unset($form['settings']['help']);
unset($form['settings']['submit']);
$form['submit']['#value'] = t('Save');
$form_state += array('rules_config' => $rules_config);
$form['#validate'][] = 'rules_ui_add_reaction_rule_validate';
$form['#validate'][] = 'rules_ui_edit_element_validate';
$form['#submit'][] = 'rules_ui_add_reaction_rule_submit';
return $form;
}
/**
* Form validation callback.
*/
function rules_ui_add_reaction_rule_validate(&$form, &$form_state) {
rules_ui_add_event_validate($form['settings'], $form_state);
}
/**
* Form submit callback.
*/
function rules_ui_add_reaction_rule_submit(&$form, &$form_state) {
rules_ui_add_event_apply($form['settings'], $form_state);
rules_ui_edit_element_submit($form, $form_state);
}
/**
* Add component form.
*/
function rules_admin_add_component($form, &$form_state, $base_path) {
RulesPluginUI::$basePath = $base_path;
RulesPluginUI::formDefaults($form, $form_state);
$form['plugin_name'] = array(
'#type' => 'select',
'#title' => t('Component plugin'),
'#options' => rules_admin_component_options(),
'#description' => t('Choose which kind of component to create. Each component type is described in <a href="@url">the online documentation</a>.',
array('@url' => rules_external_help('component-types'))),
'#weight' => -2,
'#default_value' => isset($form_state['values']['plugin_name']) ? $form_state['values']['plugin_name'] : '',
);
if (!isset($form_state['rules_config'])) {
$form['continue'] = array(
'#type' => 'submit',
'#name' => 'continue',
'#submit' => array('rules_admin_add_component_create_submit'),
'#value' => t('Continue'),
);
}
else {
$form['plugin_name']['#disabled'] = TRUE;
$form_state['rules_config']->form($form, $form_state, array('show settings' => TRUE, 'button' => TRUE, 'init' => TRUE));
$form['settings']['#collapsible'] = FALSE;
$form['settings']['#type'] = 'container';
$form['settings']['label']['#default_value'] = '';
$form['settings']['#weight'] = -1;
// Hide the rule elements stuff for now.
foreach (array('elements', 'negate') as $key) {
$form[$key]['#access'] = FALSE;
}
foreach (array('active', 'weight') as $key) {
$form['settings'][$key]['#access'] = FALSE;
}
}
return $form;
}
function rules_admin_component_options() {
$cache = rules_get_cache();
return rules_extract_property(rules_filter_array($cache['plugin_info'], 'component', TRUE), 'label');
}
/**
* Submit callback that creates the new component object initially.
*/
function rules_admin_add_component_create_submit($form, &$form_state) {
$form_state['rules_config'] = rules_plugin_factory($form_state['values']['plugin_name']);
$form_state['rebuild'] = TRUE;
}
/**
* Validation callback for adding a component.
*/
function rules_admin_add_component_validate($form, &$form_state) {
if (isset($form_state['rules_config'])) {
$form_state['rules_config']->form_validate($form, $form_state);
}
}
/**
* Final submit callback for adding a component.
*/
function rules_admin_add_component_submit($form, &$form_state) {
$rules_config = $form_state['rules_config'];
$rules_config->form_submit($form, $form_state);
drupal_set_message(t('Your changes have been saved.'));
$form_state['redirect'] = RulesPluginUI::path($rules_config->name);
}