activity_stream-1.0.x-dev/src/Plugin/ActivityContext/PlatformActivityContext.php
src/Plugin/ActivityContext/PlatformActivityContext.php
<?php
namespace Drupal\activity_stream\Plugin\ActivityContext;
use Drupal\activity_stream\Plugin\ActivityContextBase;
/**
* Provides a 'OwnerActivityContext' activity context.
*
* @ActivityContext(
* id = "platform_activity_context",
* label = @Translation("Platform activity context"),
* )
*/
class PlatformActivityContext extends ActivityContextBase {
/**
* {@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'])) {
$related_entity = $this->activityFactory->getActivityRelatedEntity($data);
// Load the related entity.
$entity_storage = $this->entityTypeManager
->getStorage($related_entity['target_type']);
$entity = $entity_storage->load($related_entity['target_id']);
// When nothing found return the empty recipients array. Basically means
// there is no activity sent.
if ($entity === NULL) {
return $recipients;
}
// Add the owner of the related entity as a recipient.
// No owner found set user 1.
$recipients[] = [
'target_type' => 'user',
'target_id' => $entity->getOwnerId() ?? 1,
];
}
return $recipients;
}
}
