-
Notifications
You must be signed in to change notification settings - Fork 0
/
event.api.php
503 lines (483 loc) · 20.2 KB
/
event.api.php
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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
<?php
/**
* @file
* Hooks specific to the Event module.
*/
use Drupal\event\EventInterface;
use Drupal\Component\Utility\Html;
use Drupal\Component\Utility\Xss;
use Drupal\Core\Access\AccessResult;
/**
* @addtogroup hooks
* @{
*/
/**
* Inform the event access system what permissions the user has.
*
* This hook is for implementation by event access modules. In this hook,
* the module grants a user different "grant IDs" within one or more
* "realms". In hook_event_access_records(), the realms and grant IDs are
* associated with permission to view, edit, and delete individual events.
*
* The realms and grant IDs can be arbitrarily defined by your event access
* module; it is common to use role IDs as grant IDs, but that is not required.
* Your module could instead maintain its own list of users, where each list has
* an ID. In that case, the return value of this hook would be an array of the
* list IDs that this user is a member of.
*
* A event access module may implement as many realms as necessary to properly
* define the access privileges for the events. Note that the system makes no
* distinction between published and unpublished events. It is the module's
* responsibility to provide appropriate realms to limit access to unpublished
* content.
*
* Event access records are stored in the {event_access} table and define which
* grants are required to access a event. There is a special case for the view
* operation -- a record with event ID 0 corresponds to a "view all" grant for
* the realm and grant ID of that record. If there are no event access modules
* enabled, the core event module adds a event ID 0 record for realm 'all'. Event
* access modules can also grant "view all" permission on their custom realms;
* for example, a module could create a record in {event_access} with:
* @code
* $record = array(
* 'eid' => 0,
* 'gid' => 888,
* 'realm' => 'example_realm',
* 'grant_view' => 1,
* 'grant_update' => 0,
* 'grant_delete' => 0,
* );
* db_insert('event_access')->fields($record)->execute();
* @endcode
* And then in its hook_event_grants() implementation, it would need to return:
* @code
* if ($op == 'view') {
* $grants['example_realm'] = array(888);
* }
* @endcode
* If you decide to do this, be aware that the event_access_rebuild() function
* will erase any event ID 0 entry when it is called, so you will need to make
* sure to restore your {event_access} record after event_access_rebuild() is
* called.
*
* For a detailed example, see event_access_example.module.
*
* @param \Drupal\Core\Session\AccountInterface $account
* The account object whose grants are requested.
* @param string $op
* The event operation to be performed, such as 'view', 'update', or 'delete'.
*
* @return array
* An array whose keys are "realms" of grants, and whose values are arrays of
* the grant IDs within this realm that this user is being granted.
*
* @see event_access_view_all_events()
* @see event_access_rebuild()
* @ingroup event_access
*/
function hook_event_grants(\Drupal\Core\Session\AccountInterface $account, $op) {
if ($account->hasPermission('access private content')) {
$grants['example'] = [1];
}
if ($account->id()) {
$grants['example_author'] = [$account->id()];
}
return $grants;
}
/**
* Set permissions for a event to be written to the database.
*
* When a event is saved, a module implementing hook_event_access_records() will
* be asked if it is interested in the access permissions for a event. If it is
* interested, it must respond with an array of permissions arrays for that
* event.
*
* Event access grants apply regardless of the published or unpublished status
* of the event. Implementations must make sure not to grant access to
* unpublished events if they don't want to change the standard access control
* behavior. Your module may need to create a separate access realm to handle
* access to unpublished events.
*
* Note that the grant values in the return value from your hook must be
* integers and not boolean TRUE and FALSE.
*
* Each permissions item in the array is an array with the following elements:
* - 'realm': The name of a realm that the module has defined in
* hook_event_grants().
* - 'gid': A 'grant ID' from hook_event_grants().
* - 'grant_view': If set to 1 a user that has been identified as a member
* of this gid within this realm can view this event. This should usually be
* set to $event->isPublished(). Failure to do so may expose unpublished content
* to some users.
* - 'grant_update': If set to 1 a user that has been identified as a member
* of this gid within this realm can edit this event.
* - 'grant_delete': If set to 1 a user that has been identified as a member
* of this gid within this realm can delete this event.
* - langcode: (optional) The language code of a specific translation of the
* event, if any. Modules may add this key to grant different access to
* different translations of a event, such that (e.g.) a particular group is
* granted access to edit the Catalan version of the event, but not the
* Hungarian version. If no value is provided, the langcode is set
* automatically from the $event parameter and the event's original language (if
* specified) is used as a fallback. Only specify multiple grant records with
* different languages for a event if the site has those languages configured.
*
* A "deny all" grant may be used to deny all access to a particular event or
* event translation:
* @code
* $grants[] = array(
* 'realm' => 'all',
* 'gid' => 0,
* 'grant_view' => 0,
* 'grant_update' => 0,
* 'grant_delete' => 0,
* 'langcode' => 'ca',
* );
* @endcode
* Note that another module event access module could override this by granting
* access to one or more events, since grants are additive. To enforce that
* access is denied in a particular case, use hook_event_access_records_alter().
* Also note that a deny all is not written to the database; denies are
* implicit.
*
* @param \Drupal\event\EventInterface $event
* The event that has just been saved.
*
* @return
* An array of grants as defined above.
*
* @see hook_event_access_records_alter()
* @ingroup event_access
*/
function hook_event_access_records(\Drupal\event\EventInterface $event) {
// We only care about the event if it has been marked private. If not, it is
// treated just like any other event and we completely ignore it.
if ($event->private->value) {
$grants = [];
// Only published Catalan translations of private events should be viewable
// to all users. If we fail to check $event->isPublished(), all users would be able
// to view an unpublished event.
if ($event->isPublished()) {
$grants[] = [
'realm' => 'example',
'gid' => 1,
'grant_view' => 1,
'grant_update' => 0,
'grant_delete' => 0,
'langcode' => 'ca'
];
}
// For the example_author array, the GID is equivalent to a UID, which
// means there are many groups of just 1 user.
// Note that an author can always view his or her events, even if they
// have status unpublished.
if ($event->getOwnerId()) {
$grants[] = [
'realm' => 'example_author',
'gid' => $event->getOwnerId(),
'grant_view' => 1,
'grant_update' => 1,
'grant_delete' => 1,
'langcode' => 'ca'
];
}
return $grants;
}
}
/**
* Alter permissions for a event before it is written to the database.
*
* Event access modules establish rules for user access to content. Event access
* records are stored in the {event_access} table and define which permissions
* are required to access a event. This hook is invoked after event access modules
* returned their requirements via hook_event_access_records(); doing so allows
* modules to modify the $grants array by reference before it is stored, so
* custom or advanced business logic can be applied.
*
* Upon viewing, editing or deleting a event, hook_event_grants() builds a
* permissions array that is compared against the stored access records. The
* user must have one or more matching permissions in order to complete the
* requested operation.
*
* A module may deny all access to a event by setting $grants to an empty array.
*
* The preferred use of this hook is in a module that bridges multiple event
* access modules with a configurable behavior, as shown in the example with the
* 'is_preview' field.
*
* @param array $grants
* The $grants array returned by hook_event_access_records().
* @param \Drupal\event\EventInterface $event
* The event for which the grants were acquired.
*
* @see hook_event_access_records()
* @see hook_event_grants()
* @see hook_event_grants_alter()
* @ingroup event_access
*/
function hook_event_access_records_alter(&$grants, Drupal\event\EventInterface $event) {
// Our module allows editors to mark specific articles with the 'is_preview'
// field. If the event being saved has a TRUE value for that field, then only
// our grants are retained, and other grants are removed. Doing so ensures
// that our rules are enforced no matter what priority other grants are given.
if ($event->is_preview) {
// Our module grants are set in $grants['example'].
$temp = $grants['example'];
// Now remove all module grants but our own.
$grants = ['example' => $temp];
}
}
/**
* Alter user access rules when trying to view, edit or delete a event.
*
* Event access modules establish rules for user access to content.
* hook_event_grants() defines permissions for a user to view, edit or delete
* events by building a $grants array that indicates the permissions assigned to
* the user by each event access module. This hook is called to allow modules to
* modify the $grants array by reference, so the interaction of multiple event
* access modules can be altered or advanced business logic can be applied.
*
* The resulting grants are then checked against the records stored in the
* {event_access} table to determine if the operation may be completed.
*
* A module may deny all access to a user by setting $grants to an empty array.
*
* Developers may use this hook to either add additional grants to a user or to
* remove existing grants. These rules are typically based on either the
* permissions assigned to a user role, or specific attributes of a user
* account.
*
* @param array $grants
* The $grants array returned by hook_event_grants().
* @param \Drupal\Core\Session\AccountInterface $account
* The account requesting access to content.
* @param string $op
* The operation being performed, 'view', 'update' or 'delete'.
*
* @see hook_event_grants()
* @see hook_event_access_records()
* @see hook_event_access_records_alter()
* @ingroup event_access
*/
function hook_event_grants_alter(&$grants, \Drupal\Core\Session\AccountInterface $account, $op) {
// Our sample module never allows certain roles to edit or delete
// content. Since some other event access modules might allow this
// permission, we expressly remove it by returning an empty $grants
// array for roles specified in our variable setting.
// Get our list of banned roles.
$restricted = \Drupal::config('example.settings')->get('restricted_roles');
if ($op != 'view' && !empty($restricted)) {
// Now check the roles for this account against the restrictions.
foreach ($account->getRoles() as $rid) {
if (in_array($rid, $restricted)) {
$grants = [];
}
}
}
}
/**
* Controls access to a event.
*
* Modules may implement this hook if they want to have a say in whether or not
* a given user has access to perform a given operation on a event.
*
* The administrative account (user ID #1) always passes any access check, so
* this hook is not called in that case. Users with the "bypass event access"
* permission may always view and edit content through the administrative
* interface.
*
* Note that not all modules will want to influence access on all event types. If
* your module does not want to explicitly allow or forbid access, return an
* AccessResultInterface object with neither isAllowed() nor isForbidden()
* equaling TRUE. Blindly returning an object with isForbidden() equaling TRUE
* will break other event access modules.
*
* Also note that this function isn't called for event listings (e.g., RSS feeds,
* the default home page at path 'event', a recent content block, etc.) See
* @link event_access Event access rights @endlink for a full explanation.
*
* @param \Drupal\event\EventInterface|string $event
* Either a event entity or the machine name of the content type on which to
* perform the access check.
* @param string $op
* The operation to be performed. Possible values:
* - "create"
* - "delete"
* - "update"
* - "view"
* @param \Drupal\Core\Session\AccountInterface $account
* The user object to perform the access check operation on.
*
* @return \Drupal\Core\Access\AccessResultInterface
* The access result.
*
* @ingroup event_access
*/
function hook_event_access(\Drupal\event\EventInterface $event, $op, \Drupal\Core\Session\AccountInterface $account) {
$type = $event->bundle();
switch ($op) {
case 'create':
return AccessResult::allowedIfHasPermission($account, 'create ' . $type . ' content');
case 'update':
if ($account->hasPermission('edit any ' . $type . ' content', $account)) {
return AccessResult::allowed()->cachePerPermissions();
}
else {
return AccessResult::allowedIf($account->hasPermission('edit own ' . $type . ' content', $account) && ($account->id() == $event->getOwnerId()))->cachePerPermissions()->cachePerUser()->addCacheableDependency($event);
}
case 'delete':
if ($account->hasPermission('delete any ' . $type . ' content', $account)) {
return AccessResult::allowed()->cachePerPermissions();
}
else {
return AccessResult::allowedIf($account->hasPermission('delete own ' . $type . ' content', $account) && ($account->id() == $event->getOwnerId()))->cachePerPermissions()->cachePerUser()->addCacheableDependency($event);
}
default:
// No opinion.
return AccessResult::neutral();
}
}
/**
* Act on a event being displayed as a search result.
*
* This hook is invoked from the event search plugin during search execution,
* after loading and rendering the event.
*
* @param \Drupal\event\EventInterface $event
* The event being displayed in a search result.
*
* @return array
* Extra information to be displayed with search result. This information
* should be presented as an associative array. It will be concatenated with
* the post information (last updated, author) in the default search result
* theming.
*
* @see template_preprocess_search_result()
* @see search-result.html.twig
*
* @ingroup entity_crud
*/
function hook_event_search_result(\Drupal\event\EventInterface $event) {
$rating = db_query('SELECT SUM(points) FROM {my_rating} WHERE eid = :eid', ['eid' => $event->id()])->fetchField();
return ['rating' => \Drupal::translation()->formatPlural($rating, '1 point', '@count points')];
}
/**
* Act on a event being indexed for searching.
*
* This hook is invoked during search indexing, after loading, and after the
* result of rendering is added as $event->rendered to the event object.
*
* @param \Drupal\event\EventInterface $event
* The event being indexed.
*
* @return string
* Additional event information to be indexed.
*
* @ingroup entity_crud
*/
function hook_event_update_index(\Drupal\event\EventInterface $event) {
$text = '';
$ratings = db_query('SELECT title, description FROM {my_ratings} WHERE eid = :eid', [':eid' => $event->id()]);
foreach ($ratings as $rating) {
$text .= '<h2>' . Html::escape($rating->title) . '</h2>' . Xss::filter($rating->description);
}
return $text;
}
/**
* Provide additional methods of scoring for core search results for events.
*
* A event's search score is used to rank it among other events matched by the
* search, with the highest-ranked events appearing first in the search listing.
*
* For example, a module allowing users to vote on content could expose an
* option to allow search results' rankings to be influenced by the average
* voting score of a event.
*
* All scoring mechanisms are provided as options to site administrators, and
* may be tweaked based on individual sites or disabled altogether if they do
* not make sense. Individual scoring mechanisms, if enabled, are assigned a
* weight from 1 to 10. The weight represents the factor of magnification of
* the ranking mechanism, with higher-weighted ranking mechanisms having more
* influence. In order for the weight system to work, each scoring mechanism
* must return a value between 0 and 1 for every event. That value is then
* multiplied by the administrator-assigned weight for the ranking mechanism,
* and then the weighted scores from all ranking mechanisms are added, which
* brings about the same result as a weighted average.
*
* @return array
* An associative array of ranking data. The keys should be strings,
* corresponding to the internal name of the ranking mechanism, such as
* 'recent', or 'comments'. The values should be arrays themselves, with the
* following keys available:
* - title: (required) The human readable name of the ranking mechanism.
* - join: (optional) An array with information to join any additional
* necessary table. This is not necessary if the table required is already
* joined to by the base query, such as for the {event} table. Other tables
* should use the full table name as an alias to avoid naming collisions.
* - score: (required) The part of a query string to calculate the score for
* the ranking mechanism based on values in the database. This does not need
* to be wrapped in parentheses, as it will be done automatically; it also
* does not need to take the weighted system into account, as it will be
* done automatically. It does, however, need to calculate a decimal between
* 0 and 1; be careful not to cast the entire score to an integer by
* inadvertently introducing a variable argument.
* - arguments: (optional) If any arguments are required for the score, they
* can be specified in an array here.
*
* @ingroup entity_crud
*/
function hook_ranking() {
// If voting is disabled, we can avoid returning the array, no hard feelings.
if (\Drupal::config('vote.settings')->get('event_enabled')) {
return [
'vote_average' => [
'title' => t('Average vote'),
// Note that we use i.sid, the search index's search item id, rather than
// n.eid.
'join' => [
'type' => 'LEFT',
'table' => 'vote_event_data',
'alias' => 'vote_event_data',
'on' => 'vote_event_data.eid = i.sid',
],
// The highest possible score should be 1, and the lowest possible score,
// always 0, should be 0.
'score' => 'vote_event_data.average / CAST(%f AS DECIMAL)',
// Pass in the highest possible voting score as a decimal argument.
'arguments' => [\Drupal::config('vote.settings')->get('score_max')],
],
];
}
}
/**
* Alter the links of a event.
*
* @param array &$links
* A renderable array representing the event links.
* @param \Drupal\event\EventInterface $entity
* The event being rendered.
* @param array &$context
* Various aspects of the context in which the event links are going to be
* displayed, with the following keys:
* - 'view_mode': the view mode in which the event is being viewed
* - 'langcode': the language in which the event is being viewed
*
* @see \Drupal\event\EventViewBuilder::renderLinks()
* @see \Drupal\event\EventViewBuilder::buildLinks()
* @see entity_crud
*/
function hook_event_links_alter(array &$links, EventInterface $entity, array &$context) {
$links['mymodule'] = [
'#theme' => 'links__event__mymodule',
'#attributes' => ['class' => ['links', 'inline']],
'#links' => [
'event-report' => [
'title' => t('Report'),
'url' => Url::fromRoute('event_test.report', ['event' => $entity->id()], ['query' => ['token' => \Drupal::getContainer()->get('csrf_token')->get("event/{$entity->id()}/report")]]),
],
],
];
}
/**
* @} End of "addtogroup hooks".
*/