You are here

class ContentInMyGroupActivityContext in Open Social 8.9

Same name and namespace in other branches
  1. 8 modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
  2. 8.2 modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
  3. 8.3 modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
  4. 8.4 modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
  5. 8.5 modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
  6. 8.6 modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
  7. 8.7 modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
  8. 8.8 modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
  9. 10.3.x modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
  10. 10.0.x modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
  11. 10.1.x modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
  12. 10.2.x modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext

Provides a 'ContentInMyGroupActivityContext' activity context.

Plugin annotation


@ActivityContext(
  id = "content_in_my_group_activity_context",
  label = @Translation("Content in my group activity context"),
)

Hierarchy

Expanded class hierarchy of ContentInMyGroupActivityContext

File

modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php, line 19

Namespace

Drupal\activity_basics\Plugin\ActivityContext
View source
class ContentInMyGroupActivityContext 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'])) {
      $referenced_entity = $this->activityFactory
        ->getActivityRelatedEntity($data);
      $owner_id = '';
      if (isset($referenced_entity['target_type']) && $referenced_entity['target_type'] === 'post') {
        try {

          /** @var \Drupal\social_post\Entity\PostInterface $post */
          $post = $this->entityTypeManager
            ->getStorage('post')
            ->load($referenced_entity['target_id']);
        } catch (PluginNotFoundException $exception) {
          return $recipients;
        }

        // 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 (!$post) {
          return $recipients;
        }
        $gid = $post
          ->get('field_recipient_group')
          ->getValue();
        $owner_id = $post
          ->getOwnerId();
      }
      else {

        /* @var \Drupal\group\Entity\GroupContentInterface $group_content */
        $group_content = $this->entityTypeManager
          ->getStorage('group_content')
          ->load($referenced_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 (!$group_content) {
          return $recipients;
        }
        $node = $group_content
          ->getEntity();
        if ($node instanceof NodeInterface) {
          $owner_id = $node
            ->getOwnerId();
          if (!$node
            ->isPublished()) {
            return $recipients;
          }
        }
        $gid = $group_content
          ->get('gid')
          ->getValue();
      }
      if ($gid && isset($gid[0]['target_id'])) {
        $target_id = $gid[0]['target_id'];
        $recipients[] = [
          'target_type' => 'group',
          'target_id' => $target_id,
        ];
        $group = $this->entityTypeManager
          ->getStorage('group')
          ->load($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 (!$group instanceof GroupInterface) {
          return $recipients;
        }
        $memberships = $group
          ->getMembers();
        foreach ($memberships as $membership) {

          // Check if this not the created user.
          if ($owner_id != $membership
            ->getUser()
            ->id()) {
            $recipients[] = [
              'target_type' => 'user',
              'target_id' => $membership
                ->getUser()
                ->id(),
            ];
          }
        }
      }
    }
    return $recipients;
  }

  /**
   * {@inheritdoc}
   */
  public function isValidEntity(EntityInterface $entity) {
    switch ($entity
      ->getEntityTypeId()) {
      case 'group_content':
        return TRUE;
      case 'post':
        return !$entity->field_recipient_group
          ->isEmpty();
      default:
        return FALSE;
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ActivityContextBase::$activityFactory protected property The activity factory service.
ActivityContextBase::$entityQuery private property The entity query.
ActivityContextBase::$entityTypeManager protected property The entity type manager.
ActivityContextBase::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create 5
ActivityContextBase::getRecipientsFromPost public function Returns recipients from post.
ActivityContextBase::__construct public function ActivityContextBase constructor. Overrides PluginBase::__construct 5
ContentInMyGroupActivityContext::getRecipients public function Returns a batched list of recipients for this context. Overrides ActivityContextBase::getRecipients
ContentInMyGroupActivityContext::isValidEntity public function Determines if the entity is valid for this context. Overrides ActivityContextBase::isValidEntity
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 3
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.