45 lines
1.2 KiB
Bash
45 lines
1.2 KiB
Bash
#!/bin/bash
|
|
set -e
|
|
set -u
|
|
PATH="/bin/:/usr/bin/"
|
|
|
|
# Conversion of office files to Pdf using local docker bbb-soffice
|
|
|
|
# This script receives three params
|
|
# Param 1: Input office file path (e.g. "/tmp/test.odt")
|
|
# Param 2: Output pdf file path (e.g. "/tmp/test.pdf")
|
|
# Param 3: Output format (pdf default)
|
|
|
|
if (( $# == 0 )); then
|
|
echo "Missing parameter 1 (Input office file path)";
|
|
exit 1
|
|
elif (( $# == 1 )); then
|
|
echo "Missing parameter 2 (Output pdf file path)";
|
|
exit 1
|
|
fi;
|
|
|
|
|
|
#Create tmp dir for conversion
|
|
mkdir -p "/tmp/bbb-soffice-$(whoami)/"
|
|
tempDir="$(mktemp -d -p /tmp/bbb-soffice-$(whoami)/)"
|
|
|
|
source="$1"
|
|
dest="$2"
|
|
|
|
#If output format is missing, define PDF
|
|
convertTo="${3:-pdf}"
|
|
convertToParam="--convert-to $convertTo"
|
|
|
|
#If output is html, include param --writer to avoid blank page
|
|
if [ ${1: -5} == ".html" ]
|
|
then
|
|
convertToParam="$convertToParam --writer"
|
|
fi
|
|
|
|
cp "${source}" "$tempDir/file"
|
|
sudo /usr/bin/docker run --rm --network none --env="HOME=/tmp/" -w /tmp/ --user=$(printf %05d `id -u`) -v "$tempDir/":/data/ -v /usr/share/fonts/:/usr/share/fonts/:ro --rm bbb-soffice sh -c "/usr/bin/soffice -env:UserInstallation=file:///tmp/ $convertToParam --outdir /data /data/file"
|
|
cp "$tempDir/file.$convertTo" "${dest}"
|
|
rm -r "$tempDir/"
|
|
|
|
exit 0
|