You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.8 KiB
44 lines
1.8 KiB
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
KEY=$(relation-get secret) || true
|
|
|
|
if [ -z "$KEY" ]; then
|
|
KEY=$(gen_password 64)
|
|
fi
|
|
|
|
## XXXvlab: we really need to have a state based cache thingy, because
|
|
## setting the same password each time is really time consumming.
|
|
compose --no-relations --no-init \
|
|
occ "$MASTER_TARGET_SERVICE_NAME" \
|
|
app:install onlyoffice \; \
|
|
config:system:set onlyoffice DocumentServerInternalUrl --value="http://$MASTER_BASE_SERVICE_NAME/" \; \
|
|
config:system:set onlyoffice StorageUrl --value="http://$MASTER_TARGET_SERVICE_NAME/" \; \
|
|
config:app:set onlyoffice jwt_secret --value="$KEY" \; \
|
|
config:system:set allow_local_remote_servers --type=boolean --value=true
|
|
|
|
|
|
ONLYOFFICE_CFG="$SERVICE_CONFIGSTORE/etc/onlyoffice/documentserver/local.json"
|
|
out=$(jq ".services.CoAuthoring.token.enable.browser = true |
|
|
.services.CoAuthoring.token.enable.request.inbox = true |
|
|
.services.CoAuthoring.token.enable.request.outbox = true |
|
|
.services.CoAuthoring.secret.inbox.string = \"$KEY\" |
|
|
.services.CoAuthoring.secret.outbox.string = \"$KEY\" |
|
|
.services.CoAuthoring.secret.session.string = \"$KEY\"" \
|
|
"$ONLYOFFICE_CFG")
|
|
|
|
H1=$(cat "$ONLYOFFICE_CFG" | hash_get)
|
|
H2=$(echo "$out" | hash_get)
|
|
if [ "$H1" != "$H2" ]; then
|
|
echo "$out" > "$ONLYOFFICE_CFG"
|
|
|
|
## XXXvlab: onlyoffice need to be restarted if already running and local.json changed.
|
|
## it is about docker exec $SERVICE_NAME supervisor restart ...
|
|
for container_id in $(get_running_containers_for_service "$SERVICE_NAME"); do
|
|
## restarting all as documented here: https://api.onlyoffice.com/editors/signature/
|
|
docker exec "$container_id" supervisorctl restart all
|
|
done
|
|
relation-set secret "$KEY"
|
|
|
|
fi
|