abstract class DemoGroup in Open Social 8.4
Same name and namespace in other branches
- 8.9 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup
- 8 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup
- 8.2 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup
- 8.3 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup
- 8.5 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup
- 8.6 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup
- 8.7 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup
- 8.8 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup
- 10.3.x modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup
- 10.0.x modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup
- 10.1.x modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup
- 10.2.x modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup
Class DemoGroup.
@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\DemoGroup
- class \Drupal\social_demo\DemoContent implements DemoContentInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of DemoGroup
1 file declares its use of DemoGroup
File
- modules/
custom/ social_demo/ src/ DemoGroup.php, line 16
Namespace
Drupal\social_demoView 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.manager')
->getStorage('user'), $container
->get('entity.manager')
->getStorage('file'));
}
/**
* {@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("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
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:: |
|
DemoGroup:: |
protected | property | The file storage. | |
DemoGroup:: |
protected | property | The user storage. | |
DemoGroup:: |
protected | function | Adds members to a group. | |
DemoGroup:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
DemoGroup:: |
public | function |
Creates content. Overrides DemoContentInterface:: |
|
DemoGroup:: |
protected | function | Converts a date in the correct format. | |
DemoGroup:: |
protected | function |
Makes an array with data of an entity. Overrides DemoContent:: |
|
DemoGroup:: |
protected | function | Prepares an array with list of files to set as field value. | |
DemoGroup:: |
public | function |
DemoGroup 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. |