forked from backdrop-contrib/entity_token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
entity_token.tokens.inc
340 lines (308 loc) · 12.7 KB
/
entity_token.tokens.inc
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
<?php
/**
* @file
* Provides tokens for entity properties which have no token yet.
*/
/**
* Defines the types of properties to be added as token.
*
* @return
* An array mapping token types to the usual (entity) type names.
*/
function entity_token_types() {
$return = entity_token_types_chained();
return $return + backdrop_map_assoc(array('text', 'integer', 'decimal', 'duration', 'boolean', 'uri'));
}
/**
* Defines a list of token types that need to be chained.
*
* @return
* If a (token) type is given, whether the given type needs to be chained.
* Else a full list of token types to be chained as returned by
* entity_token_token_types().
*/
function entity_token_types_chained($type = NULL) {
// This functions gets called rather often when replacing tokens, thus
// we statically cache $types using the advanced backdrop static pattern.
static $backdrop_static_fast;
if (!isset($backdrop_static_fast)) {
$backdrop_static_fast['types'] = &backdrop_static(__FUNCTION__, array());
}
$types = &$backdrop_static_fast['types'];
if (!$types) {
// Add entities.
foreach (entity_get_info() as $entity_type => $info) {
if ($token_type = isset($info['token type']) ? $info['token type'] : $entity_type) {
$types[$token_type] = $entity_type;
}
}
// Add 'date' and 'site' tokens.
$types['date'] = 'date';
$types['site'] = 'site';
// Add a 'struct' type.
$types['struct'] = 'struct';
}
if (isset($type)) {
return isset($types[$type]) || entity_plus_property_list_extract_type($type);
}
return $types;
}
/**
* Gets the right token type for a given property info array.
*/
function _entity_token_map_to_token_type($property_info) {
$lookup = &backdrop_static(__FUNCTION__);
if (!$lookup) {
// Initialize a lookup array mapping property types to token types.
$lookup = array_flip(entity_token_types());
}
$type = isset($property_info['type']) ? $property_info['type'] : 'text';
// Just use the type 'struct' for all structures.
if (!empty($property_info['property info'])) {
$type = 'struct';
}
if ($item_type = entity_plus_property_list_extract_type($type)) {
return isset($lookup[$item_type]) ? "list<$lookup[$item_type]>" : FALSE;
}
return isset($lookup[$type]) ? $lookup[$type] : FALSE;
}
/**
* Implements hook_token_info_alter().
*/
function entity_token_token_info_alter(&$info) {
$entity_info = entity_get_info();
$token_types = entity_token_types_chained();
// Loop over all chain-able token types, as those may contain further tokens,
// e.g. entity types or 'site'.
foreach ($token_types as $token_type => $type) {
// Just add all properties regardless whether it's in a bundle, but only if
// there is no token of the property yet.
foreach (entity_plus_get_all_property_info($type) as $name => $property) {
$property += array('type' => 'text', 'description' => $property['label']);
$property_token_type = _entity_token_map_to_token_type($property);
if (!isset($info['tokens'][$token_type][$name]) && $property_token_type) {
$info['tokens'][$token_type][$name] = array(
'name' => $property['label'],
'description' => $property['description'],
'type' => $property_token_type,
// Mark the token so we know we have to provide the value afterwards.
'entity-token' => TRUE,
);
}
if ($property_token_type == 'struct' && !empty($property['property info'])) {
$info['tokens'][$token_type][$name]['dynamic'] = TRUE;
$help = array();
foreach ($property['property info'] as $key => $property_info) {
$help[] = $key . ' (' . $property_info['label'] . ')';
}
$info['tokens'][$token_type][$name]['description'] .= ' ' . t('The following properties may be appended to the token: @keys',
array('@keys' => implode(', ', $help))
);
}
}
}
// Make sure all chain-able token types we support are registered.
foreach ($token_types as $token_type => $type) {
if (!empty($info['tokens'][$token_type]) && !isset($info['types'][$token_type])) {
if (isset($entity_info[$type])) {
$info['types'][$token_type] = array(
'name' => $entity_info[$type]['label'],
'description' => t('Tokens related to the "@name" entities.', array('@name' => $entity_info[$type]['label'])),
'needs-data' => $token_type,
);
}
else {
$info['types'][$token_type] = array(
'name' => backdrop_strtoupper($token_type),
'description' => t('@name tokens.', array('@name' => backdrop_strtoupper($token_type))),
'needs-data' => $token_type,
);
}
}
if (!empty($info['tokens'][$token_type]) && !isset($info['types']["list<$token_type>"]) && $token_type != 'site') {
if (isset($entity_info[$type])) {
$info['types']["list<$token_type>"] = array(
'name' => t('List of @entities', array('@entities' => isset($entity_info[$type]['plural label']) ? $entity_info[$type]['plural label'] : $entity_info[$type]['label'] . 's')),
'description' => t('Tokens related to the "@name" entities.', array('@name' => $entity_info[$type]['label'])),
'needs-data' => "list<$token_type>",
);
}
else {
$info['types']["list<$token_type>"] = array(
'name' => t('List of @type values', array('@type' => $token_type)),
'description' => t('Tokens for lists of @type values.', array('@type' => $token_type)),
'needs-data' => "list<$token_type>",
);
}
// Also add some basic token replacements for lists...
for ($i = 0; $i < 4; $i++) {
$info['tokens']["list<$token_type>"][$i] = array(
'name' => t('@type with delta @delta', array('@delta' => $i, '@type' => $info['types'][$token_type]['name'])),
'description' => t('The list item with delta @delta. Delta values start from 0 and are incremented by one per list item.', array('@delta' => $i)),
'type' => $token_type,
);
}
}
}
}
/**
* Implements hook_tokens().
*/
function entity_token_tokens($type, $tokens, array $data = array(), array $options = array()) {
$token_types = entity_token_types_chained();
$replacements = array();
if (isset($token_types[$type]) && (!empty($data[$type]) || $type == 'site')) {
$data += array($type => FALSE);
// Make use of token module's token cache if available.
$info = module_exists('token') ? token_get_info() : token_info();
foreach ($tokens as $name => $original) {
// Provide the token for all properties marked to stem from us.
if (!empty($info['tokens'][$type][$name]['entity-token']) || $type == 'struct') {
$wrapper = !isset($wrapper) ? _entity_token_wrap_data($type, $token_types[$type], $data[$type], $options) : $wrapper;
try {
if (isset($wrapper->$name)) {
$replacement = _entity_token_get_token($wrapper->$name, $options);
if (isset($replacement)) {
$replacements[$original] = $replacement;
}
}
}
catch (EntityMetadataWrapperException $e) {
// If tokens for not existing values are requested, just do nothing.
}
}
}
// Properly chain everything of a type marked as needs chaining.
$info['tokens'] += array($type => array());
foreach ($info['tokens'][$type] as $name => $token_info) {
if (!empty($token_info['entity-token']) && isset($token_info['type']) && entity_token_types_chained($token_info['type'])) {
if ($chained_tokens = token_find_with_prefix($tokens, $name)) {
$wrapper = !isset($wrapper) ? _entity_token_wrap_data($type, $token_types[$type], $data[$type], $options) : $wrapper;
try {
// Pass on 'struct' properties wrapped, else un-wrap the data.
$value = ($token_info['type'] == 'struct') ? $wrapper->$name : $wrapper->$name->value();
$replacements += token_generate($token_info['type'], $chained_tokens, array($token_info['type'] => $value), $options);
}
catch (EntityMetadataWrapperException $e) {
// If tokens for not existing values are requested, just do nothing.
}
}
}
}
}
// Add support for evaluating tokens for "list<type"> types.
elseif ($item_token_type = entity_plus_property_list_extract_type($type)) {
foreach ($tokens as $name => $original) {
// Care about getting entries of a list.
if (is_numeric($name)) {
$wrapper = !isset($wrapper) ? _entity_token_wrap_data($type, "list<$token_types[$item_token_type]>", $data[$type], $options) : $wrapper;
try {
$replacement = _entity_token_get_token($wrapper->get($name), $options);
if (isset($replacement)) {
$replacements[$original] = $replacement;
}
}
catch (EntityMetadataWrapperException $e) {
// If tokens for not existing values are requested, just do nothing.
}
}
// Care about generating chained tokens for list-items.
else {
$parts = explode(':', $name, 2);
$delta = $parts[0];
if (is_numeric($delta) && $chained_tokens = token_find_with_prefix($tokens, $delta)) {
$wrapper = !isset($wrapper) ? _entity_token_wrap_data($type, "list<$token_types[$item_token_type]>", $data[$type], $options) : $wrapper;
try {
$replacements += token_generate($item_token_type, $chained_tokens, array($item_token_type => $wrapper->get($delta)->value()), $options);
}
catch (EntityMetadataWrapperException $e) {
// If tokens for not existing values are requested, just do nothing.
}
}
}
}
}
// Add support for chaining struct data. As struct data has no registered
// tokens, we have to chain based upon wrapper property info.
if ($type == 'struct') {
$wrapper = $data[$type];
foreach ($wrapper as $name => $property) {
$token_type = _entity_token_map_to_token_type($property->info());
if (entity_token_types_chained($token_type) && $chained_tokens = token_find_with_prefix($tokens, $name)) {
try {
// Pass on 'struct' properties wrapped, else un-wrap the data.
$value = ($token_type == 'struct') ? $property : $property->value();
$replacements += token_generate($token_type, $chained_tokens, array($token_type => $value), $options);
}
catch (EntityMetadataWrapperException $e) {
// If tokens for not existing values are requested, just do nothing.
}
}
}
}
return $replacements;
}
/**
* Wraps the given data by correctly obeying the options.
*/
function _entity_token_wrap_data($token_type, $type, $data, $options) {
if ($type == 'site') {
$wrapper = entity_token_metadata_site_wrapper();
}
elseif ($type == 'struct') {
// 'struct' data items are passed on wrapped.
$wrapper = $data;
}
else {
$wrapper = entity_metadata_wrapper($type, $data);
}
if (isset($options['language']) && $wrapper instanceof EntityStructureWrapper) {
$wrapper->language($options['language']->language);
}
return $wrapper;
}
/**
* Gets the token replacement by correctly obeying the options.
*/
function _entity_token_get_token($wrapper, $options) {
if (!$wrapper || $wrapper->value() === NULL) {
// Do not provide a replacement if there is no value.
return NULL;
}
if (empty($options['sanitize'])) {
// When we don't need sanitized tokens decode already sanitizied texts.
$options['decode'] = TRUE;
}
$langcode = isset($options['language']) ? $options['language']->language : NULL;
// If there is a label for a property, e.g. defined by an options list or an
// entity label, make use of it.
if ($label = $wrapper->label()) {
return empty($options['sanitize']) ? $label : check_plain($label);
}
switch ($wrapper->type()) {
case 'integer':
return $wrapper->value();
case 'decimal':
return number_format($wrapper->value(), 2);
case 'date':
return format_date($wrapper->value(), 'medium', '', NULL, $langcode);
case 'duration':
return format_interval($wrapper->value(), 2, $langcode);
case 'boolean':
return $wrapper->value() ? t('true') : t('false');
case 'uri':
case 'text':
return $wrapper->value($options);
}
// Care for outputing list values.
if ($wrapper instanceof EntityListWrapper) {
$output = array();
foreach ($wrapper as $item) {
$output[] = _entity_token_get_token($item, $options);
}
return implode(', ', $output);
}
// Else we do not have a good string to output, e.g. for struct values. Just
// output the string representation of the wrapper.
return (string) $wrapper;
}