You are here

abstract class DemoUser in Open Social 10.0.x

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

Class DemoUser.

@package Drupal\social_demo

Hierarchy

Expanded class hierarchy of DemoUser

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

File

modules/custom/social_demo/src/DemoUser.php, line 19

Namespace

Drupal\social_demo
View source
abstract class DemoUser extends DemoContent {

  /**
   * The profile storage.
   *
   * @var \Drupal\profile\ProfileStorageInterface
   */
  protected $profileStorage;

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

  /**
   * The taxonomy term storage.
   *
   * @var \Drupal\taxonomy\TermStorageInterface
   */
  protected $termStorage;

  /**
   * DemoUser constructor.
   */
  public function __construct(array $configuration, $plugin_id, $plugin_definition, DemoContentParserInterface $parser, ProfileStorageInterface $profile_storage, FileStorageInterface $file_storage, TermStorageInterface $term_storage) {
    parent::__construct($configuration, $plugin_id, $plugin_definition);
    $this->parser = $parser;
    $this->profileStorage = $profile_storage;
    $this->fileStorage = $file_storage;
    $this->termStorage = $term_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('profile'), $container
      ->get('entity_type.manager')
      ->getStorage('file'), $container
      ->get('entity_type.manager')
      ->getStorage('taxonomy_term'));
  }

  /**
   * {@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("User with uuid: {$uuid} has a different uuid in content."), LogLevel::ERROR);
        continue;
      }

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

      // Load image by uuid and set to a profile.
      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;
      }
      if (!empty($item['expertise'])) {
        $item['expertise'] = $this
          ->prepareTerms($item['expertise']);
      }
      if (!empty($item['interests'])) {
        $item['interests'] = $this
          ->prepareTerms($item['interests']);
      }
      if (!empty($item['roles'])) {
        $item['roles'] = array_filter($item['roles']);
      }
      if (empty($item['roles'])) {
        $item['roles'] = [
          AccountInterface::AUTHENTICATED_ROLE,
        ];
      }
      $entry = $this
        ->getEntry($item);
      $account = $this->entityStorage
        ->create($entry);
      $account
        ->setPassword($item['name']);
      $account
        ->enforceIsNew();
      $account
        ->save();
      if (!$account
        ->id()) {
        continue;
      }
      $this->content[$account
        ->id()] = $account;

      // Load the profile, since it's autocreated.
      $profiles = $this->profileStorage
        ->loadByProperties([
        'uid' => $account
          ->id(),
        'type' => ProfileType::load('profile')
          ->id(),
      ]);
      $profile = array_pop($profiles);
      if ($profile instanceof ProfileInterface) {
        $this
          ->fillProfile($profile, $item);
        $profile
          ->save();
      }
    }
    return $this->content;
  }

  /**
   * {@inheritdoc}
   */
  protected function getEntry(array $item) {
    $entry = [
      'uuid' => $item['uuid'],
      'name' => $item['name'],
      'mail' => $item['mail'],
      'init' => $item['mail'],
      'timezone' => $item['timezone'],
      'status' => $item['status'],
      'created' => \Drupal::time()
        ->getRequestTime(),
      'changed' => \Drupal::time()
        ->getRequestTime(),
      'roles' => array_values($item['roles']),
    ];
    return $entry;
  }

  /**
   * Returns taxonomy terms for UUIDs.
   *
   * @param array $values
   *   A list of UUIDs for terms.
   *
   * @return array
   *   Returns an empty array or one filled with taxonomy terms.
   */
  protected function prepareTerms(array $values) {
    $terms = [];
    foreach ($values as $uuid) {
      $term = $this->termStorage
        ->loadByProperties([
        'uuid' => $uuid,
      ]);
      $term = reset($term);
      if (!empty($term)) {
        $terms[] = [
          'target_id' => $term
            ->id(),
        ];
      }
    }
    return $terms;
  }

  /**
   * Fills the some fields of a profile.
   *
   * @param \Drupal\profile\Entity\ProfileInterface $profile
   *   Type of ProfileInterface.
   * @param array $item
   *   The profile field item.
   */
  protected function fillProfile(ProfileInterface $profile, array $item) {
    $profile->field_profile_image = $item['image'];
    $profile->field_profile_first_name = $item['first_name'];
    $profile->field_profile_last_name = $item['last_name'];
    $profile->field_profile_organization = $item['organization'];
    $profile->field_profile_function = $item['function'];
    $profile->field_profile_phone_number = $item['phone_number'];
    $profile->field_profile_self_introduction = $item['self_introduction'];
    $profile->field_profile_address = $item['address'];
    $profile->field_profile_expertise = $item['expertise'];
    $profile->field_profile_interests = $item['interests'];
  }

  /**
   * Scramble it.
   *
   * @param array $data
   *   The data array to scramble.
   * @param int|null $max
   *   How many items to generate.
   */
  public function scrambleData(array $data, $max = NULL) {
    $new_data = [];
    for ($i = 0; $i < $max; $i++) {

      // Get a random item from the array.
      $old_uuid = array_rand($data);
      $item = $data[$old_uuid];
      $uuid = 'ScrambledDemo_' . time() . '_' . $i;
      $item['uuid'] = $uuid;
      $item['name'] = $uuid;
      $item['first_name'] = 'First';
      $item['last_name'] = 'Last Name';
      $item['self_introduction'] = $uuid;
      $item['mail'] = $uuid . '@example.com';
      $item['created'] = '-' . random_int(1, 2 * 365) . ' day|' . random_int(0, 23) . ':' . random_int(0, 59);
      $new_data[$uuid] = $item;
    }
    return $new_data;
  }

}

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::setEntityStorage public function Set entity storage. Overrides DemoContentInterface::setEntityStorage
DemoContent::setProfile public function Sets the used profile. Overrides DemoContentInterface::setProfile
DemoUser::$fileStorage protected property The file storage.
DemoUser::$profileStorage protected property The profile storage.
DemoUser::$termStorage protected property The taxonomy term storage.
DemoUser::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create
DemoUser::createContent public function Creates content. Overrides DemoContentInterface::createContent
DemoUser::fillProfile protected function Fills the some fields of a profile.
DemoUser::getEntry protected function Makes an array with data of an entity. Overrides DemoContent::getEntry
DemoUser::prepareTerms protected function Returns taxonomy terms for UUIDs.
DemoUser::scrambleData public function Scramble it. Overrides DemoContent::scrambleData
DemoUser::__construct public function DemoUser 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.