FollowContentActivityContext.php in Open Social 8.2
Same filename and directory in other branches
- 8.9 modules/social_features/social_follow_content/src/Plugin/ActivityContext/FollowContentActivityContext.php
- 8 modules/social_features/social_follow_content/src/Plugin/ActivityContext/FollowContentActivityContext.php
- 8.3 modules/social_features/social_follow_content/src/Plugin/ActivityContext/FollowContentActivityContext.php
- 8.4 modules/social_features/social_follow_content/src/Plugin/ActivityContext/FollowContentActivityContext.php
- 8.5 modules/social_features/social_follow_content/src/Plugin/ActivityContext/FollowContentActivityContext.php
- 8.6 modules/social_features/social_follow_content/src/Plugin/ActivityContext/FollowContentActivityContext.php
- 8.7 modules/social_features/social_follow_content/src/Plugin/ActivityContext/FollowContentActivityContext.php
- 8.8 modules/social_features/social_follow_content/src/Plugin/ActivityContext/FollowContentActivityContext.php
- 10.3.x modules/social_features/social_follow_content/src/Plugin/ActivityContext/FollowContentActivityContext.php
- 10.0.x modules/social_features/social_follow_content/src/Plugin/ActivityContext/FollowContentActivityContext.php
- 10.1.x modules/social_features/social_follow_content/src/Plugin/ActivityContext/FollowContentActivityContext.php
- 10.2.x modules/social_features/social_follow_content/src/Plugin/ActivityContext/FollowContentActivityContext.php
File
modules/social_features/social_follow_content/src/Plugin/ActivityContext/FollowContentActivityContext.phpView source
<?php
namespace Drupal\social_follow_content\Plugin\ActivityContext;
use Drupal\activity_creator\Plugin\ActivityContextBase;
use Drupal\activity_creator\ActivityFactory;
/**
* Provides a 'FollowContentActivityContext' activity context plugin.
*
* @ActivityContext(
* id = "follow_content_activity_context",
* label = @Translation("Following content activity context"),
* )
*/
class FollowContentActivityContext 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);
if ($related_entity['target_type'] == 'node') {
$recipients += $this
->getRecipientsWhoFollowContent($related_entity, $data);
}
}
return $recipients;
}
/**
* Returns owner recipient from entity.
*/
public function getRecipientsWhoFollowContent(array $related_entity, array $data) {
$recipients = [];
$storage = \Drupal::entityTypeManager()
->getStorage('flagging');
$flaggings = $storage
->loadByProperties([
'flag_id' => 'follow_content',
'entity_type' => $related_entity['target_type'],
'entity_id' => $related_entity['target_id'],
]);
// We don't send notifications to users about their own comments.
$original_related_object = $data['related_object'][0];
$storage = \Drupal::entityTypeManager()
->getStorage($original_related_object['target_type']);
$original_related_entity = $storage
->load($original_related_object['target_id']);
foreach ($flaggings as $flagging) {
$recipient = $flagging
->getOwner();
if ($recipient
->id() != $original_related_entity
->getOwnerId()) {
if ($original_related_entity
->access('view', $recipient)) {
$recipients[] = [
'target_type' => 'user',
'target_id' => $recipient
->id(),
];
}
}
}
return $recipients;
}
}
Classes
Name | Description |
---|---|
FollowContentActivityContext | Provides a 'FollowContentActivityContext' activity context plugin. |