social_lms_integrator-1.0.0-beta4/modules/social_lms_integrator_iteration_invite/src/Plugin/ActivityContext/IterationInviteActivityContext.php
modules/social_lms_integrator_iteration_invite/src/Plugin/ActivityContext/IterationInviteActivityContext.php
<?php
namespace Drupal\social_lms_integrator_iteration_invite\Plugin\ActivityContext;
use Drupal\activity_creator\ActivityFactory;
use Drupal\activity_creator\Plugin\ActivityContextBase;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Entity\Query\Sql\QueryFactory;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\social_lms_integrator_enrollment\IterationEnrollmentInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Provides a 'IterationInviteActivityContext' activity context.
*
* @ActivityContext(
* id = "iteration_invite_activity_context",
* label = @Translation("Iteration invite activity context"),
* )
*/
class IterationInviteActivityContext extends ActivityContextBase {
/**
* The module handler.
*
* @var \Drupal\Core\Extension\ModuleHandlerInterface
*/
protected $moduleHandler;
/**
* Constructs an IterationInviteAnonymousActivityContext object.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin_id for the plugin instance.
* @param mixed $plugin_definition
* The plugin implementation definition.
* @param \Drupal\Core\Entity\Query\Sql\QueryFactory $entity_query
* The query factory.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager.
* @param \Drupal\activity_creator\ActivityFactory $activity_factory
* The activity factory service.
* @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
* The module handler.
*/
public function __construct(
array $configuration,
$plugin_id,
$plugin_definition,
QueryFactory $entity_query,
EntityTypeManagerInterface $entity_type_manager,
ActivityFactory $activity_factory,
ModuleHandlerInterface $module_handler
) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_query, $entity_type_manager, $activity_factory);
$this->moduleHandler = $module_handler;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static(
$configuration,
$plugin_id,
$plugin_definition,
$container->get('entity.query.sql'),
$container->get('entity_type.manager'),
$container->get('activity_creator.activity_factory'),
$container->get('module_handler')
);
}
/**
* {@inheritdoc}
*/
public function getRecipients(array $data, int $last_id, int $limit): array {
$recipients = [];
// We only know the context if there is a related object.
if (isset($data['related_object']) && !empty($data['related_object'])) {
if ($data['related_object'][0]['target_type'] === 'iteration_enrollment') {
// Get the enrollment id.
$enrollment_id = $data['related_object'][0]['target_id'];
/** @var \Drupal\social_lms_integrator_enrollment\IterationEnrollmentInterface $iteration_enrollment */
$iteration_enrollment = $this->entityTypeManager->getStorage('iteration_enrollment')
->load($enrollment_id);
// Send out the notification if the user is pending.
if (!empty($iteration_enrollment)) {
if (!$iteration_enrollment->get('field_enrollment_status')->isEmpty()
&& $iteration_enrollment->get('field_enrollment_status')->value === '0'
&& !$iteration_enrollment->get('field_request_or_invite_status')->isEmpty()
&& (int) $iteration_enrollment->get('field_request_or_invite_status')->value === IterationEnrollmentInterface::INVITE_PENDING_REPLY
&& !$iteration_enrollment->get('field_account')->isEmpty()) {
$recipients[] = [
'target_type' => 'user',
'target_id' => $iteration_enrollment->get('field_account')
->getString(),
];
}
}
}
}
return $recipients;
}
}
