abstract class DemoUser in Open Social 8.4
Same name and namespace in other branches
- 8.9 modules/custom/social_demo/src/DemoUser.php \Drupal\social_demo\DemoUser
- 8 modules/custom/social_demo/src/DemoUser.php \Drupal\social_demo\DemoUser
- 8.2 modules/custom/social_demo/src/DemoUser.php \Drupal\social_demo\DemoUser
- 8.3 modules/custom/social_demo/src/DemoUser.php \Drupal\social_demo\DemoUser
- 8.5 modules/custom/social_demo/src/DemoUser.php \Drupal\social_demo\DemoUser
- 8.6 modules/custom/social_demo/src/DemoUser.php \Drupal\social_demo\DemoUser
- 8.7 modules/custom/social_demo/src/DemoUser.php \Drupal\social_demo\DemoUser
- 8.8 modules/custom/social_demo/src/DemoUser.php \Drupal\social_demo\DemoUser
- 10.3.x modules/custom/social_demo/src/DemoUser.php \Drupal\social_demo\DemoUser
- 10.0.x modules/custom/social_demo/src/DemoUser.php \Drupal\social_demo\DemoUser
- 10.1.x modules/custom/social_demo/src/DemoUser.php \Drupal\social_demo\DemoUser
- 10.2.x modules/custom/social_demo/src/DemoUser.php \Drupal\social_demo\DemoUser
Class DemoUser.
@package Drupal\social_demo
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\social_demo\DemoContent implements DemoContentInterface
- class \Drupal\social_demo\DemoUser
- class \Drupal\social_demo\DemoContent implements DemoContentInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of DemoUser
1 file declares its use of DemoUser
File
- modules/
custom/ social_demo/ src/ DemoUser.php, line 19
Namespace
Drupal\social_demoView 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.manager')
->getStorage('profile'), $container
->get('entity.manager')
->getStorage('file'), $container
->get('entity.manager')
->getStorage('taxonomy_term'));
}
/**
* {@inheritdoc}
*/
public function createContent() {
$data = $this
->fetchData();
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'];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DemoContent:: |
protected | property | Contains the created content. | |
DemoContent:: |
protected | property | Contains data from a file. | |
DemoContent:: |
protected | property | Contains the entity storage. | |
DemoContent:: |
protected | property | Parser. | |
DemoContent:: |
protected | property | Profile. | |
DemoContent:: |
protected | function | Extract the mention from the content by [~Uuid]. | |
DemoContent:: |
public | function |
Returns quantity of created items. Overrides DemoContentInterface:: |
1 |
DemoContent:: |
protected | function | Gets the data from a file. | |
DemoContent:: |
public | function |
Returns the module name. Overrides DemoContentInterface:: |
|
DemoContent:: |
public | function |
Returns the profile. Overrides DemoContentInterface:: |
|
DemoContent:: |
public | function |
Returns the file name. Overrides DemoContentInterface:: |
|
DemoContent:: |
protected | function | Load entity by uuid. | |
DemoContent:: |
protected | function | Prepares data about an image. | |
DemoContent:: |
public | function |
Removes content. Overrides DemoContentInterface:: |
|
DemoContent:: |
public | function |
Set entity storage. Overrides DemoContentInterface:: |
|
DemoContent:: |
public | function |
Sets the used profile. Overrides DemoContentInterface:: |
|
DemoUser:: |
protected | property | The file storage. | |
DemoUser:: |
protected | property | The profile storage. | |
DemoUser:: |
protected | property | The taxonomy term storage. | |
DemoUser:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
DemoUser:: |
public | function |
Creates content. Overrides DemoContentInterface:: |
|
DemoUser:: |
protected | function | Fills the some fields of a profile. | |
DemoUser:: |
protected | function |
Makes an array with data of an entity. Overrides DemoContent:: |
|
DemoUser:: |
protected | function | Returns taxonomy terms for UUIDs. | |
DemoUser:: |
public | function |
DemoUser constructor. Overrides PluginBase:: |
|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
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. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |