Skip to content
Snippets Groups Projects
Commit 786f7f79 authored by Kevin Kaland's avatar Kevin Kaland
Browse files

Issue #3105191 by wizonesolutions, liquidcms: Add API call to create PDFs

This fixes error reporting when something goes wrong with the underlying
backend.
parent 0dcc2512
No related branches found
No related tags found
No related merge requests found
......@@ -134,6 +134,7 @@ class HandlePdfController extends ControllerBase {
*
* @throws \InvalidArgumentException
* @throws \Drupal\Component\Plugin\Exception\PluginException
* @throws \Drupal\Core\Entity\EntityMalformedException
* If one of the passed arguments is missing or does not pass the
* validation.
*/
......@@ -198,6 +199,8 @@ class HandlePdfController extends ControllerBase {
* @return \Symfony\Component\HttpFoundation\Response
* The action plugin's response object.
*
* @throws \Drupal\Component\Plugin\Exception\PluginException
* @throws \Drupal\Core\Entity\EntityMalformedException
* @see \Drupal\fillpdf\FillPdfLinkManipulatorInterface::parseLink()
*/
protected function handlePopulatedPdf(FillPdfFormInterface $fillpdf_form, $pdf_data, array $context, $filename, array $entities) {
......
......@@ -67,10 +67,10 @@ class BackendProxy implements BackendProxyInterface {
];
// Populate mappings array.
$field_mappings = [];
$fieldMappings = [];
foreach ($fillPdfForm->getFormFields() as $pdf_key => $field) {
if ($mergeOptions['sample']) {
$field_mappings[$pdf_key] = new TextFieldMapping($pdf_key);
$fieldMappings[$pdf_key] = new TextFieldMapping($pdf_key);
}
else {
$options = [];
......@@ -88,7 +88,7 @@ class BackendProxy implements BackendProxyInterface {
// Resolve tokens.
$text = count($field->value) ? $field->value->value : '';
$field_mappings[$pdf_key] = $this->tokenResolver->replace($text, $entities, $options);
$fieldMappings[$pdf_key] = $this->tokenResolver->replace($text, $entities, $options);
}
}
......@@ -98,8 +98,18 @@ class BackendProxy implements BackendProxyInterface {
// @todo: Emit event (or call alter hook?) before populating PDF.
// Rename fillpdf_merge_fields_alter() to fillpdf_populate_fields_alter().
$template_file = File::load($fillPdfForm->file->target_id);
return $backend->mergeFile($template_file, $field_mappings, $mergeOptions);
/** @var \Drupal\file\FileInterface $templateFile */
$templateFile = File::load($fillPdfForm->file->target_id);
$mergedPdf = $backend->mergeFile($templateFile, $fieldMappings, $mergeOptions);
if (!is_string($mergedPdf)) {
// Make sure we return a string as not to get an error. The underlying
// backend will already have set more detailed errors.
$mergedPdf = '';
}
return $mergedPdf;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment