You are here

abstract class DemoGroup in Open Social 10.2.x

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

Class DemoGroup.

@package Drupal\social_demo

Hierarchy

Expanded class hierarchy of DemoGroup

1 file declares its use of DemoGroup
Group.php in modules/custom/social_demo/src/Plugin/DemoContent/Group.php

File

modules/custom/social_demo/src/DemoGroup.php, line 16

Namespace

Drupal\social_demo
View source
abstract class DemoGroup extends DemoContent {

  /**
   * The user storage.
   *
   * @var \Drupal\user\UserStorageInterface
   */
  protected $userStorage;

  /**
   * The file storage.
   *
   * @var \Drupal\file\FileStorageInterface
   */
  protected $fileStorage;

  /**
   * DemoGroup constructor.
   */
  public function __construct(array $configuration, $plugin_id, $plugin_definition, DemoContentParserInterface $parser, UserStorageInterface $user_storage, FileStorageInterface $file_storage) {
    parent::__construct($configuration, $plugin_id, $plugin_definition);
    $this->parser = $parser;
    $this->userStorage = $user_storage;
    $this->fileStorage = $file_storage;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
    return new static($configuration, $plugin_id, $plugin_definition, $container
      ->get('social_demo.yaml_parser'), $container
      ->get('entity_type.manager')
      ->getStorage('user'), $container
      ->get('entity_type.manager')
      ->getStorage('file'));
  }

  /**
   * {@inheritdoc}
   */
  public function createContent($generate = FALSE, $max = NULL) {
    $data = $this
      ->fetchData();
    if ($generate === TRUE) {
      $data = $this
        ->scrambleData($data, $max);
    }
    foreach ($data as $uuid => $item) {

      // Must have uuid and same key value.
      if ($uuid !== $item['uuid']) {
        drush_log(dt("Group with uuid: {$uuid} has a different uuid in content."), LogLevel::ERROR);
        continue;
      }

      // Check whether group with same uuid already exists.
      $groups = $this->entityStorage
        ->loadByProperties([
        'uuid' => $uuid,
      ]);
      if ($groups) {
        drush_log(dt("Group with uuid: {$uuid} already exists."), LogLevel::WARNING);
        continue;
      }

      // Try to load a user account (author's account).
      $account = $this
        ->loadByUuid('user', $item['uid']);
      if (!$account) {
        drush_log(dt("Account with uuid: {$item['uid']} doesn't exists."), LogLevel::ERROR);
        continue;
      }

      // Create array with data of a group.
      $item['uid'] = $account
        ->id();
      $item['created'] = $item['changed'] = $this
        ->createDate($item['created']);

      // Load image by uuid and set to a group.
      if (!empty($item['image'])) {
        $item['image'] = $this
          ->prepareImage($item['image'], $item['image_alt']);
      }
      else {

        // Set "null" to exclude errors during saving
        // (in cases when image will equal  to "false").
        $item['image'] = NULL;
      }

      // Attach key documents.
      if (!empty($item['files'])) {
        $item['files'] = $this
          ->prepareFiles($item['files']);
      }
      else {

        // Set "null" to exclude errors during saving
        // (in cases when array with files will empty).
        $item['files'] = NULL;
      }
      $entry = $this
        ->getEntry($item);
      $entity = $this->entityStorage
        ->create($entry);
      $entity
        ->save();
      if (!$entity
        ->id()) {
        continue;
      }
      $this->content[$entity
        ->id()] = $entity;
      if (!empty($item['members'])) {
        $managers = !empty($item['managers']) ? $item['managers'] : [];
        $this
          ->addMembers($item['members'], $managers, $entity);
      }
    }
    return $this->content;
  }

  /**
   * {@inheritdoc}
   */
  protected function getEntry(array $item) {
    $entry = [
      'uuid' => $item['uuid'],
      'langcode' => $item['langcode'],
      'type' => $item['type'],
      'label' => $item['label'],
      'field_group_description' => [
        [
          'value' => $item['description'],
          'format' => 'basic_html',
        ],
      ],
      'uid' => $item['uid'],
      'created' => $item['created'],
      'changed' => $item['changed'],
      'field_group_image' => $item['image'],
      'field_group_files' => $item['files'],
    ];
    return $entry;
  }

  /**
   * Converts a date in the correct format.
   *
   * @param string $date_string
   *   The date.
   *
   * @return int|false
   *   Returns a timestamp on success, false otherwise.
   */
  protected function createDate($date_string) {

    // Split from delimiter.
    $timestamp = explode('|', $date_string);
    $date = strtotime($timestamp[0]);
    $date = date('Y-m-d', $date) . 'T' . $timestamp[1] . ':00';
    return strtotime($date);
  }

  /**
   * Adds members to a group.
   *
   * @param array $members
   *   The array of members.
   * @param array $managers
   *   A list of group managers.
   * @param \Drupal\group\Entity\GroupInterface $entity
   *   The GroupInterface entity.
   */
  protected function addMembers(array $members, array $managers, GroupInterface $entity) {
    foreach ($members as $account_uuid) {
      $account = $this->userStorage
        ->loadByProperties([
        'uuid' => $account_uuid,
      ]);
      if (($account = current($account)) && !$entity
        ->getMember($account)) {
        $values = [];

        // If the user should have the manager role, grant it to him now.
        if (in_array($account_uuid, $managers)) {
          $values = [
            'group_roles' => [
              $entity
                ->bundle() . '-group_manager',
            ],
          ];
        }
        $entity
          ->addMember($account, $values);
      }
    }
  }

  /**
   * Prepares an array with list of files to set as field value.
   *
   * @param string $files
   *   The uuid for the file.
   *
   * @return array
   *   Returns an array.
   */
  protected function prepareFiles($files) {
    $values = [];
    foreach ($files as $file_uuid) {
      $file = $this->fileStorage
        ->loadByProperties([
        'uuid' => $file_uuid,
      ]);
      if ($file) {
        $values[] = [
          'target_id' => current($file)
            ->id(),
        ];
      }
    }
    return $values;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DemoContent::$content protected property Contains the created content.
DemoContent::$data protected property Contains data from a file.
DemoContent::$entityStorage protected property Contains the entity storage.
DemoContent::$parser protected property Parser.
DemoContent::$profile protected property Profile.
DemoContent::checkMentionOrLinkByUuid protected function Extract the mention from the content by [~Uuid].
DemoContent::count public function Returns quantity of created items. Overrides DemoContentInterface::count 1
DemoContent::fetchData protected function Gets the data from a file.
DemoContent::getModule public function Returns the module name. Overrides DemoContentInterface::getModule
DemoContent::getProfile public function Returns the profile. Overrides DemoContentInterface::getProfile
DemoContent::getSource public function Returns the file name. Overrides DemoContentInterface::getSource
DemoContent::loadByUuid protected function Load entity by uuid.
DemoContent::prepareImage protected function Prepares data about an image.
DemoContent::removeContent public function Removes content. Overrides DemoContentInterface::removeContent
DemoContent::scrambleData public function Scramble it. Overrides DemoContentInterface::scrambleData 2
DemoContent::setEntityStorage public function Set entity storage. Overrides DemoContentInterface::setEntityStorage
DemoContent::setProfile public function Sets the used profile. Overrides DemoContentInterface::setProfile
DemoGroup::$fileStorage protected property The file storage.
DemoGroup::$userStorage protected property The user storage.
DemoGroup::addMembers protected function Adds members to a group.
DemoGroup::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create
DemoGroup::createContent public function Creates content. Overrides DemoContentInterface::createContent
DemoGroup::createDate protected function Converts a date in the correct format.
DemoGroup::getEntry protected function Makes an array with data of an entity. Overrides DemoContent::getEntry
DemoGroup::prepareFiles protected function Prepares an array with list of files to set as field value.
DemoGroup::__construct public function DemoGroup constructor. Overrides PluginBase::__construct
DependencySerializationTrait::$_entityStorages protected property
DependencySerializationTrait::$_serviceIds protected property
DependencySerializationTrait::__sleep public function 2
DependencySerializationTrait::__wakeup public function 2
MessengerTrait::$messenger protected property The messenger. 27
MessengerTrait::messenger public function Gets the messenger. 27
MessengerTrait::setMessenger public function Sets the messenger.
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 2
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.
StringTranslationTrait::$stringTranslation protected property The string translation service. 4
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.