Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fillpdf
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
drupal.org
fillpdf
Commits
e89ec2d9
Commit
e89ec2d9
authored
5 years ago
by
lkmorlan
Committed by
Liam Morland
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Issue #3036845 by Liam Morland: Log pdftk errors using proc_open()
parent
eabc649f
No related branches found
Branches containing commit
Tags
7.x-1.16
7.x-1.16-rc1
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fillpdf.module
+30
-12
30 additions, 12 deletions
fillpdf.module
with
30 additions
and
12 deletions
fillpdf.module
+
30
−
12
View file @
e89ec2d9
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment