ef300cf28e
Co-authored-by: Stefan Weil <sw@weilnetz.de>
52 lines
1.5 KiB
Bash
52 lines
1.5 KiB
Bash
#!/bin/bash
|
|
set -e
|
|
set -u
|
|
PATH="/bin/:/usr/bin/"
|
|
|
|
# This is a sample script - adjust it per your need, to use Collabora online.
|
|
# 1 - setup a server with Collabora Online (CODE)
|
|
# You can run it with
|
|
# docker run -t -d -p 127.0.0.1:9980:9980 -e "domain=<your-dot-escaped-domain>" \
|
|
# -e "username=admin" -e "password=S3cRet" --restart always collabora/code
|
|
# See https://sdk.collaboraonline.com/docs/installation/CODE_Docker_image.html
|
|
# Or you can use an existing setup you have.
|
|
# 2 - replace the HOST information below with your server host
|
|
|
|
HOST=127.0.0.1
|
|
|
|
# Set this to "-k" to allow it to work in a test environment, ie with a self signed
|
|
# certificate
|
|
INSECURE=
|
|
|
|
# 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: Destination Format (pdf default)
|
|
# Param 4: Timeout (secs) (optional)
|
|
|
|
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;
|
|
|
|
|
|
source="$1"
|
|
dest="$2"
|
|
|
|
# If output format is missing, define PDF
|
|
convertTo="${3:-pdf}"
|
|
|
|
# If timeout is missing, define 60
|
|
timeoutSecs="${4:-60}"
|
|
# Truncate timeout to max 3 digits (as expected by sudoers)
|
|
timeoutSecs="${timeoutSecs:0:3}"
|
|
|
|
# The timeout is important.
|
|
|
|
timeout $(printf %03d $timeoutSecs)s curl $INSECURE -F "data=@${source}" https://$HOST:9980/cool/convert-to/$convertTo > "${dest}"
|
|
|
|
exit 0
|