2018-08-24 22:06:55 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2019-01-12 14:54:04 +01:00
|
|
|
if [[ -z "$GID" ]]; then
|
|
|
|
GID="$UID"
|
|
|
|
fi
|
|
|
|
|
2018-10-24 15:46:15 +02:00
|
|
|
# Define functions.
|
|
|
|
function fixperms {
|
2022-03-03 17:17:54 +01:00
|
|
|
chown -R $UID:$GID /data
|
2022-03-04 10:04:38 +01:00
|
|
|
|
|
|
|
# /opt/mautrix-whatsapp is read-only, so disable file logging if it's pointing there.
|
2023-02-24 13:45:27 +01:00
|
|
|
if [[ "$(yq e '.logging.writers[1].filename' /data/config.yaml)" == "./logs/mautrix-whatsapp.log" ]]; then
|
|
|
|
yq -I4 e -i 'del(.logging.writers[1])' /data/config.yaml
|
2022-03-04 10:04:38 +01:00
|
|
|
fi
|
2018-10-24 15:46:15 +02:00
|
|
|
}
|
|
|
|
|
2019-01-12 14:54:04 +01:00
|
|
|
if [[ ! -f /data/config.yaml ]]; then
|
2018-08-24 22:06:55 +02:00
|
|
|
cp /opt/mautrix-whatsapp/example-config.yaml /data/config.yaml
|
|
|
|
echo "Didn't find a config file."
|
|
|
|
echo "Copied default config file to /data/config.yaml"
|
|
|
|
echo "Modify that config file to your liking."
|
|
|
|
echo "Start the container again after that to generate the registration file."
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2019-01-12 14:54:04 +01:00
|
|
|
if [[ ! -f /data/registration.yaml ]]; then
|
2022-04-09 16:04:36 +02:00
|
|
|
/usr/bin/mautrix-whatsapp -g -c /data/config.yaml -r /data/registration.yaml || exit $?
|
2018-08-24 22:06:55 +02:00
|
|
|
echo "Didn't find a registration file."
|
|
|
|
echo "Generated one for you."
|
2022-03-04 10:04:38 +01:00
|
|
|
echo "See https://docs.mau.fi/bridges/general/registering-appservices.html on how to use it."
|
2018-08-24 22:06:55 +02:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd /data
|
2018-10-24 15:46:15 +02:00
|
|
|
fixperms
|
|
|
|
exec su-exec $UID:$GID /usr/bin/mautrix-whatsapp
|