View source  
  <?php
namespace Drupal\webform\Form;
use Drupal\Component\Plugin\Exception\PluginNotFoundException;
use Drupal\Component\Transliteration\TransliterationInterface;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Form\SubformState;
use Drupal\Core\Language\LanguageManagerInterface;
use Drupal\webform\Plugin\WebformHandlerInterface;
use Drupal\webform\Utility\WebformFormHelper;
use Drupal\webform\WebformInterface;
use Drupal\webform\WebformTokenManagerInterface;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Symfony\Component\DependencyInjection\ContainerInterface;
abstract class WebformHandlerFormBase extends FormBase {
  use WebformDialogFormTrait;
  
  const MACHINE_NAME_MAXLENGHTH = 64;
  
  protected $languageManager;
  
  protected $transliteration;
  
  protected $tokenManager;
  
  protected $webform;
  
  protected $webformHandler;
  
  public function getFormId() {
    return 'webform_handler_form';
  }
  
  public function __construct(LanguageManagerInterface $language_manager, TransliterationInterface $transliteration, WebformTokenManagerInterface $token_manager) {
    $this->languageManager = $language_manager;
    $this->transliteration = $transliteration;
    $this->tokenManager = $token_manager;
  }
  
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('language_manager'), $container
      ->get('transliteration'), $container
      ->get('webform.token_manager'));
  }
  
  public function buildForm(array $form, FormStateInterface $form_state, WebformInterface $webform = NULL, $webform_handler = NULL) {
    $this->webform = $webform;
    try {
      $this->webformHandler = $this
        ->prepareWebformHandler($webform_handler);
    } catch (PluginNotFoundException $e) {
      throw new NotFoundHttpException("Invalid handler id: '{$webform_handler}'.");
    }
    
    if (!$this->webformHandler
      ->getHandlerId()) {
      $plugin_id = $this->webformHandler
        ->getPluginId();
      $cardinality = $this->webformHandler
        ->cardinality();
      $number_of_instances = $webform
        ->getHandlers($plugin_id)
        ->count();
      if ($cardinality !== WebformHandlerInterface::CARDINALITY_UNLIMITED && $cardinality <= $number_of_instances) {
        throw new NotFoundHttpException($this
          ->formatPlural($cardinality, 'Only @number instance is permitted', 'Only @number instances are permitted', [
          '@number' => $cardinality,
        ]));
      }
    }
    
    $form['#webform_id'] = $this->webform
      ->id();
    $form['#webform_handler_id'] = $this->webformHandler
      ->getHandlerId();
    $form['#webform_handler_plugin_id'] = $this->webformHandler
      ->getPluginId();
    $request = $this
      ->getRequest();
    $form['description'] = [
      '#type' => 'container',
      'text' => [
        '#markup' => $this->webformHandler
          ->description(),
        '#prefix' => '<p>',
        '#suffix' => '</p>',
      ],
      '#weight' => -20,
    ];
    $form['id'] = [
      '#type' => 'value',
      '#value' => $this->webformHandler
        ->getPluginId(),
    ];
    $form['general'] = [
      '#type' => 'fieldset',
      '#title' => $this
        ->t('General settings'),
      '#weight' => -10,
    ];
    $form['general']['label'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Title'),
      '#maxlength' => 255,
      '#default_value' => $this->webformHandler
        ->label(),
      '#required' => TRUE,
      '#attributes' => [
        'autofocus' => 'autofocus',
      ],
    ];
    $form['general']['handler_id'] = [
      '#type' => 'machine_name',
      '#maxlength' => static::MACHINE_NAME_MAXLENGHTH,
      '#description' => $this
        ->t('A unique name for this handler instance. Must be alpha-numeric and underscore separated.'),
      '#default_value' => $this->webformHandler
        ->getHandlerId() ?: $this
        ->getUniqueMachineName($this->webformHandler),
      '#required' => TRUE,
      '#disabled' => $this->webformHandler
        ->getHandlerId() ? TRUE : FALSE,
      '#machine_name' => [
        'source' => [
          'general',
          'label',
        ],
        'exists' => [
          $this,
          'exists',
        ],
      ],
    ];
    $form['general']['notes'] = [
      '#type' => 'textarea',
      '#title' => $this
        ->t('Administrative notes'),
      '#description' => $this
        ->t("Entered text will be displayed on the handlers administrative page and replace this handler's default description."),
      '#rows' => 2,
      '#default_value' => $this->webformHandler
        ->getNotes(),
    ];
    $form['advanced'] = [
      '#type' => 'fieldset',
      '#title' => $this
        ->t('Advanced settings'),
      '#weight' => -10,
    ];
    $form['advanced']['status'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Enable the %name handler.', [
        '%name' => $this->webformHandler
          ->label(),
      ]),
      '#return_value' => TRUE,
      '#default_value' => $this->webformHandler
        ->isEnabled(),
      
      '#disabled' => $this->webformHandler
        ->getPluginId() === 'broken',
    ];
    $form['#parents'] = [];
    $form['settings'] = [
      '#tree' => TRUE,
      '#parents' => [
        'settings',
      ],
    ];
    $subform_state = SubformState::createForSubform($form['settings'], $form, $form_state);
    $form['settings'] = $this->webformHandler
      ->buildConfigurationForm($form['settings'], $subform_state);
    
    if (isset($form['settings']['#attributes']['novalidate'])) {
      $form['#attributes']['novalidate'] = 'novalidate';
    }
    $form['settings']['#tree'] = TRUE;
    
    if ($this->webformHandler
      ->supportsConditions()) {
      $form['conditional_logic'] = [
        '#type' => 'fieldset',
        '#title' => $this
          ->t('Conditional logic'),
      ];
      $form['conditional_logic']['conditions'] = [
        '#type' => 'webform_element_states',
        '#state_options' => [
          'enabled' => $this
            ->t('Enabled'),
          'disabled' => $this
            ->t('Disabled'),
        ],
        '#selector_options' => $webform
          ->getElementsSelectorOptions([
          'excluded_elements' => [],
        ]),
        '#selector_sources' => $webform
          ->getElementsSelectorSourceValues(),
        '#multiple' => FALSE,
        '#default_value' => $this->webformHandler
          ->getConditions(),
      ];
    }
    
    $form['weight'] = [
      '#type' => 'hidden',
      '#value' => $request->query
        ->has('weight') ? (int) $request->query
        ->get('weight') : $this->webformHandler
        ->getWeight(),
    ];
    
    $tabs = [
      'conditions' => [
        'title' => $this
          ->t('Conditions'),
        'elements' => [
          'conditional_logic',
        ],
        'weight' => 10,
      ],
      'advanced' => [
        'title' => $this
          ->t('Advanced'),
        'elements' => [
          'advanced',
          'additional',
          'development',
        ],
        'weight' => 20,
      ],
    ];
    $form = WebformFormHelper::buildTabs($form, $tabs);
    $form['actions'] = [
      '#type' => 'actions',
    ];
    $form['actions']['submit'] = [
      '#type' => 'submit',
      '#value' => $this
        ->t('Save'),
      '#button_type' => 'primary',
    ];
    
    $form['token_tree_link'] = $this->tokenManager
      ->buildTreeElement();
    if ($form['token_tree_link']) {
      $form['token_tree_link'] += [
        '#weight' => 101,
      ];
    }
    return $this
      ->buildDialogForm($form, $form_state);
  }
  
  public function validateForm(array &$form, FormStateInterface $form_state) {
    
    $subform_state = SubformState::createForSubform($form['settings'], $form, $form_state);
    $this->webformHandler
      ->validateConfigurationForm($form, $subform_state);
    
    $this
      ->processHandlerFormErrors($subform_state, $form_state);
    
    $form_state
      ->setValue('settings', $subform_state
      ->getValues());
  }
  
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $form_state
      ->cleanValues();
    
    $subform_state = SubformState::createForSubform($form['settings'], $form, $form_state);
    $this->webformHandler
      ->submitConfigurationForm($form, $subform_state);
    
    $form_state
      ->setValue('settings', $subform_state
      ->getValues());
    $this->webformHandler
      ->setHandlerId($form_state
      ->getValue('handler_id'));
    $this->webformHandler
      ->setLabel($form_state
      ->getValue('label'));
    $this->webformHandler
      ->setNotes($form_state
      ->getValue('notes'));
    $this->webformHandler
      ->setStatus($form_state
      ->getValue('status'));
    $this->webformHandler
      ->setWeight($form_state
      ->getValue('weight'));
    
    if (!$this->webformHandler
      ->supportsConditions() || $this->webformHandler
      ->isDisabled()) {
      $this->webformHandler
        ->setConditions([]);
    }
    else {
      $this->webformHandler
        ->setConditions($form_state
        ->getValue('conditions'));
    }
    if ($this instanceof WebformHandlerAddForm) {
      $this->webform
        ->addWebformHandler($this->webformHandler);
      $this
        ->messenger()
        ->addStatus($this
        ->t('The webform handler was successfully added.'));
    }
    else {
      $this->webform
        ->updateWebformHandler($this->webformHandler);
      $this
        ->messenger()
        ->addStatus($this
        ->t('The webform handler was successfully updated.'));
    }
    $form_state
      ->setRedirectUrl($this->webform
      ->toUrl('handlers', [
      'query' => [
        'update' => $this->webformHandler
          ->getHandlerId(),
      ],
    ]));
  }
  
  public function getUniqueMachineName(WebformHandlerInterface $handler) {
    
    $label = (string) $this->webformHandler
      ->label();
    
    $langcode = $this->languageManager
      ->getCurrentLanguage()
      ->getId();
    
    $suggestion = $this->transliteration
      ->transliterate($label, $langcode, '_', static::MACHINE_NAME_MAXLENGHTH);
    $suggestion = mb_strtolower($suggestion);
    $suggestion = preg_replace('@' . strtr('[^a-z0-9_]+', [
      '@' => '\\@',
      chr(0) => '',
    ]) . '@', '_', $suggestion);
    
    $count = 1;
    $machine_default = $suggestion;
    $instance_ids = $this->webform
      ->getHandlers()
      ->getInstanceIds();
    while (isset($instance_ids[$machine_default])) {
      $machine_default = $suggestion . '_' . $count++;
    }
    return $machine_default;
  }
  
  public function exists($handler_id) {
    $instance_ids = $this->webform
      ->getHandlers()
      ->getInstanceIds();
    return isset($instance_ids[$handler_id]) ? TRUE : FALSE;
  }
  
  public function getWebform() {
    return $this->webform;
  }
  
  public function getWebformHandler() {
    return $this->webformHandler;
  }
  
  protected function processHandlerFormErrors(FormStateInterface $handler_state, FormStateInterface &$form_state) {
    foreach ($handler_state
      ->getErrors() as $name => $message) {
      $form_state
        ->setErrorByName($name, $message);
    }
  }
}