Skip to content
Snippets Groups Projects
Commit ea07b385 authored by Florian Azizian's avatar Florian Azizian
Browse files

FIX #11287 wrong encoding in txt converted in pdf

parent b934beec
No related branches found
No related tags found
No related merge requests found
...@@ -37,9 +37,8 @@ class ConvertPdfController ...@@ -37,9 +37,8 @@ class ConvertPdfController
$tmpPath = CoreConfigModel::getTmpPath(); $tmpPath = CoreConfigModel::getTmpPath();
self::addBom($aArgs['fullFilename']);
$command = "unoconv -f pdf " . escapeshellarg($aArgs['fullFilename']); $command = "unoconv -f pdf " . escapeshellarg($aArgs['fullFilename']);
exec('export HOME=' . $tmpPath . ' && '.$command.' 2>&1', $output, $return); exec('export HOME=' . $tmpPath . ' && '.$command.' 2>&1', $output, $return);
...@@ -94,6 +93,7 @@ class ConvertPdfController ...@@ -94,6 +93,7 @@ class ConvertPdfController
copy($pathToDocument, $tmpPath.$fileNameOnTmp.'.'.$docInfo["extension"]); copy($pathToDocument, $tmpPath.$fileNameOnTmp.'.'.$docInfo["extension"]);
if (strtolower($docInfo["extension"]) != 'pdf') { if (strtolower($docInfo["extension"]) != 'pdf') {
self::addBom($tmpPath.$fileNameOnTmp.'.'.$docInfo["extension"]);
$command = "unoconv -f pdf " . escapeshellarg($tmpPath.$fileNameOnTmp.'.'.$docInfo["extension"]); $command = "unoconv -f pdf " . escapeshellarg($tmpPath.$fileNameOnTmp.'.'.$docInfo["extension"]);
exec('export HOME=' . $tmpPath . ' && '.$command, $output, $return); exec('export HOME=' . $tmpPath . ' && '.$command, $output, $return);
...@@ -148,6 +148,7 @@ class ConvertPdfController ...@@ -148,6 +148,7 @@ class ConvertPdfController
file_put_contents($tmpPath . $tmpFilename, base64_decode($aArgs['encodedResource'])); file_put_contents($tmpPath . $tmpFilename, base64_decode($aArgs['encodedResource']));
self::addBom($tmpPath.$tmpFilename);
$command = "unoconv -f pdf {$tmpPath}{$tmpFilename}"; $command = "unoconv -f pdf {$tmpPath}{$tmpFilename}";
exec('export HOME=' . $tmpPath . ' && '.$command, $output, $return); exec('export HOME=' . $tmpPath . ' && '.$command, $output, $return);
...@@ -204,4 +205,13 @@ class ConvertPdfController ...@@ -204,4 +205,13 @@ class ConvertPdfController
return $canConvert; return $canConvert;
} }
public static function addBom($filePath) {
$extension = pathinfo($filePath, PATHINFO_EXTENSION);
if (strtolower($extension) == strtolower('txt')) {
$content = file_get_contents($filePath);
$bom = chr(239) . chr(187) . chr(191); # use BOM to be on safe side
file_put_contents($filePath, $bom.$content);
}
}
} }
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