You are here

class GdprFieldSettingsForm in General Data Protection Regulation 3.0.x

Same name and namespace in other branches
  1. 8.2 modules/gdpr_fields/src/Form/GdprFieldSettingsForm.php \Drupal\gdpr_fields\Form\GdprFieldSettingsForm
  2. 8 modules/gdpr_fields/src/Form/GdprFieldSettingsForm.php \Drupal\gdpr_fields\Form\GdprFieldSettingsForm

GDPR Field settings.

Hierarchy

Expanded class hierarchy of GdprFieldSettingsForm

1 file declares its use of GdprFieldSettingsForm
gdpr_fields.module in modules/gdpr_fields/gdpr_fields.module
Module file for the GDPR Fields module.
1 string reference to 'GdprFieldSettingsForm'
gdpr_fields.routing.yml in modules/gdpr_fields/gdpr_fields.routing.yml
modules/gdpr_fields/gdpr_fields.routing.yml

File

modules/gdpr_fields/src/Form/GdprFieldSettingsForm.php, line 19

Namespace

Drupal\gdpr_fields\Form
View source
class GdprFieldSettingsForm extends FormBase {

  /**
   * The entity field manager used to work with fields.
   *
   * @var \Drupal\Core\Entity\EntityFieldManagerInterface
   */
  protected $entityFieldManager;

