Skip to content
Snippets Groups Projects
Commit e89ec2d9 authored by lkmorlan's avatar lkmorlan Committed by Liam Morland
Browse files

Issue #3036845 by Liam Morland: Log pdftk errors using proc_open()

parent eabc649f
No related branches found
Tags 7.x-1.16 7.x-1.16-rc1
No related merge requests found
...@@ -1561,21 +1561,39 @@ function fillpdf_execute_merge($method, array $fields, $fillpdf, $mode = 'url', ...@@ -1561,21 +1561,39 @@ function fillpdf_execute_merge($method, array $fields, $fillpdf, $mode = 'url',
$pdftk_command[] = 'flatten'; $pdftk_command[] = 'flatten';
} }
$pdftk_command[] = 'drop_xfa'; $pdftk_command[] = 'drop_xfa';
ob_start(); $pdftk_command = implode(' ', $pdftk_command);
passthru(implode(' ', $pdftk_command));
$data = ob_get_clean();
$error = NULL; // Run the pdftk command and read stdout, stderr, and exit status.
if ($data === FALSE) { $descriptorspec = array(
$error = t('pdftk not properly installed. No PDF generated.'); 1 => array('pipe', 'w'),
} 2 => array('pipe', 'w'),
elseif (!$data) { );
$error = t('Error with pdftk. No PDF generated.'); $proc = proc_open($pdftk_command, $descriptorspec, $pipes);
// Read stdout.
$data = stream_get_contents($pipes[1]);
fclose($pipes[1]);
// Read stderr.
$stderr = stream_get_contents($pipes[2]);
fclose($pipes[2]);
// Read exit status.
$exit_status = proc_close($proc);
// Public error message if no data returned by pdftk.
if (!$data) {
drupal_set_message(t('Error with pdftk. No PDF generated.'), 'error');
} }
if ($error) {
drupal_set_message($error, 'error'); // Log errors when no PDF or non-zero exit status.
watchdog('fillpdf', $error, array(), WATCHDOG_ERROR); if (!$data || $exit_status !== 0) {
$message = 'Error with pdftk: Exit status: !exit_status; data length: !data_length; stderr: @stderr';
$variables = array(
'!exit_status' => $exit_status,
'!data_length' => strlen($data),
'@stderr' => $stderr,
);
watchdog('fillpdf', $message, $variables, WATCHDOG_ERROR);
} }
file_unmanaged_delete($xfdffile); file_unmanaged_delete($xfdffile);
break; break;
......
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