activity_stream-1.0.x-dev/modules/activity_stream_group/src/Plugin/ActivityContext/GroupActivityContext.php
modules/activity_stream_group/src/Plugin/ActivityContext/GroupActivityContext.php
<?php
namespace Drupal\activity_stream_group\Plugin\ActivityContext;
use Drupal\activity_stream\ActivityFactory;
use Drupal\activity_stream\Plugin\ActivityContextBase;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Entity\Query\Sql\QueryFactory;
use Drupal\group\Entity\GroupRelationship;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\activity_stream_group\ActivityStreamGroupHelperService;
/**
* Provides a 'GroupActivityContext' activity context.
*
* @ActivityContext(
* id = "group_activity_context",
* label = @Translation("Group activity context"),
* )
*/
class GroupActivityContext extends ActivityContextBase {
/**
* The group helper service.
*
* @var \Drupal\activity_stream_group\ActivityStreamGroupHelperService
*/
protected $grouphelperService;
/**
* ActivityContextBase constructor.
*
* @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 entity query.
* @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\social_group\SocialGroupHelperService $grouphelper_service
* The group helper service.
*/
public function __construct(
array $configuration,
$plugin_id,
$plugin_definition,
QueryFactory $entity_query,
EntityTypeManagerInterface $entity_type_manager,
ActivityFactory $activity_factory,
ActivityStreamGroupHelperService $grouphelper_service
) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_query, $entity_type_manager, $activity_factory);
$this->grouphelperService = $grouphelper_service;
}
/**
* {@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_stream.activity_factory'),
$container->get('activity_stream_group.helper_service')
);
}
/**
* {@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'])) {
$referenced_entity = $data['related_object']['0'];
if ($gid = $this->grouphelperService->getGroupFromEntity($referenced_entity, FALSE)) {
$recipients[] = [
'target_type' => 'group',
'target_id' => $gid,
];
}
}
return $recipients;
}
/**
* {@inheritdoc}
*/
public function isValidEntity(EntityInterface $entity): bool {
// Special cases for comments.
if ($entity->getEntityTypeId() === 'comment') {
/** @var \Drupal\comment\CommentInterface $comment */
$comment = $entity;
$entity = $comment->getCommentedEntity();
if (!($entity instanceof EntityInterface)) {
return FALSE;
}
}
if ($entity->getEntityTypeId() === 'group_relationship') {
return TRUE;
}
// Check if the content is placed in a group (regardless of content type).
/** @var \Drupal\group\Entity\GroupRelationshipInterface $entity */
if (GroupRelationship::loadByEntity($entity)) {
return TRUE;
}
return FALSE;
}
}
