class OwnerActivityContext in Open Social 8.8
Same name and namespace in other branches
- 8.9 modules/custom/activity_basics/src/Plugin/ActivityContext/OwnerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OwnerActivityContext
- 8 modules/custom/activity_basics/src/Plugin/ActivityContext/OwnerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OwnerActivityContext
- 8.2 modules/custom/activity_basics/src/Plugin/ActivityContext/OwnerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OwnerActivityContext
- 8.3 modules/custom/activity_basics/src/Plugin/ActivityContext/OwnerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OwnerActivityContext
- 8.4 modules/custom/activity_basics/src/Plugin/ActivityContext/OwnerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OwnerActivityContext
- 8.5 modules/custom/activity_basics/src/Plugin/ActivityContext/OwnerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OwnerActivityContext
- 8.6 modules/custom/activity_basics/src/Plugin/ActivityContext/OwnerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OwnerActivityContext
- 8.7 modules/custom/activity_basics/src/Plugin/ActivityContext/OwnerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OwnerActivityContext
- 10.3.x modules/custom/activity_basics/src/Plugin/ActivityContext/OwnerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OwnerActivityContext
- 10.0.x modules/custom/activity_basics/src/Plugin/ActivityContext/OwnerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OwnerActivityContext
- 10.1.x modules/custom/activity_basics/src/Plugin/ActivityContext/OwnerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OwnerActivityContext
- 10.2.x modules/custom/activity_basics/src/Plugin/ActivityContext/OwnerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OwnerActivityContext
Provides a 'OwnerActivityContext' activity context.
Plugin annotation
@ActivityContext(
id = "owner_activity_context",
label = @Translation("Owner activity context"),
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\activity_creator\Plugin\ActivityContextBase implements ActivityContextInterface, ContainerFactoryPluginInterface
- class \Drupal\activity_basics\Plugin\ActivityContext\OwnerActivityContext
- class \Drupal\activity_creator\Plugin\ActivityContextBase implements ActivityContextInterface, ContainerFactoryPluginInterface
Expanded class hierarchy of OwnerActivityContext
File
- modules/
custom/ activity_basics/ src/ Plugin/ ActivityContext/ OwnerActivityContext.php, line 16
Namespace
Drupal\activity_basics\Plugin\ActivityContextView source
class OwnerActivityContext extends ActivityContextBase {
/**
* {@inheritdoc}
*/
public function getRecipients(array $data, $last_uid, $limit) {
$recipients = [];
// We only know the context if there is a related object.
if (isset($data['related_object']) && !empty($data['related_object'])) {
$related_entity = ActivityFactory::getActivityRelatedEntity($data);
$allowed_entity_types = [
'node',
'post',
'comment',
];
if (in_array($related_entity['target_type'], $allowed_entity_types)) {
$recipients += $this
->getRecipientOwnerFromEntity($related_entity, $data);
}
}
// Remove the actor (user performing action) from recipients list.
if (!empty($data['actor'])) {
$key = array_search($data['actor'], array_column($recipients, 'target_id'), FALSE);
if ($key !== FALSE) {
unset($recipients[$key]);
}
}
return $recipients;
}
/**
* Returns owner recipient from entity.
*
* @param array $related_entity
* The related entity.
* @param array $data
* The data.
*
* @return array
* An associative array of recipients, containing the following key-value
* pairs:
* - target_type: The entity type ID.
* - target_id: The entity ID.
*/
public function getRecipientOwnerFromEntity(array $related_entity, array $data) {
$recipients = [];
$entity_storage = $this->entityTypeManager
->getStorage($related_entity['target_type']);
$entity = $entity_storage
->load($related_entity['target_id']);
// It could happen that a notification has been queued but the content
// has since been deleted. In that case we can find no additional
// recipients.
if (!$entity) {
return $recipients;
}
// Don't return recipients if user comments on own content.
$original_related_object = $data['related_object'][0];
if (isset($original_related_object['target_type']) && $original_related_object['target_type'] === 'comment') {
$storage = $this->entityTypeManager
->getStorage($original_related_object['target_type']);
$original_related_entity = $storage
->load($original_related_object['target_id']);
if (!empty($original_related_entity) && $original_related_entity
->getOwnerId() === $entity
->getOwnerId()) {
return $recipients;
}
}
if (isset($original_related_object['target_type']) && $original_related_object['target_type'] === 'event_enrollment') {
$storage = $this->entityTypeManager
->getStorage($original_related_object['target_type']);
$original_related_entity = $storage
->load($original_related_object['target_id']);
if (!empty($original_related_entity) && $original_related_entity
->getAccount() !== NULL) {
$recipients[] = [
'target_type' => 'user',
'target_id' => $original_related_entity
->getAccount(),
];
return $recipients;
}
}
$recipients[] = [
'target_type' => 'user',
'target_id' => $entity
->getOwnerId(),
];
return $recipients;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ActivityContextBase:: |
private | property | The entity query. | |
ActivityContextBase:: |
protected | property | The entity type manager. | |
ActivityContextBase:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
3 |
ActivityContextBase:: |
public | function | Returns recipients from post. | |
ActivityContextBase:: |
public | function |
Determines if the entity is valid for this context. Overrides ActivityContextInterface:: |
8 |
ActivityContextBase:: |
public | function |
ActivityContextBase constructor. Overrides PluginBase:: |
3 |
OwnerActivityContext:: |
public | function | Returns owner recipient from entity. | |
OwnerActivityContext:: |
public | function |
Returns a batched list of recipients for this context. Overrides ActivityContextBase:: |
|
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. |