  /**
   * Entity type manager used to work with types.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * GdprFieldSettingsForm constructor.
   *
   * @param \Drupal\Core\Entity\EntityFieldManagerInterface $entity_field_manager
   *   Entity field manager.
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
   *   Entity type manager.
   * @param \Drupal\Core\Messenger\MessengerInterface $messenger
   *   The messenger service.
   */
  public function __construct(EntityFieldManagerInterface $entity_field_manager, EntityTypeManagerInterface $entityTypeManager, MessengerInterface $messenger) {
    $this->entityFieldManager = $entity_field_manager;
    $this->entityTypeManager = $entityTypeManager;
    $this->messenger = $messenger;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('entity_field.manager'), $container
      ->get('entity_type.manager'), $container
      ->get('messenger'));
  }

  /**
   * Gets the configuration for an entity/bundle/field.
   *
   * @param string $entity_type
   *   Entity type.
   * @param string $bundle
   *   Bundle.
   * @param string $field_name
   *   Field.
   *
   * @return \Drupal\gdpr_fields\Entity\GdprField
   *   Field metadata.
   */
  private static function getConfig($entity_type, $bundle, $field_name) {
    $config = GdprFieldConfigEntity::load($entity_type);
    if ($config === NULL) {
      $config = GdprFieldConfigEntity::create([
        'id' => $entity_type,
      ]);
    }
    return $config
      ->getField($bundle, $field_name);
  }

  /**
   * Sets the GDPR settings for a field.
   *
   * @param string $entity_type
   *   Entity type.
   * @param string $bundle
   *   Bundle.
   * @param string $field_name
   *   Field.
   * @param bool $enabled
   *   Whether GDPR is enabled for this field.
   * @param string $rta
   *   Right to Access setting.
   * @param string $rtf
   *   Right to be forgotten.
   * @param string $anonymizer
   *   Anonymizer to use.
   * @param string $notes
   *   Notes.
   * @param int $relationship
   *   Relationship setting.
   * @param string $sars_filename
   *   Filename to store data from this relationship in subject access requests.
   *
   * @return \Drupal\gdpr_fields\Entity\GdprFieldConfigEntity
   *   The config entity.
   *
   * @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
   * @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
   */
  private function setConfig($entity_type, $bundle, $field_name, $enabled, $rta, $rtf, $anonymizer, $notes, $relationship, $sars_filename) {
    $field = new GdprField([
      'bundle' => $bundle,
      'name' => $field_name,
      'entity_type_id' => $entity_type,
    ]);
    $field
      ->setEnabled($enabled)
      ->setRta($rta)
      ->setRtf($rtf)
      ->setAnonymizer($anonymizer)
      ->setNotes($notes)
      ->setRelationship($relationship)
      ->setSarsFilename($sars_filename);
    $storage = $this->entityTypeManager
      ->getStorage('gdpr_fields_config');

    /** @var \Drupal\gdpr_fields\Entity\GdprFieldConfigEntity $config */
    $config = $storage
      ->load($entity_type);
    if (!$config) {
      $config = $storage
        ->create([
        'id' => $entity_type,
      ]);
    }
    $config
      ->setField($field);
    return $config;
  }

  /**
   * Returns a unique string identifying the form.
   *
   * @return string
   *   The unique string identifying the form.
   */
  public function getFormId() {
    return 'gdpr_fields_edit_field_form';
  }

  /**
   * Form constructor.
   *
   * @param array $form
   *   An associative array containing the structure of the form.
   * @param \Drupal\Core\Form\FormStateInterface $form_state
   *   The current state of the form.
   * @param string $entity_type
   *   The entity type.
   * @param string $bundle_name
   *   The entity bundle.
   * @param string $field_name
   *   The field name.
   *
   * @return array
   *   The form structure.
   *
   * @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
   */
  public function buildForm(array $form, FormStateInterface $form_state, $entity_type = NULL, $bundle_name = NULL, $field_name = NULL) {
    if (empty($entity_type) || empty($bundle_name) || empty($field_name)) {
      $this
        ->messenger()
        ->addWarning('Could not load field.');
      return [];
    }
    $field_defs = $this->entityFieldManager
      ->getFieldDefinitions($entity_type, $bundle_name);
    if (!array_key_exists($field_name, $field_defs)) {
      $this
        ->messenger()
        ->addWarning("The field {$field_name} does not exist.");
      return [];
    }
    $field_def = $field_defs[$field_name];
    $form['#title'] = 'GDPR Settings for ' . $field_def
      ->getLabel();
    static::buildFormFields($form, $entity_type, $bundle_name, $field_name);
    $form['entity_type'] = [
      '#type' => 'hidden',
      '#default_value' => $entity_type,
    ];
    $form['bundle'] = [
      '#type' => 'hidden',
      '#default_value' => $bundle_name,
    ];
    $form['field_name'] = [
      '#type' => 'hidden',
      '#default_value' => $field_name,
    ];
    $form['actions'] = [
      '#type' => 'actions',
      'submit' => [
        '#type' => 'submit',
        '#value' => $this
          ->t('Save'),
        '#button_type' => 'primary',
        '#name' => 'Save',
      ],
      'submit_cancel' => [
        '#type' => 'submit',
        '#weight' => 99,
        '#value' => $this
          ->t('Cancel'),
        '#name' => 'Cancel',
        '#limit_validation_errors' => [],
      ],
    ];
    return $form;
  }

  /**
   * Builds the form fields for GDPR settings.
   *
   * This is in a separate method so it can also be attached to the regular
   * field settings page by hook.
   *
   * @param array $form
   *   Form.
   * @param string $entity_type
   *   Entity type.
   * @param string $bundle_name
   *   Bundle.
   * @param string $field_name
   *   Field.
   *
   * @see gdpr_fields_form_field_config_edit_form_submit
   *
   * @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
   */
  public static function buildFormFields(array &$form, $entity_type = NULL, $bundle_name = NULL, $field_name = NULL) {
    $entityTypeManager = \Drupal::entityTypeManager();
    $entityDefinition = $entityTypeManager
      ->getDefinition($entity_type);
    if ($entityDefinition === NULL) {
      return;
    }

    // Exclude uuid/bundle.
    if ($entityDefinition
      ->getKey('uuid') === $field_name || $entityDefinition
      ->getKey('bundle') === $field_name) {
      return;
    }
    $config = static::getConfig($entity_type, $bundle_name, $field_name);

    /** @var \Drupal\Core\Entity\EntityFieldManagerInterface $fieldManager */

    /** @var \Drupal\anonymizer\Anonymizer\AnonymizerFactory $anonymizerFactory */
    $fieldManager = \Drupal::service('entity_field.manager');
    $anonymizerFactory = \Drupal::service('anonymizer.anonymizer_factory');
    $anonymizerDefinitions = $anonymizerFactory
      ->getDefinitions();
    $fieldDefinition = $fieldManager
      ->getFieldDefinitions($entity_type, $bundle_name)[$field_name];
    $form['gdpr_enabled'] = [
      '#type' => 'checkbox',
      '#title' => t('This is a GDPR field'),
      '#default_value' => $config->enabled,
    ];
    $form['gdpr_relationship'] = [
      '#type' => 'value',
      '#value' => GdprField::RELATIONSHIP_DISABLED,
    ];
    $form['gdpr_sars_filename'] = [
      '#type' => 'value',
      '#value' => $config->sarsFilename,
    ];
    if ($fieldDefinition
      ->getType() === 'entity_reference') {
      $innerEntityType = $fieldDefinition
        ->getSetting('target_type');
      $innerEntityDefinition = $entityTypeManager
        ->getDefinition($innerEntityType);
      $form['gdpr_relationship'] = [
        '#type' => 'select',
        '#default_value' => $config->relationship,
        '#options' => [
          GdprField::RELATIONSHIP_DISABLED => new TranslatableMarkup('Do not follow this relationship.'),
          GdprField::RELATIONSHIP_FOLLOW => new TranslatableMarkup('This %entity_type_label owns the referenced %target_entity_type_label (Relationship will be followed)', [
            '%entity_type_label' => $entityDefinition
              ->getLabel(),
            '%target_entity_type_label' => $innerEntityDefinition
              ->getLabel(),
          ]),
          GdprField::RELATIONSHIP_OWNER => new TranslatableMarkup('This %entity_type_label is owned by the referenced %target_entity_type_label', [
            '%entity_type_label' => $entityDefinition
              ->getLabel(),
            '%target_entity_type_label' => $innerEntityDefinition
              ->getLabel(),
          ]),
        ],
        '#title' => t('Relationship Handling'),
        '#description' => new TranslatableMarkup('Owned entities are included in any task which contains the owner.', [
          '%type' => $innerEntityDefinition
            ->getLabel(),
        ]),
        '#states' => [
          'visible' => [
            ':input[name="gdpr_enabled"]' => [
              'checked' => TRUE,
            ],
          ],
        ],
      ];
    }
    $form['gdpr_rta'] = [
      '#type' => 'select',
      '#weight' => 10,
      '#title' => t('Right to access'),
      '#options' => GdprField::rtaOptions(),
      '#default_value' => $config->rta,
      '#states' => [
        'visible' => [
          ':input[name="gdpr_enabled"]' => [
            'checked' => TRUE,
          ],
        ],
      ],
    ];
    $form['gdpr_rtf'] = [
      '#weight' => 20,
      '#type' => 'select',
      '#title' => t('Right to be forgotten'),
      '#options' => GdprField::rtfOptions(),
      '#default_value' => $config->rtf,
      '#states' => [
        'visible' => [
          ':input[name="gdpr_enabled"]' => [
            'checked' => TRUE,
          ],
        ],
      ],
    ];
    $errorMessage = NULL;
    if ($entityDefinition
      ->getKey('id') === $field_name) {

      // If this is the entity's ID, treat the removal as remove the entire
      // entity.
      unset($form['gdpr_rtf']['#options']['anonymise']);
      $form['gdpr_rtf']['#options']['remove'] = new TranslatableMarkup('Delete entire entity');

      // Define target filename for this bundle.
      // @todo Move to a form alter in gdpr_tasks.
      // @todo Add <inherit> option to inherit owned entity filename.
      $form['gdpr_sars_filename'] = [
        '#type' => 'textfield',
        '#title' => t('Right to access filename'),
        '#description' => t('Specify the filename for the owned entity to go in. Use %inherit to keep the related entity in the same file.', []),
        // Default to the entity type.
        '#default_value' => $config->sarsFilename,
        '#field_suffix' => '.csv',
        '#size' => 20,
        // Between RTA and RTF.
        '#weight' => 15,
        '#required' => TRUE,
        '#states' => [
          'visible' => [
            ':input[name="gdpr_enabled"]' => [
              'checked' => TRUE,
            ],
          ],
        ],
      ];
    }
    elseif (!$config
      ->propertyCanBeRemoved($fieldDefinition, $errorMessage)) {
      unset($form['gdpr_rtf']['#options']['remove']);
      $form['gdpr_rtf_disabled'] = [
        '#type' => 'item',
        '#markup' => new TranslatableMarkup('This field cannot be removed, only anonymised.'),
        '#description' => $errorMessage,
      ];
    }

    // Force removal to 'no' for computed properties.
    if ($fieldDefinition
      ->isComputed()) {
      $form['gdpr_rtf']['#default_value'] = 'no';
      $form['gdpr_rtf']['#disabled'] = TRUE;
      $form['gdpr_rtf']['#description'] = t('*This is a computed field and cannot be removed.');
    }
    $sanitizerOptions = array_map(static function ($anonymizer) {
      return $anonymizer['label'];
    }, $anonymizerDefinitions);
    $form['gdpr_anonymizer'] = [
      '#weight' => 30,
      '#type' => 'select',
      '#title' => t('Anonymizer to use'),
      '#options' => $sanitizerOptions,
      '#default_value' => $config->anonymizer,
      '#states' => [
        'visible' => [
          ':input[name="gdpr_enabled"]' => [
            'checked' => TRUE,
          ],
          ':input[name="gdpr_rtf"]' => [
            'value' => 'anonymize',
          ],
        ],
        'required' => [
          ':input[name="gdpr_enabled"]' => [
            'checked' => TRUE,
          ],
          ':input[name="gdpr_rtf"]' => [
            'value' => 'anonymize',
          ],
        ],
      ],
    ];
    $form['gdpr_notes'] = [
      '#weight' => 40,
      '#type' => 'textarea',
      '#title' => 'Notes',
      '#default_value' => $config->notes,
      '#states' => [
        'visible' => [
          ':input[name="gdpr_enabled"]' => [
            'checked' => TRUE,
          ],
        ],
      ],
    ];
  }

  /**
   * {@inheritdoc}
   *
   * @throws \Drupal\Core\Entity\EntityStorageException
   * @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    if ($form_state
      ->getTriggeringElement()['#name'] === 'Cancel') {
      $form_state
        ->setRedirect('gdpr_fields.fields_list');
      return;
    }
    $config = $this
      ->setConfig($form_state
      ->getValue('entity_type'), $form_state
      ->getValue('bundle'), $form_state
      ->getValue('field_name'), $form_state
      ->getValue('gdpr_enabled'), $form_state
      ->getValue('gdpr_rta'), $form_state
      ->getValue('gdpr_rtf'), $form_state
      ->getValue('gdpr_anonymizer'), $form_state
      ->getValue('gdpr_notes'), $form_state
      ->getValue('gdpr_relationship'), $form_state
      ->getValue('gdpr_sars_filename'));
    $config
      ->save();
    $this->messenger
      ->addMessage('Field settings saved.');
    $form_state
      ->setRedirect('gdpr_fields.fields_list');
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DependencySerializationTrait::$_entityStorages protected property
DependencySerializationTrait::$_serviceIds protected property
DependencySerializationTrait::__sleep public function 2
DependencySerializationTrait::__wakeup public function 2
FormBase::$configFactory protected property The config factory. 3
FormBase::$requestStack protected property The request stack. 1
FormBase::$routeMatch protected property The route match.
FormBase::config protected function Retrieves a configuration object.
FormBase::configFactory protected function Gets the config factory for this form. 3
FormBase::container private function Returns the service container.
FormBase::currentUser protected function Gets the current user.
FormBase::getRequest protected function Gets the request object.
FormBase::getRouteMatch protected function Gets the route match.
FormBase::logger protected function Gets the logger for a specific channel.
FormBase::redirect protected function Returns a redirect response object for the specified route.
FormBase::resetConfigFactory public function Resets the configuration factory.
FormBase::setConfigFactory public function Sets the config factory for this form.
FormBase::setRequestStack public function Sets the request stack object to use.
FormBase::validateForm public function Form validation handler. Overrides FormInterface::validateForm 72
GdprFieldSettingsForm::$entityFieldManager protected property The entity field manager used to work with fields.
GdprFieldSettingsForm::$entityTypeManager protected property Entity type manager used to work with types.
GdprFieldSettingsForm::buildForm public function Form constructor. Overrides FormInterface::buildForm
GdprFieldSettingsForm::buildFormFields public static function Builds the form fields for GDPR settings.
GdprFieldSettingsForm::create public static function Instantiates a new instance of this class. Overrides FormBase::create
GdprFieldSettingsForm::getConfig private static function Gets the configuration for an entity/bundle/field.
GdprFieldSettingsForm::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId
GdprFieldSettingsForm::setConfig private function Sets the GDPR settings for a field.
GdprFieldSettingsForm::submitForm public function Overrides FormInterface::submitForm
GdprFieldSettingsForm::__construct public function GdprFieldSettingsForm constructor.
LoggerChannelTrait::$loggerFactory protected property The logger channel factory service.
LoggerChannelTrait::getLogger protected function Gets the logger for a specific channel.
LoggerChannelTrait::setLoggerFactory public function Injects the logger channel factory.
MessengerTrait::$messenger protected property The messenger. 27
MessengerTrait::messenger public function Gets the messenger. 27
MessengerTrait::setMessenger public function Sets the messenger.
RedirectDestinationTrait::$redirectDestination protected property The redirect destination service. 1
RedirectDestinationTrait::getDestinationArray protected function Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url.
RedirectDestinationTrait::getRedirectDestination protected function Returns the redirect destination service.
RedirectDestinationTrait::setRedirectDestination public function Sets the redirect destination service.
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.