You are here

class ConfigSplitEntityForm in Configuration Split 2.0.x

Same name and namespace in other branches
  1. 8 src/Form/ConfigSplitEntityForm.php \Drupal\config_split\Form\ConfigSplitEntityForm

The entity form.

Hierarchy

Expanded class hierarchy of ConfigSplitEntityForm

File

src/Form/ConfigSplitEntityForm.php, line 16

Namespace

Drupal\config_split\Form
View source
class ConfigSplitEntityForm extends EntityForm {

  /**
   * The split status override service.
   *
   * @var \Drupal\config_split\Config\StatusOverride
   */
  protected $statusOverride;

  /**
   * The drupal state.
   *
   * @var \Drupal\Core\State\StateInterface
   */
  protected $state;

  /**
   * Drupal\Core\Extension\ThemeHandler definition.
   *
   * @var \Drupal\Core\Extension\ThemeHandlerInterface
   */
  protected $themeHandler;

  /**
   * Constructs a new class instance.
   *
   * @param \Drupal\config_split\Config\StatusOverride $statusOverride
   *   The split status override service.
   * @param \Drupal\Core\State\StateInterface $state
   *   The drupal state.
   * @param \Drupal\Core\Extension\ThemeHandlerInterface $themeHandler
   *   The theme handler.
   */
  public function __construct(StatusOverride $statusOverride, StateInterface $state, ThemeHandlerInterface $themeHandler) {
    $this->statusOverride = $statusOverride;
    $this->state = $state;
    $this->themeHandler = $themeHandler;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('config_split.status_override'), $container
      ->get('state'), $container
      ->get('theme_handler'));
  }

  /**
   * {@inheritdoc}
   */
  public function form(array $form, FormStateInterface $form_state) {
    $form = parent::form($form, $form_state);

    /** @var \Drupal\config_split\Entity\ConfigSplitEntityInterface $config */
    $config = $this->entity;
    $form['label'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Label'),
      '#maxlength' => 255,
      '#default_value' => $config
        ->label(),
      '#description' => $this
        ->t("Label for the Configuration Split setting."),
      '#required' => TRUE,
    ];
    $form['id'] = [
      '#type' => 'machine_name',
      '#default_value' => $config
        ->id(),
      '#machine_name' => [
        'exists' => '\\Drupal\\config_split\\Entity\\ConfigSplitEntity::load',
      ],
    ];
    $form['static_fieldset'] = [
      '#type' => 'fieldset',
      '#title' => $this
        ->t('Static Settings'),
      '#description' => $this
        ->t("These settings can be overridden in settings.php"),
    ];
    $form['static_fieldset']['description'] = [
      '#type' => 'textarea',
      '#title' => $this
        ->t('Description'),
      '#description' => $this
        ->t('Describe this config split setting. The text will be displayed on the <em>Configuration Split setting</em> list page.'),
      '#default_value' => $config
        ->get('description'),
    ];
    $form['static_fieldset']['storage'] = [
      '#type' => 'radios',
      '#title' => $this
        ->t('Storage'),
      '#description' => $this
        ->t('Select where you would like the split to be stored.<br /><em>Folder:</em> A specified directory on its own. Select this option if you want to decide the placement of your configuration directories.<br /><em>Collection:</em> A collection inside of the sync storage. Select this option if you want splits to be part of the main config, including in zip archives.<br /><em>Database:</em> A dedicated table in the database. Select this option if the split should not be shared (it will be included in database dumps).'),
      '#default_value' => $config
        ->get('storage') ?? 'folder',
      '#options' => [
        'folder' => $this
          ->t('Folder'),
        'collection' => $this
          ->t('Collection'),
        'database' => $this
          ->t('Database'),
      ],
    ];
    $form['static_fieldset']['folder'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Folder'),
      '#description' => $this
        ->t('The directory, relative to the Drupal root, in which to save the filtered config. This is typically a sibling directory of what you defined as <code>$settings["config_sync_directory"]</code> in settings.php, for more information consult the README.<br/>Configuration related to the "filtered" items below will be split from the main configuration and exported to this folder.'),
      '#default_value' => $config
        ->get('folder'),
      '#states' => [
        'visible' => [
          ':input[name="storage"]' => [
            'value' => 'folder',
          ],
        ],
        'required' => [
          ':input[name="storage"]' => [
            'value' => 'folder',
          ],
        ],
      ],
    ];
    $form['static_fieldset']['weight'] = [
      '#type' => 'number',
      '#title' => $this
        ->t('Weight'),
      '#description' => $this
        ->t('The weight to order the splits.'),
      '#default_value' => $config
        ->get('weight'),
    ];
    $form['static_fieldset']['status_fieldset'] = [
      '#type' => 'fieldset',
      '#title' => $this
        ->t('Status'),
      '#description' => $this
        ->t('Changing the status does not affect the other active config. You need to activate or deactivate the split for that.'),
    ];
    $overrideExample = '$config["config_split.config_split.' . ($config
      ->get('id') ?? 'example') . '"]["status"] = ' . ($config
      ->get('status') ? 'FALSE' : 'TRUE') . ';';
    $form['static_fieldset']['status_fieldset']['status'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Active'),
      '#description' => $this
        ->t('Active splits get used to split and merge when importing and exporting config, this property is likely what you want to override in settings.php, for example: <code>@example</code>', [
        '@example' => $overrideExample,
      ]),
      '#default_value' => $config
        ->get('status') ? TRUE : FALSE,
    ];
    $overrideDefault = $this->statusOverride
      ->getSplitOverride((string) $config
      ->id());
    if ($overrideDefault === NULL) {
      $overrideDefault = 'none';
    }
    else {
      $overrideDefault = $overrideDefault ? 'active' : 'inactive';
    }
    $form['static_fieldset']['status_fieldset']['status_override'] = [
      '#type' => 'select',
      '#title' => $this
        ->t('Status override'),
      '#default_value' => $overrideDefault,
      '#options' => [
        'none' => $this
          ->t('None'),
        'active' => $this
          ->t('Active'),
        'inactive' => $this
          ->t('Inactive'),
      ],
      '#description' => $this
        ->t('This setting will override the status of the split with a config override saved in the database (state). The config override from settings.php will override this and take precedence.'),
    ];
    $form['complete_fieldset'] = [
      '#type' => 'fieldset',
      '#title' => $this
        ->t('Complete Split'),
      '#description' => $this
        ->t("<em>Complete Split:</em>\n       Configuration listed here will be removed from the sync directory and\n       saved in the split storage instead. Modules will be removed from\n       core.extension when exporting (and added back when importing with the\n       split enabled.). Config dependencies are updated and their changes are\n       recorded in a config patch saved in in the split storage."),
    ];
    $module_handler = $this->moduleHandler;
    $modules = array_map(function ($module) use ($module_handler) {
      return $module_handler
        ->getName($module
        ->getName());
    }, $module_handler
      ->getModuleList());

    // Add the existing ones with the machine name so they do not get lost.
    $modules = $modules + array_combine(array_keys($config
      ->get('module')), array_keys($config
      ->get('module')));

    // Sorting module list by name for making selection easier.
    asort($modules, SORT_NATURAL | SORT_FLAG_CASE);
    $multiselect_type = 'select';
    if (!$this
      ->useSelectList()) {
      $multiselect_type = 'checkboxes';

      // Add the css library if we use checkboxes.
      $form['#attached']['library'][] = 'config_split/config-split-form';
    }
    $form['complete_fieldset']['module'] = [
      '#type' => $multiselect_type,
      '#title' => $this
        ->t('Modules'),
      '#description' => $this
        ->t('Select modules to split. Configuration depending on the modules is changed as if the module would be uninstalled or automatically split off completely as well.'),
      '#options' => $modules,
      '#size' => 20,
      '#multiple' => TRUE,
      '#default_value' => array_keys($config
        ->get('module')),
    ];

    // We should probably find a better way for this.
    $theme_handler = $this->themeHandler;
    $themes = array_map(function ($theme) use ($theme_handler) {
      return $theme_handler
        ->getName($theme
        ->getName());
    }, $theme_handler
      ->listInfo());
    $form['complete_fieldset']['theme'] = [
      '#type' => $multiselect_type,
      '#title' => $this
        ->t('Themes'),
      '#description' => $this
        ->t('Select themes to split.'),
      '#options' => $themes,
      '#size' => 5,
      '#multiple' => TRUE,
      '#default_value' => array_keys($config
        ->get('theme')),
    ];

    // At this stage we do not support themes. @TODO: support themes.
    $form['complete_fieldset']['theme']['#access'] = FALSE;
    $options = array_combine($this
      ->configFactory()
      ->listAll(), $this
      ->configFactory()
      ->listAll());
    $form['complete_fieldset']['complete_picker'] = [
      '#type' => $multiselect_type,
      '#title' => $this
        ->t('Configuration items'),
      '#description' => $this
        ->t('Select configuration to split. Configuration depending on split modules does not need to be selected here specifically.'),
      '#options' => $options,
      '#size' => 20,
      '#multiple' => TRUE,
      '#default_value' => array_intersect($config
        ->get('complete_list'), array_keys($options)),
    ];
    $form['complete_fieldset']['complete_text'] = [
      '#type' => 'textarea',
      '#title' => $this
        ->t('Additional configuration'),
      '#description' => $this
        ->t('Select additional configuration to split. One configuration key per line. You can use wildcards.'),
      '#size' => 5,
      '#default_value' => implode("\n", array_diff($config
        ->get('complete_list'), array_keys($options))),
    ];
    $form['partial_fieldset'] = [
      '#type' => 'fieldset',
      '#title' => $this
        ->t('Partial Split'),
      '#description' => $this
        ->t("<em>Partial Split:</em>\n       Configuration listed here will be left untouched in the main sync\n       directory. The <em>currently active</em> version will be compared to the\n       config in the sync directory and what is different is saved to the split\n       storage as a config patch.<br />\n       Use this for configuration that is different on your site but which\n       should also remain in the main sync directory."),
    ];
    $form['partial_fieldset']['partial_picker'] = [
      '#type' => $multiselect_type,
      '#title' => $this
        ->t('Configuration items'),
      '#description' => $this
        ->t('Select configuration to split partially.'),
      '#options' => $options,
      '#size' => 20,
      '#multiple' => TRUE,
      '#default_value' => array_intersect($config
        ->get('partial_list'), array_keys($options)),
    ];
    $form['partial_fieldset']['partial_text'] = [
      '#type' => 'textarea',
      '#title' => $this
        ->t('Additional configuration'),
      '#description' => $this
        ->t('Select additional configuration to partially split. One configuration key per line. You can use wildcards.'),
      '#size' => 5,
      '#default_value' => implode("\n", array_diff($config
        ->get('partial_list'), array_keys($options))),
    ];
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function validateForm(array &$form, FormStateInterface $form_state) {
    parent::validateForm($form, $form_state);
    $folder = $form_state
      ->getValue('folder');
    if (static::isConflicting($folder)) {
      $form_state
        ->setErrorByName('folder', $this
        ->t('The split folder can not be in the sync folder.'));
    }
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {

    // Transform the values from the form to correctly save the entity.
    $extensions = $this
      ->config('core.extension');

    // Add the configs modules so we can save inactive splits.
    $module_list = $extensions
      ->get('module') + $this->entity
      ->get('module');
    $moduleSelection = $this
      ->readValuesFromPicker($form_state
      ->getValue('module'));
    $form_state
      ->setValue('module', array_intersect_key($module_list, $moduleSelection));
    $themeSelection = $this
      ->readValuesFromPicker($form_state
      ->getValue('theme'));
    $form_state
      ->setValue('theme', array_intersect_key($extensions
      ->get('theme'), $themeSelection));
    $selection = $this
      ->readValuesFromPicker($form_state
      ->getValue('complete_picker'));
    $form_state
      ->setValue('complete_list', array_merge(array_keys($selection), $this
      ->filterConfigNames($form_state
      ->getValue('complete_text'))));
    $selection = $this
      ->readValuesFromPicker($form_state
      ->getValue('partial_picker'));
    $form_state
      ->setValue('partial_list', array_merge(array_keys($selection), $this
      ->filterConfigNames($form_state
      ->getValue('partial_text'))));
    parent::submitForm($form, $form_state);
    $statusOverride = $form_state
      ->getValue('status_override');
    $map = [
      'none' => NULL,
      'active' => TRUE,
      'inactive' => FALSE,
    ];
    if (!array_key_exists($statusOverride, $map)) {
      return;
    }
    $statusOverride = $map[$statusOverride];
    if ($statusOverride !== $this->statusOverride
      ->getSplitOverride($this->entity
      ->id())) {

      // Only update the override if it changed.
      $this->statusOverride
        ->setSplitOverride($this->entity
        ->id(), $statusOverride);
    }
  }

  /**
   * If the chosen or select2 module is active, the form must use select field.
   *
   * @return bool
   *   True if the form must use a select field
   */
  protected function useSelectList() {

    // Allow the setting to be overwritten with the drupal state.
    $stateOverride = $this->state
      ->get('config_split_use_select');
    if ($stateOverride !== NULL) {

      // Honestly this is probably only useful in tests or if another module
      // comes along and does what chosen or select2 do.
      return (bool) $stateOverride;
    }

    // Modules make the select widget useful.
    foreach ([
      'chosen',
      'select2_all',
    ] as $module) {
      if ($this->moduleHandler
        ->moduleExists($module)) {
        return TRUE;
      }
    }

    // Fall back to checkboxes.
    return FALSE;
  }

  /**
   * Read values selected depending on widget used: select or checkbox.
   *
   * @param array $pickerSelection
   *   The form value array.
   *
   * @return array
   *   Array of selected values
   */
  protected function readValuesFromPicker(array $pickerSelection) {
    if ($this
      ->useSelectList()) {
      $moduleSelection = $pickerSelection;
    }
    else {

      // Checkboxes return a value for each item. We only keep the selected one.
      $moduleSelection = array_filter($pickerSelection, function ($value) {
        return $value;
      });
    }
    return $moduleSelection;
  }

  /**
   * Filter text input for valid configuration names (including wildcards).
   *
   * @param string|string[] $text
   *   The configuration names, one name per line.
   *
   * @return string[]
   *   The array of configuration names.
   */
  protected function filterConfigNames($text) {
    if (!is_array($text)) {
      $text = explode("\n", $text);
    }
    foreach ($text as &$config_entry) {
      $config_entry = strtolower($config_entry);
    }

    // Filter out illegal characters.
    return array_filter(preg_replace('/[^a-z0-9_\\.\\-\\*]+/', '', $text));
  }

  /**
   * {@inheritdoc}
   */
  public function save(array $form, FormStateInterface $form_state) {
    $config_split = $this->entity;
    $status = $config_split
      ->save();
    switch ($status) {
      case SAVED_NEW:
        $this
          ->messenger()
          ->addStatus($this
          ->t('Created the %label Configuration Split setting.', [
          '%label' => $config_split
            ->label(),
        ]));
        break;
      default:
        $this
          ->messenger()
          ->addStatus($this
          ->t('Saved the %label Configuration Split setting.', [
          '%label' => $config_split
            ->label(),
        ]));
    }
    $folder = $form_state
      ->getValue('folder');
    if ($form_state
      ->getValue('storage') === 'folder' && !empty($folder) && !file_exists($folder)) {
      $this
        ->messenger()
        ->addWarning($this
        ->t('The storage path "%path" for %label Configuration Split setting does not exist. Make sure it exists and is writable.', [
        '%label' => $config_split
          ->label(),
        '%path' => $folder,
      ]));
    }
    $form_state
      ->setRedirectUrl($config_split
      ->toUrl('collection'));
    return $status;
  }

  /**
   * Check whether the folder name conflicts with the default sync directory.
   *
   * @param string $folder
   *   The split folder name to check.
   *
   * @return bool
   *   True if the folder is inside the sync directory.
   */
  protected static function isConflicting($folder) {
    return strpos(rtrim($folder, '/') . '/', rtrim(Settings::get('config_sync_directory'), '/') . '/') !== FALSE;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConfigSplitEntityForm::$state protected property The drupal state.
ConfigSplitEntityForm::$statusOverride protected property The split status override service.
ConfigSplitEntityForm::$themeHandler protected property Drupal\Core\Extension\ThemeHandler definition.
ConfigSplitEntityForm::create public static function Instantiates a new instance of this class. Overrides FormBase::create
ConfigSplitEntityForm::filterConfigNames protected function Filter text input for valid configuration names (including wildcards).
ConfigSplitEntityForm::form public function Gets the actual form array to be built. Overrides EntityForm::form
ConfigSplitEntityForm::isConflicting protected static function Check whether the folder name conflicts with the default sync directory.
ConfigSplitEntityForm::readValuesFromPicker protected function Read values selected depending on widget used: select or checkbox.
ConfigSplitEntityForm::save public function Form submission handler for the 'save' action. Overrides EntityForm::save
ConfigSplitEntityForm::submitForm public function This is the default entity object builder function. It is called before any other submit handler to build the new entity object to be used by the following submit handlers. At this point of the form workflow the entity is validated and the form state… Overrides EntityForm::submitForm
ConfigSplitEntityForm::useSelectList protected function If the chosen or select2 module is active, the form must use select field.
ConfigSplitEntityForm::validateForm public function Form validation handler. Overrides FormBase::validateForm
ConfigSplitEntityForm::__construct public function Constructs a new class instance.
DependencySerializationTrait::$_entityStorages protected property
DependencySerializationTrait::$_serviceIds protected property
DependencySerializationTrait::__sleep public function 2
DependencySerializationTrait::__wakeup public function 2
EntityForm::$entity protected property The entity being used by this form. 11
EntityForm::$entityTypeManager protected property The entity type manager. 3
EntityForm::$moduleHandler protected property The module handler service.
EntityForm::$operation protected property The name of the current operation.
EntityForm::actions protected function Returns an array of supported actions for the current entity form. 35
EntityForm::actionsElement protected function Returns the action form element for the current entity form.
EntityForm::afterBuild public function Form element #after_build callback: Updates the entity with submitted data.
EntityForm::buildEntity public function Builds an updated entity object based upon the submitted form values. Overrides EntityFormInterface::buildEntity 3
EntityForm::buildForm public function Form constructor. Overrides FormInterface::buildForm 13
EntityForm::copyFormValuesToEntity protected function Copies top-level form values to entity properties. 9
EntityForm::getBaseFormId public function Returns a string identifying the base form. Overrides BaseFormIdInterface::getBaseFormId 6
EntityForm::getEntity public function Gets the form entity. Overrides EntityFormInterface::getEntity
EntityForm::getEntityFromRouteMatch public function Determines which entity will be used by this form from a RouteMatch object. Overrides EntityFormInterface::getEntityFromRouteMatch 3
EntityForm::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId 12
EntityForm::getOperation public function Gets the operation identifying the form. Overrides EntityFormInterface::getOperation
EntityForm::init protected function Initialize the form state and the entity before the first form build. 3
EntityForm::prepareEntity protected function Prepares the entity object before the form is built first. 3
EntityForm::prepareInvokeAll protected function Invokes the specified prepare hook variant.
EntityForm::processForm public function Process callback: assigns weights and hides extra fields.
EntityForm::setEntity public function Sets the form entity. Overrides EntityFormInterface::setEntity
EntityForm::setEntityTypeManager public function Sets the entity type manager for this form. Overrides EntityFormInterface::setEntityTypeManager
EntityForm::setModuleHandler public function Sets the module handler for this form. Overrides EntityFormInterface::setModuleHandler
EntityForm::setOperation public function Sets the operation for this form. Overrides EntityFormInterface::setOperation
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.
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.