Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UHF-10845 #1540

Merged
merged 14 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
use Drupal\Core\Datetime\DateFormatter;
use Drupal\Core\Datetime\DrupalDateTime;
use Drupal\Core\DrupalKernel;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\Core\Session\AccountProxyInterface;
Expand Down Expand Up @@ -58,7 +59,7 @@
* \Drupal\webform\Plugin\WebformHandlerInterface::SUBMISSION_REQUIRED,
* )
*/
class GrantsHandler extends WebformHandlerBase {
final class GrantsHandler extends WebformHandlerBase {

/**
* Form data saved because the data in saved submission is not preserved.
Expand All @@ -77,7 +78,7 @@ class GrantsHandler extends WebformHandlerBase {
*
* @var string
*/
protected string $applicationType;
protected string $applicationType = '';

/**
* Applicant type.
Expand All @@ -86,21 +87,21 @@ class GrantsHandler extends WebformHandlerBase {
*
* @var string
*/
protected string $applicantType;
protected string $applicantType = '';

/**
* Application type ID.
*
* @var string
*/
protected string $applicationTypeID;
protected string $applicationTypeID = '';

/**
* Generated application number.
*
* @var string
*/
protected string $applicationNumber;
protected string $applicationNumber = '';

/**
* Application acting year options.
Expand All @@ -118,54 +119,12 @@ class GrantsHandler extends WebformHandlerBase {
*/
protected string $newStatus;

/**
* Drupal\Core\Session\AccountProxyInterface definition.
*
* @var \Drupal\Core\Session\AccountProxyInterface
*/
protected AccountProxyInterface $currentUser;

/**
* User data from helsinkiprofiili & auth methods.
*
* @var \Drupal\helfi_helsinki_profiili\HelsinkiProfiiliUserData
*/
protected HelsinkiProfiiliUserData $userExternalData;

/**
* Access GRants profile.
*
* @var \Drupal\grants_profile\GrantsProfileService
*/
protected GrantsProfileService $grantsProfileService;

/**
* Date formatter.
*
* @var \Drupal\Core\Datetime\DateFormatter
*/
protected DateFormatter $dateFormatter;

/**
* All attachment-related things.
*
* @var \Drupal\grants_attachments\AttachmentHandler
*/
protected AttachmentHandler $attachmentHandler;

/**
* Form lock service.
*
* @var \Drupal\grants_handler\FormLockService
*/
protected FormLockService $formLockService;

/**
* Save form trigger for methods where form_state is not available.
*
* @var string
*/
protected string $triggeringElement;
protected string $triggeringElement = '';

/**
* Save form for methods where form is not available.
Expand All @@ -186,164 +145,116 @@ class GrantsHandler extends WebformHandlerBase {
*
* @var bool
*/
protected bool $isRedirect;

/**
* Help with stored errors.
*
* @var \Drupal\grants_handler\GrantsHandlerNavigationHelper
*/
protected GrantsHandlerNavigationHelper $grantsFormNavigationHelper;

/**
* The Drupal kernel.
*
* @var \Drupal\Core\DrupalKernel
*/
protected DrupalKernel $kernel;

/**
* The request stack.
*
* @var \Symfony\Component\HttpFoundation\RequestStack
*/
protected RequestStack $requestStack;

/**
* Application validator.
*
* @var \Drupal\grants_handler\ApplicationValidator
*/
protected ApplicationValidator $applicationValidator;

/**
* Status service.
*
* @var \Drupal\grants_handler\ApplicationStatusService
*/
protected ApplicationStatusService $applicationStatusService;
protected bool $isRedirect = FALSE;

/**
* Application data service.
*
* @var \Drupal\grants_metadata\ApplicationDataService
*/
protected ApplicationDataService $applicationDataService;

/**
* Init application data.
*
* @var \Drupal\grants_handler\ApplicationInitService
*/
protected ApplicationInitService $applicationInitService;

/**
* Uploader class.
*
* @var \Drupal\grants_handler\ApplicationUploaderService
* The constructor.
*
* @param array $configuration
* The configuration.
* @param string $plugin_id
* The plugin id.
* @param mixed $plugin_definition
* The plugin definition.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
* The entity type manager.
* @param \Drupal\Core\Session\AccountProxyInterface $currentUser
* The account proxy.
* @param \Drupal\helfi_helsinki_profiili\HelsinkiProfiiliUserData $userExternalData
* The helsinki profiili user data.
* @param \Drupal\grants_profile\GrantsProfileService $grantsProfileService
* The grants profile service.
* @param \Drupal\Core\Datetime\DateFormatter $dateFormatter
* The date formatter.
* @param \Drupal\grants_attachments\AttachmentHandler $attachmentHandler
* The attachment handler.
* @param \Drupal\grants_handler\GrantsHandlerNavigationHelper $grantsFormNavigationHelper
* The grants form navigation helper.
* @param \Drupal\grants_handler\ApplicationValidator $applicationValidator
* The application validator.
* @param \Drupal\grants_handler\ApplicationStatusService $applicationStatusService
* The application status service.
* @param \Drupal\grants_handler\FormLockService $formLockService
* The form lock service.
* @param \Drupal\Core\DrupalKernel $kernel
* The kernel.
* @param \Symfony\Component\HttpFoundation\RequestStack $requestStack
* The request stack.
* @param \Drupal\grants_metadata\ApplicationDataService $applicationDataService
* The application data service.
* @param \Drupal\grants_handler\ApplicationInitService $applicationInitService
* The application init service.
* @param \Drupal\grants_handler\ApplicationUploaderService $applicationUploaderService
* The application upload service.
* @param \Drupal\grants_handler\ApplicationGetterService $applicationGetterService
* The application getter service.
* @param \Drupal\grants_attachments\AttachmentRemover $attachmentRemover
* The attachment remover.
*/
protected ApplicationUploaderService $applicationUploaderService;

/**
* Access to application data.
*
* @var \Drupal\grants_handler\ApplicationGetterService
*/
protected ApplicationGetterService $applicationGetterService;

/**
* Attachment remover.
*
* @var \Drupal\grants_attachments\AttachmentRemover
*/
protected AttachmentRemover $attachmentRemover;
public function __construct(
array $configuration,
$plugin_id,
$plugin_definition,
EntityTypeManagerInterface $entityTypeManager,
protected AccountProxyInterface $currentUser,
protected HelsinkiProfiiliUserData $userExternalData,
protected GrantsProfileService $grantsProfileService,
protected DateFormatter $dateFormatter,
protected AttachmentHandler $attachmentHandler,
protected GrantsHandlerNavigationHelper $grantsFormNavigationHelper,
protected ApplicationValidator $applicationValidator,
protected ApplicationStatusService $applicationStatusService,
protected FormLockService $formLockService,
protected DrupalKernel $kernel,
protected RequestStack $requestStack,
protected ApplicationDataService $applicationDataService,
protected ApplicationInitService $applicationInitService,
protected ApplicationUploaderService $applicationUploaderService,
protected ApplicationGetterService $applicationGetterService,
protected AttachmentRemover $attachmentRemover,
) {
parent::__construct(
$configuration,
$plugin_id,
$plugin_definition,
);
$this->entityTypeManager = $entityTypeManager;
$this->attachmentHandler->setDebug($this->isDebug());
$this->applicationValidator->setDebug($this->isDebug());
$this->applicationStatusService->setDebug($this->isDebug());
}

/**
* {@inheritdoc}
* {@inheritDoc}
*/
public static function create(
ContainerInterface $container,
array $configuration,
$plugin_id,
$plugin_definition,
): WebformHandlerBase|GrantsHandler|ContainerFactoryPluginInterface {
$instance = parent::create($container, $configuration, $plugin_id, $plugin_definition);

/** @var \Drupal\Core\Session\AccountProxyInterface $currentUser */
$currentUser = $container->get('current_user');
$instance->currentUser = $currentUser;

/** @var \Drupal\helfi_helsinki_profiili\HelsinkiProfiiliUserData $userExternalData */
$userExternalData = $container->get('helfi_helsinki_profiili.userdata');
$instance->userExternalData = $userExternalData;

/** @var \Drupal\grants_profile\GrantsProfileService $grantsProfileService */
$grantsProfileService = $container->get('grants_profile.service');
$instance->grantsProfileService = $grantsProfileService;

/** @var \Drupal\Core\Datetime\DateFormatter $dateFormatter */
$dateFormatter = $container->get('date.formatter');
$instance->dateFormatter = $dateFormatter;

/** @var \Drupal\grants_attachments\AttachmentHandler $attachmentHandler */
$attachmentHandler = $container->get('grants_attachments.attachment_handler');
$instance->attachmentHandler = $attachmentHandler;
$instance->attachmentHandler->setDebug($instance->isDebug());

/** @var \Drupal\grants_handler\GrantsHandlerNavigationHelper $grantsFormNavigationHelper */
$grantsFormNavigationHelper = $container->get('grants_handler.navigation_helper');
$instance->grantsFormNavigationHelper = $grantsFormNavigationHelper;

/** @var \Drupal\grants_handler\ApplicationValidator $applicationValidator */
$applicationValidator = $container->get('grants_handler.application_validator');
$instance->applicationValidator = $applicationValidator;
$instance->applicationValidator->setDebug($instance->isDebug());

/** @var \Drupal\grants_handler\ApplicationStatusService $applicationStatusService */
$applicationStatusService = $container->get('grants_handler.application_status_service');
$instance->applicationStatusService = $applicationStatusService;
$instance->applicationStatusService->setDebug($instance->isDebug());

/** @var \Drupal\grants_handler\FormLockService $formLockService */
$formLockService = $container->get('grants_handler.form_lock_service');
$instance->formLockService = $formLockService;

/** @var \Drupal\Core\DrupalKernel $kernel */
$kernel = $container->get('kernel');
$instance->kernel = $kernel;

/** @var \Symfony\Component\HttpFoundation\RequestStack $requestStack */
$requestStack = $container->get('request_stack');
$instance->requestStack = $requestStack;

/** @var \Drupal\grants_metadata\ApplicationDataService $applicationDataService */
$applicationDataService = $container->get('grants_metadata.application_data_service');
$instance->applicationDataService = $applicationDataService;

/** @var \Drupal\grants_handler\ApplicationInitService $applicationInitService */
$applicationInitService = $container->get('grants_handler.application_init_service');
$instance->applicationInitService = $applicationInitService;

/** @var \Drupal\grants_handler\ApplicationUploaderService $applicationUploaderService */
$applicationUploaderService = $container->get('grants_handler.application_uploader_service');
$instance->applicationUploaderService = $applicationUploaderService;

/** @var \Drupal\grants_handler\ApplicationGetterService $applicationGetterService */
$applicationGetterService = $container->get('grants_handler.application_getter_service');
$instance->applicationGetterService = $applicationGetterService;

/** @var \Drupal\grants_attachments\AttachmentRemover $attachmentRemover */
$attachmentRemover = $container->get('grants_attachments.attachment_remover');
$instance->attachmentRemover = $attachmentRemover;

$instance->triggeringElement = '';
$instance->applicationNumber = '';
$instance->applicantType = '';
$instance->applicationTypeID = '';
$instance->applicationType = '';
$instance->isRedirect = FALSE;

return $instance;
return new self(
$configuration,
$plugin_id,
$plugin_definition,
$container->get('entity_type.manager'),
$container->get('current_user'),
$container->get('helfi_helsinki_profiili.userdata'),
$container->get('grants_profile.service'),
$container->get('date.formatter'),
$container->get('grants_attachments.attachment_handler'),
$container->get('grants_handler.navigation_helper'),
$container->get('grants_handler.application_validator'),
$container->get('grants_handler.application_status_service'),
$container->get('grants_handler.form_lock_service'),
$container->get('kernel'),
$container->get('request_stack'),
$container->get('grants_metadata.application_data_service'),
$container->get('grants_handler.application_init_service'),
$container->get('grants_handler.application_uploader_service'),
$container->get('grants_handler.application_getter_service'),
$container->get('grants_attachments.attachment_remover'),
);
}

/**
Expand Down Expand Up @@ -1534,10 +1445,9 @@ public function postSaveHandleApplicationNumber(WebformSubmissionInterface $webf
*/
public function postSave(WebformSubmissionInterface $webform_submission, $update = TRUE): void {
// Invalidate cache for this submission.
$this->entityTypeManager->getViewBuilder($webform_submission->getWebform()
->getEntityTypeId())->resetCache([
$webform_submission,
]);
$this->entityTypeManager
->getViewBuilder($webform_submission->getWebform()->getEntityTypeId())
->resetCache([$webform_submission]);

if (empty($this->submittedFormData)) {
return;
Expand Down
Loading