eca-1.0.x-dev/modules/endpoint/src/Plugin/Action/RequestActionBase.php
modules/endpoint/src/Plugin/Action/RequestActionBase.php
<?php
namespace Drupal\eca_endpoint\Plugin\Action;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Access\AccessResultInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\eca\Plugin\Action\ConfigurableActionBase;
use Drupal\eca_endpoint\Event\EndpointResponseEvent;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\HttpKernel\Event\ResponseEvent;
/**
* Base class for request actions.
*/
abstract class RequestActionBase extends ConfigurableActionBase {
/**
* The request stack.
*
* @var \Symfony\Component\HttpFoundation\RequestStack
*/
protected RequestStack $requestStack;
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition): static {
$instance = parent::create($container, $configuration, $plugin_id, $plugin_definition);
$instance->requestStack = $container->get('request_stack');
return $instance;
}
/**
* Get the request.
*
* @return \Symfony\Component\HttpFoundation\Request|null
* The request, or NULL if no request is available.
*/
public function getRequest(): ?Request {
if ($this->event instanceof EndpointResponseEvent) {
return $this->event->request;
}
if ($this->event instanceof ResponseEvent) {
return $this->event->getRequest();
}
return $this->requestStack->getCurrentRequest();
}
/**
* {@inheritdoc}
*/
public function defaultConfiguration(): array {
return [
'token_name' => '',
] + parent::defaultConfiguration();
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state): array {
$form['token_name'] = [
'#type' => 'textfield',
'#title' => $this->t('Name of token'),
'#default_value' => $this->configuration['token_name'],
'#weight' => -30,
'#required' => TRUE,
'#eca_token_reference' => TRUE,
];
return parent::buildConfigurationForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function submitConfigurationForm(array &$form, FormStateInterface $form_state): void {
$this->configuration['token_name'] = $form_state->getValue('token_name');
parent::submitConfigurationForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function access($object, ?AccountInterface $account = NULL, $return_as_object = FALSE): AccessResultInterface|bool {
$result = $this->getRequest() ? AccessResult::allowed() : AccessResult::forbidden("No request available.");
return $return_as_object ? $result : $result->isAllowed();
}
/**
* {@inheritdoc}
*/
public function execute(): void {
if ($this->getRequest()) {
$this->tokenService->addTokenData($this->configuration['token_name'], $this->getRequestValue());
}
}
/**
* Get the requested value from the request, suitable to be stored as token.
*
* @return mixed
* The value.
*/
abstract protected function getRequestValue(): mixed;
}
