You are here

class AssignRoleToUserAction in Business Rules 2.x

Same name and namespace in other branches
  1. 8 modules/br_group/src/Plugin/BusinessRulesAction/AssignRoleToUserAction.php \Drupal\br_group\Plugin\BusinessRulesAction\AssignRoleToUserAction

Class AssignRoleToUserAction.

@package Drupal\business_rules\Plugin\BusinessRulesAction

Plugin annotation


@BusinessRulesAction(
  id = "assign_role_to_user",
  label = @Translation("Group: Assign a role to an user"),
  group = @Translation("Group"),
  description = @Translation("Assign a role to an user on Group module."),
  isContextDependent = FALSE,
  hasTargetEntity = FALSE,
  hasTargetBundle = FALSE,
  hasTargetField = FALSE,
)

Hierarchy

Expanded class hierarchy of AssignRoleToUserAction

File

modules/br_group/src/Plugin/BusinessRulesAction/AssignRoleToUserAction.php, line 31

Namespace

Drupal\br_group\Plugin\BusinessRulesAction
View source
class AssignRoleToUserAction extends BusinessRulesActionPlugin {

  /**
   * {@inheritdoc}
   */
  public function getSettingsForm(array &$form, FormStateInterface $form_state, ItemInterface $item) {
    $settings['group_id'] = [
      '#type' => 'textfield',
      '#title' => t('Group Id'),
      '#required' => TRUE,
      '#description' => t('The group id. You may use variable or token to fill this information'),
      '#default_value' => $item
        ->getSettings('group_id'),
    ];
    $settings['role_id'] = [
      '#type' => 'textfield',
      '#title' => t('Role Machine name'),
      '#required' => TRUE,
      '#description' => t('The role machine name to assign to the user. You may use variable or token to fill this information'),
      '#default_value' => $item
        ->getSettings('role_id'),
    ];
    $settings['user_key'] = [
      '#type' => 'radios',
      '#title' => t('Key to select the user'),
      '#default_value' => $item
        ->getSettings('user_key') ?: 'username',
      '#options' => [
        'username' => t('User Name'),
        'userid' => t('User Id'),
      ],
    ];
    $settings['user_name'] = [
      '#type' => 'textfield',
      '#title' => t('User Name'),
      '#description' => t('The user name. You may use variable or token to fill this information'),
      '#default_value' => $item
        ->getSettings('user_name'),
      '#states' => [
        'visible' => [
          ':input[name="user_key"]' => [
            'value' => 'username',
          ],
        ],
      ],
    ];
    $settings['user_id'] = [
      '#type' => 'textfield',
      '#title' => t('User Id'),
      '#description' => t('The user id. You may use variable or token to fill this information'),
      '#default_value' => $item
        ->getSettings('user_id'),
      '#states' => [
        'visible' => [
          ':input[name="user_key"]' => [
            'value' => 'userid',
          ],
        ],
      ],
    ];
    return $settings;
  }

  /**
   * {@inheritdoc}
   */
  public function validateForm(array &$form, FormStateInterface $form_state) {
    if ($form_state
      ->getValue('user_key') == 'username' && $form_state
      ->getValue('user_name') == '') {
      $form_state
        ->setErrorByName('user_name', t('User name is required.'));
    }
    elseif ($form_state
      ->getValue('user_key') == 'userid' && $form_state
      ->getValue('user_id') == '') {
      $form_state
        ->setErrorByName('user_id', t('User id is required.'));
    }
  }

  /**
   * {@inheritdoc}
   */
  public function processSettings(array $settings, ItemInterface $item) {
    if ($settings['user_key'] == 'username') {
      $settings['user_id'] = NULL;
    }
    elseif ($settings['user_key'] == 'userid') {
      $settings['user_name'] = NULL;
    }
    return parent::processSettings($settings, $item);
  }

