Skip to content
Snippets Groups Projects
Commit 55312595 authored by Liam Morland's avatar Liam Morland Committed by Bernd Oliver Sünderhauf
Browse files

Issue #1904100: Use DOMDocument() in create_xfdf() to avoid use of htmlspecialchars().

parent 36c27572
No related branches found
No related tags found
No related merge requests found
...@@ -6,26 +6,40 @@ ...@@ -6,26 +6,40 @@
*/ */
/** /**
* create_xfdf * Generates an XFDF file from values given in an associative array.
* *
* Takes values passed via associative array and generates XFDF file format * @param string $file
* with that data for the pdf address sullpiled. * The PDF file: URL or file path accepted.
* @param array $info
* Key/value pairs of the field data.
* @param string $enc
* The character encoding. Must match server output: default_charset in php.ini.
* *
* @param string $file The pdf file - url or file path accepted * @return string
* @param array $info data to use in key/value pairs no more than 2 dimensions * The contents of the XFDF file.
* @param string $enc default UTF-8, match server output: default_charset in php.ini
* @return string The XFDF data for acrobat reader to use in the pdf form file
*/ */
function create_xfdf($file, $info, $enc = 'UTF-8') { function create_xfdf($file, $info, $enc = 'UTF-8') {
$data = '<?xml version="1.0" encoding="' . $enc . '"?>' . "\n" . $doc = new DOMDocument('1.0', $enc);
'<xfdf xmlns="http://ns.adobe.com/xfdf/" xml:space="preserve">' . "\n" .
'<fields>' . "\n"; $xfdf_ele = $doc->appendChild($doc->createElement('xfdf'));
$xfdf_ele->setAttribute('xmlns', 'http://ns.adobe.com/xfdf/');
$xfdf_ele->setAttribute('xml:space', 'preserve');
$fields_ele = $xfdf_ele->appendChild($doc->createElement('fields'));
foreach ($info as $name => $value) { foreach ($info as $name => $value) {
$data .= '<field name="' . htmlspecialchars($name) . '"><value>' . htmlspecialchars($value) . '</value></field>' . "\n"; $field_ele = $fields_ele->appendChild($doc->createElement('field'));
$field_ele->setAttribute('name', $name);
$value_ele = $field_ele->appendChild($doc->createElement('value'));
$value_ele->appendChild($doc->createTextNode($value));
} }
$data .= '</fields>' . "\n" .
'<ids original="' . md5($file) . '" modified="' . REQUEST_TIME . '" />' . "\n" . $ids_ele = $xfdf_ele->appendChild($doc->createElement('ids'));
'<f href="' . $file . '" />' . "\n" . $ids_ele->setAttribute('original', md5($file));
'</xfdf>' . "\n"; $ids_ele->setAttribute('modified', REQUEST_TIME);
return $data;
$f_ele = $xfdf_ele->appendChild($doc->createElement('f'));
$f_ele->setAttribute('href', $file);
return $doc->saveXML();
} }
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