Newer
Older
<?php
namespace Drupal\recurring_events_registration;
use Drupal\Core\StringTranslation\TranslationInterface;
use Drupal\Core\Database\Connection;
use Drupal\Core\Datetime\DrupalDateTime;
use Drupal\Core\Logger\LoggerChannelFactoryInterface;
use Drupal\recurring_events\Entity\EventInstance;
use Drupal\Core\Messenger\Messenger;
use Drupal\datetime\Plugin\Field\FieldType\DateTimeItemInterface;
use Drupal\Core\Entity\EntityTypeManager;
use Drupal\Core\Extension\ModuleHandler;
use Drupal\Core\Utility\Token;
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
/**
* RegistrationCreationService class.
*/
class RegistrationCreationService {
/**
* The translation interface.
*
* @var \Drupal\Core\StringTranslation\TranslationInterface
*/
private $translation;
/**
* The database connection.
*
* @var \Drupal\Core\Database\Connection
*/
private $database;
/**
* Logger Factory.
*
* @var \Drupal\Core\Logger\LoggerChannelFactoryInterface
*/
protected $loggerFactory;
/**
* The messenger service.
*
* @var \Drupal\Core\Messenger\Messenger
*/
protected $messenger;
/**
* The entity storage for registrants.
*
* @var \Drupal\Core\Entity\EntityStorageInterface
*/
protected $storage;
/**
* Event instance entity.
*
* @var \Drupal\recurring_events\Entity\EventInstance
*/
protected $eventInstance;
/**
* Event series entity.
*
* @var \Drupal\recurring_events\Entity\EventSeries
*/
protected $eventSeries;
/**
* The module handler service.
*
* @var \Drupal\Core\Extension\ModuleHandler
*/
protected $moduleHandler;
/**
* The token service.
*
* @var \Drupal\Core\Utility\Token
*/
protected $token;
/**
* Class constructor.
*
* @param \Drupal\Core\StringTranslation\TranslationInterface $translation
* The translation interface.
* @param \Drupal\Core\Database\Connection $database
* The database connection.
* @param \Drupal\Core\Logger\LoggerChannelFactoryInterface $logger
* The logger factory.
* @param \Drupal\Core\Messenger\Messenger $messenger
* The messenger service.
* @param \Drupal\Core\Entity\EntityTypeManager $entity_type_manager
* The entity type manager service.
* @param \Drupal\Core\Extension\ModuleHandler $module_handler
* The module handler service.
* @param \Drupal\Core\Utility\Token $token
* The token service.
public function __construct(TranslationInterface $translation, Connection $database, LoggerChannelFactoryInterface $logger, Messenger $messenger, EntityTypeManager $entity_type_manager, ModuleHandler $module_handler, Token $token) {
$this->translation = $translation;
$this->database = $database;
$this->loggerFactory = $logger->get('recurring_events_registration');
$this->messenger = $messenger;
$this->storage = $entity_type_manager->getStorage('registrant');
$this->moduleHandler = $module_handler;
$this->token = $token;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static(
$container->get('string_translation'),
$container->get('database'),
$container->get('logger.factory'),
$container->get('messenger'),
$container->get('entity_type.manager'),
$container->get('module_handler'),
$container->get('token')
);
}
/**
* Set the event entities.
*
* @param Drupal\recurring_events\Entity\EventInstance $event_instance
* The event instance.
*/
public function setEventInstance(EventInstance $event_instance) {
$this->eventInstance = $event_instance;
$this->eventSeries = $event_instance->getEventSeries();
}
/**
* Set the event series, helpful to get a fresh copy of the entity.
*
* @param Drupal\recurring_events\Entity\EventSeries $event_series
* The event series.
*/
public function setEventSeries(EventSeries $event_series) {
$this->eventSeries = $event_series;
}

Owen Bush
committed
/**
* Get the event instance.
*
* @return Drupal\recurring_events\Entity\EventInstance $event_instance
* The event instance.
*/
public function getEventInstance() {
return $this->eventInstance;
}
/**
* Get the event series.
*
* @return Drupal\recurring_events\Entity\EventSeries $event_series
* The event series.
*/
public function getEventSeries() {
return $this->eventSeries;
}
/**
* Retreive all registered parties.
*
* @param bool $include_nonwaitlisted
* Whether or not to include non-waitlisted registrants.
* @param bool $include_waitlisted
* Whether or not to include waitlisted registrants.
* @param int $uid
* The user ID for whom to retrieve registrants.
*
* @return array
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
*/
public function retrieveRegisteredParties($include_nonwaitlisted = TRUE, $include_waitlisted = TRUE, $uid = FALSE) {
$parties = [];
$properties = [];
if ($include_nonwaitlisted && !$include_waitlisted) {
$properties['waitlist'] = 0;
}
elseif (!$include_nonwaitlisted && $include_waitlisted) {
$properties['waitlist'] = 1;
}
if (!$include_waitlisted) {
$properties['waitlist'] = 0;
}
if ($uid) {
$properties['user_id'] = $uid;
}
switch ($this->getRegistrationType()) {
case 'series':
$properties['eventseries_id'] = $this->eventSeries->id();
break;
case 'instance':
$properties['eventinstance_id'] = $this->eventInstance->id();
break;
}
$results = $this->storage->loadByProperties($properties);
if (!empty($results)) {
$parties = $results;
}
return $parties;
}
/**
* Retreive all registered parties for a series.
*
* @return array
* An array of registrants.
*/
public function retrieveAllSeriesRegisteredParties() {
$parties = [];
$properties = [
'eventseries_id' => $this->eventSeries->id(),
];
$results = $this->storage->loadByProperties($properties);
if (!empty($results)) {
$parties = $results;
}
return $parties;
}
/**
* Get registration availability.
*
* @return int
* The number of spaces available for registration.
*/
public function retrieveAvailability() {
$availability = 0;
$parties = $this->retrieveRegisteredParties(TRUE, FALSE);
$capacity = $this->eventSeries->event_registration->capacity;
if (empty($capacity)) {

Owen Bush
committed
// Set capacity to unlimited if no capacity is specified.
return -1;
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
}
$availability = $capacity - count($parties);
if ($availability < 0) {
$availability = 0;
}
return $availability;
}
/**
* Get whether this event has a waitlist.
*
* @return bool
* Whether or not there is a waitlist for this event.
*/
public function hasWaitlist() {
$waitlist = FALSE;
if (!empty($this->eventSeries->event_registration->waitlist)) {
$waitlist = (bool) $this->eventSeries->event_registration->waitlist;
}
return $waitlist;
}
/**
* Get whether this event has registration.
*
* @return bool
* Whether or not registration is open for this event.
*/
public function hasRegistration() {
$registration = FALSE;
if (!empty($this->eventSeries->event_registration->registration)) {
$registration = (bool) $this->eventSeries->event_registration->registration;
}
return $registration;
}
/**
* Get registration date range.
*
* @return array
* The registration date range array.
*/
public function getRegistrationDateRange() {
$date_range = [];
$value = $this->eventSeries->event_registration->getValue();
if (!empty($value)) {
$date_range['value'] = $value['value'];
$date_range['end_value'] = $value['end_value'];
}
return $date_range;
}
/**
* Has the user registered for this event before.
*
* @param int $uid
* The ID of the user.
*
* @return bool
* Whether this user has already registered for this event.
*/
public function hasUserRegisteredById($uid) {
$registrants = $this->retrieveRegisteredParties(TRUE, TRUE, $uid);
return !empty($registrants);
}
/**
* Retreive all waitlisted users.
*
* @return array
* An array of Drupal\recurring_events_registration\Entity\Registrant users.
*/
public function retrieveWaitlistedParties() {
$parties = [];
$registrants = $this->retrieveRegisteredParties(FALSE, TRUE);
if (!empty($registrants)) {
$parties = $registrants;
}
return $parties;
}
/**
* Retreive first user on the waitlist.
*
* @return Drupal\recurring_events_registration\Entity\Registrant
* A fully loaded registrant entity.
*/
public function retrieveFirstWaitlistParty() {
$waitlisted_users = $this->retrieveWaitlistedParties();
if (!empty($waitlisted_users)) {
$first = reset($waitlisted_users);
$this->moduleHandler->alter('recurring_events_registration_first_waitlist', $first);
return $first;
}
return NULL;
}
/**
* Get registration type.
*
* @return string
* The type of registration: series, or instance.
*/
public function getRegistrationType() {
$type = FALSE;
if (!empty($this->eventSeries->event_registration->registration_type)) {
$type = $this->eventSeries->event_registration->registration_type;
}
return $type;
}
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
/**
* Get instance registration open schedule type.
*
* @return string
* The type of open registration schedule: now, start, or custom.
*/
public function getInstanceRegistrationOpenScheduleType() {
$type = FALSE;
if (!empty($this->eventSeries->event_registration->instance_schedule_open)) {
$type = $this->eventSeries->event_registration->instance_schedule_open;
}
return $type;
}
/**
* Get instance registration close schedule type.
*
* @return string
* The type of close registration schedule: start, end, or custom.
*/
public function getInstanceRegistrationCloseScheduleType() {
$type = FALSE;
if (!empty($this->eventSeries->event_registration->instance_schedule_close)) {
$type = $this->eventSeries->event_registration->instance_schedule_close;
}
return $type;
}
/**
* Get registration dates type.
*
* @return string
* The type of registration dates: open, or scheduled.
*/
public function getRegistrationDatesType() {
$type = FALSE;
if (!empty($this->eventSeries->event_registration->registration_dates)) {
$type = $this->eventSeries->event_registration->registration_dates;
}
return $type;
}
/**
* Get instance registration open time modifier.
* The modifier for the opening time relative to the event start.
public function getInstanceRegistrationOpenTimeModifier() {
$modifier = FALSE;
if (!empty($this->eventSeries->event_registration->instance_schedule_open_amount) && !empty($this->getInstanceRegistrationOpenTimeUnit())) {
$modifier = $this->eventSeries->event_registration->instance_schedule_open_amount . ' ' . $this->getInstanceRegistrationOpenTimeUnit();
$modifier = '- ' . $modifier;
return $modifier;
* Get instance registration open time unit.
* The unit used to define the open registration time.
public function getInstanceRegistrationOpenTimeUnit() {
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
if (!empty($this->eventSeries->event_registration->instance_schedule_open_units)) {
$unit = $this->eventSeries->event_registration->instance_schedule_open_units;
}
return $unit;
}
/**
* Get instance registration close time modifier.
*
* @return string
* The modifier for the closing time relative to the event start.
*/
public function getInstanceRegistrationCloseTimeModifier() {
$modifier = FALSE;
if (!empty($this->eventSeries->event_registration->instance_schedule_close_amount) && !empty($this->getInstanceRegistrationCloseTimeUnit())) {
$modifier = $this->eventSeries->event_registration->instance_schedule_close_amount . ' ' . $this->getInstanceRegistrationCloseTimeUnit();
switch ($this->eventSeries->event_registration->instance_schedule_close_type) {
case 'after':
$modifier = '+ ' . $modifier;
break;
case 'before':
default:
$modifier = '- ' . $modifier;
break;
}
}
return $modifier;
}
/**
* Get instance registration close time unit.
*
* @return string
* The unit used to define the close registration time.
*/
public function getInstanceRegistrationCloseTimeUnit() {
$unit = FALSE;
if (!empty($this->eventSeries->event_registration->instance_schedule_close_units)) {
$unit = $this->eventSeries->event_registration->instance_schedule_close_units;
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
}
return $unit;
}
/**
* Is registration open for this event?
*
* @return bool
* Whether or not registration is open for this event.
*/
public function registrationIsOpen() {
$registration = FALSE;
if ($this->hasRegistration()) {
$now = new DrupalDateTime();
$reg_open_close_dates = $this->registrationOpeningClosingTime();
if (!empty($reg_open_close_dates)) {
$registration = (
$now->getTimestamp() >= $reg_open_close_dates['reg_open']->getTimestamp()
&& $now->getTimestamp() < $reg_open_close_dates['reg_close']->getTimestamp()
);
}
}
return $registration;
}
/**
* Get registration opening date and time.
*
* @return array
* An array of drupal date time objects for when registration opens/closes.
*/
public function registrationOpeningClosingTime() {
$reg_dates = FALSE;
// Does this event even have registration?
if ($this->hasRegistration()) {
// Grab the type of registration and the type of dates.
$reg_type = $this->getRegistrationType();
$reg_dates_type = $this->getRegistrationDatesType();

Owen Bush
committed
$timezone = new \DateTimeZone(date_default_timezone_get());
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
$utc_timezone = new \DateTimeZone(DateTimeItemInterface::STORAGE_TIMEZONE);
$now = new DrupalDateTime();
switch ($reg_dates_type) {
case 'open':
// For series, the event registration should close when the first
// event in that series begins. For instance registration the event
// registration should close when that instance begins.
switch ($reg_type) {
case 'series':
$event_date = $this->eventSeries->getSeriesStart();
break;
case 'instance':
$event_date = $this->eventInstance->date->start_date;
break;
}
$event_date->setTimezone($timezone);
$reg_dates = [
'reg_open' => $now,
'reg_close' => $event_date,
];
break;
case 'scheduled':
// The two registration types are 'series' or 'instance'.
switch ($reg_type) {
case 'series':
$reg_date_range = $this->getRegistrationDateRange();
if (!empty($reg_date_range)) {
$reg_start = DrupalDateTime::createFromFormat(DateTimeItemInterface::DATETIME_STORAGE_FORMAT, $reg_date_range['value'], $utc_timezone);
$reg_end = DrupalDateTime::createFromFormat(DateTimeItemInterface::DATETIME_STORAGE_FORMAT, $reg_date_range['end_value'], $utc_timezone);
$reg_start->setTimezone($timezone);
$reg_end->setTimezone($timezone);
}
break;
case 'instance':
$event_start_date = $this->eventInstance->date->start_date;
$event_end_date = $this->eventInstance->date->end_date;
// Calculate registration opening time.
switch ($this->getInstanceRegistrationOpenScheduleType()) {
case 'now':
$reg_start = new DrupalDateTime();
break;
case 'start':
$reg_start = clone $event_start_date;
break;
case 'custom':
$open_time_modifier = $this->getInstanceRegistrationOpenTimeModifier();
$reg_start = clone $event_start_date;
$reg_start->modify($open_time_modifier);
break;
}
// Calculate registration closing time.
switch ($this->getInstanceRegistrationCloseScheduleType()) {
case 'start':
$reg_end = clone $event_start_date;
break;
case 'end':
$reg_end = clone $event_end_date;
break;
case 'custom':
$close_time_modifier = $this->getInstanceRegistrationCloseTimeModifier();
$reg_end = clone $event_start_date;
$reg_end->modify($close_time_modifier);
break;
break;
}
$reg_dates = [
'reg_open' => $reg_start,
'reg_close' => $reg_end,
];
break;
}
}
return $reg_dates;
}
/**
* Promote a registrant from the waitlist.
*/
public function promoteFromWaitlist() {
if (!$this->hasWaitlist()) {
return;
}
if ($this->retrieveAvailability() > 0) {
$first_waitlist = $this->retrieveFirstWaitlistParty();
if (!empty($first_waitlist)) {
$first_waitlist->setWaitlist('0');
$first_waitlist->save();
$key = 'promotion_notification';
recurring_events_registration_send_notification($key, $first_waitlist);
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
/**
* Retrieve the tokens available for a registrant.
*/
public function getAvailableTokens($relevant_tokens = ['registrant']) {
if ($this->moduleHandler->moduleExists('token')) {
$token_help = [
'#theme' => 'token_tree_link',
'#token_types' => $relevant_tokens,
];
}
else {
$all_tokens = $this->token->getInfo();
$tokens = [];
foreach ($relevant_tokens as $token_prefix) {
if (!empty($all_tokens['tokens'][$token_prefix])) {
foreach ($all_tokens['tokens'][$token_prefix] as $token_key => $value) {
$tokens[] = '[' . $token_prefix . ':' . $token_key . ']';
}
}
}
$token_text = $this->translation->translate('Available tokens are: @tokens', [
'@tokens' => implode(', ', $tokens),
]);
$token_help = [
'#type' => 'markup',
'#markup' => $token_text->render(),
];
}
return $token_help;
}