  /**
   * {@inheritdoc}
   */
  public function execute(ActionInterface $action, BusinessRulesEvent $event) {
    $variables = $event
      ->getArgument('variables');
    $group_id = $action
      ->getSettings('group_id');
    $group_id = $this
      ->processVariables($group_id, $variables);
    $role_id = $action
      ->getSettings('role_id');
    $role_id = $this
      ->processVariables($role_id, $variables);
    $user_key = $action
      ->getSettings('user_key');
    $user_name = $action
      ->getSettings('user_name');
    $user_name = $this
      ->processVariables($user_name, $variables);
    $user_id = $action
      ->getSettings('user_id');
    $user_id = $this
      ->processVariables($user_id, $variables);
    if ($user_key == 'userid') {
      $user = User::load($user_id);
    }
    else {
      $id = $this->util->container
        ->get('entity_type.manager')
        ->getStorage('user')
        ->getQuery()
        ->condition('name', $user_name)
        ->execute();
      $user = User::load(array_values($id)[0]);
    }
    $group = Group::load($group_id);
    $member = $group
      ->getMember($user);
    if ($member instanceof GroupMembership) {
      $roles = $member
        ->getRoles();
      $group_type_id = $group
        ->getGroupType()
        ->id();
      $role_id = substr($role_id, 0, strlen("{$group_type_id}-")) == "{$group_type_id}-" ? $role_id : "{$group_type_id}-{$role_id}";
      $new_role = GroupRole::load($role_id);
      unset($roles["{$group_type_id}-member"]);
      $roles_keys = array_keys($roles);
      if (!in_array($role_id, $roles_keys) && $new_role instanceof GroupRole) {
        $roles_keys[] = $role_id;
      }
      foreach ($roles_keys as $key => $value) {
        $roles_keys[$key] = [
          'target_id' => $value,
        ];
      }
      $content = $member
        ->getGroupContent();
      $content
        ->set('group_roles', $roles_keys);
      $content
        ->save();
      $result = [
        '#type' => 'markup',
        '#markup' => t('Role %role has been assigned to user %user on group %group.', [
          '%role' => $new_role
            ->label(),
          '%user' => $user
            ->getAccountName(),
          '%group' => $group
            ->label(),
        ]),
      ];
    }
    else {
      $result = [
        '#type' => 'markup',
        '#markup' => t('Role %role could not be assigned to user %user because he is not member of group %group.', [
          '%role' => $role_id,
          '%user' => $user
            ->getAccountName(),
          '%group' => $group
            ->label(),
        ]),
      ];
    }
    return $result;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AssignRoleToUserAction::execute public function Execute the action. Overrides BusinessRulesActionPlugin::execute
AssignRoleToUserAction::getSettingsForm public function Return the form array. Overrides BusinessRulesItemPluginBase::getSettingsForm
AssignRoleToUserAction::processSettings public function Process the item settings before it's saved. Overrides BusinessRulesItemPluginBase::processSettings
AssignRoleToUserAction::validateForm public function Plugin form validator. Overrides BusinessRulesItemPluginBase::validateForm
BusinessRulesItemPluginBase::$processor protected property The business rules processor.
BusinessRulesItemPluginBase::$util protected property The business rules util.
BusinessRulesItemPluginBase::buildForm public function Form constructor. Overrides BusinessRulesItemPluginInterface::buildForm 11
BusinessRulesItemPluginBase::getDescription public function Provide a description of the item. Overrides BusinessRulesItemPluginInterface::getDescription
BusinessRulesItemPluginBase::getEditUrl public function Get the redirect url for the item edit-form route. Overrides BusinessRulesItemPluginInterface::getEditUrl
BusinessRulesItemPluginBase::getGroup public function Provide the group of the item. Overrides BusinessRulesItemPluginInterface::getGroup
BusinessRulesItemPluginBase::getRedirectUrl public function Get the redirect url for the item collection route. Overrides BusinessRulesItemPluginInterface::getRedirectUrl
BusinessRulesItemPluginBase::getVariables public function Return a variable set with all used variables on the item. Overrides BusinessRulesItemPluginInterface::getVariables 9
BusinessRulesItemPluginBase::pregMatch public function Extract the variables from the plugin settings. Overrides BusinessRulesItemPluginInterface::pregMatch
BusinessRulesItemPluginBase::processTokenArraySetting private function Helper function to process tokens if the setting is an array.
BusinessRulesItemPluginBase::processTokens public function Process the tokens on the settings property for the item. Overrides BusinessRulesItemPluginInterface::processTokens
BusinessRulesItemPluginBase::processVariables public function Process the item replacing the variables by it's values. Overrides BusinessRulesItemPluginInterface::processVariables 1
BusinessRulesItemPluginBase::__construct public function Constructs a \Drupal\Component\Plugin\PluginBase object. Overrides PluginBase::__construct 11
BusinessRulesItemPluginInterface::VARIABLE_REGEX constant
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.