This commit is contained in:
Alexandre
2023-02-12 14:37:03 +01:00
parent ab3d9e6ee2
commit 15357d9666
2 changed files with 70 additions and 2 deletions

View File

@@ -82,6 +82,7 @@
"TZ": "str?",
"cifspassword": "str?",
"cifsusername": "str?",
"customUI": "list(standard|combustion-release|transmission-web-control|kettu|flood-for-transmission|transmissionic)",
"download_dir": "str",
"incomplete_dir": "str?",
"localdisks": "str?",
@@ -94,5 +95,5 @@
},
"slug": "transmission_ls",
"url": "https://github.com/alexbelgium/hassio-addons",
"version": "4.0.0-r0-ls152-3"
}
"version": "4.0.0-r0-ls152-4"
}

View File

@@ -0,0 +1,67 @@
#!/usr/bin/with-contenv bashio
# shellcheck shell=bash
################
# Alternate UI #
################
CUSTOMUI=$(bashio::config 'customUI')
combustion-release|transmission-web-control|kettu|flood-for-transmission|transmissionic
# Install webui
if bashio::config.has_value 'customUI' && [ ! "$CUSTOMUI" = default ] && [ ! "$CUSTOMUI" = custom ]; then
### Variables
bashio::log.info "Alternate UI enabled : $CUSTOMUI. If webui don't work, disable this option"
### Download WebUI
case $CUSTOMUI in
"combustion-release")
curl -o /tmp/combustion.zip -L "https://github.com/Secretmapper/combustion/archive/release.zip"
unzip /tmp/combustion.zip -d /
;;
"transmission-web-control")
mkdir -p /tmp/twctemp && \
TWCVERSION=$(curl -s "https://api.github.com/repos/ronggang/transmission-web-control/releases/latest" | jq -r .tag_name)
curl -o /tmp/twc.tar.gz -L "https://github.com/ronggang/transmission-web-control/archive/${TWCVERSION}.tar.gz"
tar xf /tmp/twc.tar.gz -C /tmp/twctemp --strip-components=1
mv /tmp/twctemp/src /transmission-web-control
# Enables the original UI button in transmission-web-control
ln -s /usr/share/transmission/web/style /transmission-web-control && \
ln -s /usr/share/transmission/web/images /transmission-web-control && \
ln -s /usr/share/transmission/web/javascript /transmission-web-control && \
ln -s /usr/share/transmission/web/index.html /transmission-web-control/index.original.html
;;
"kettu")
mkdir -p /kettu && \
curl -o /tmp/kettu.tar.gz -L "https://github.com/endor/kettu/archive/master.tar.gz"
tar xf /tmp/kettu.tar.gz -C /kettu --strip-components=1
;;
"flood-for-transmission")
curl -o /tmp/flood-for-transmission.tar.gz -L "https://github.com/johman10/flood-for-transmission/releases/download/latest/flood-for-transmission.tar.gz"
tar xf /tmp/flood-for-transmission.tar.gz -C /
;;
"transmissionic")
TRANSMISSIONIC_VERSION=$(curl -s "https://api.github.com/repos/6c65726f79/Transmissionic/releases/latest" | jq -r .tag_name)
curl -o /tmp/transmissionic.zip -L "https://github.com/6c65726f79/Transmissionic/releases/download/${TRANSMISSIONIC_VERSION}/Transmissionic-webui-${TRANSMISSIONIC_VERSION}.zip"
unzip /tmp/transmissionic.zip -d /tmp
mv /tmp/web /transmissionic
;;
**)
exit 0
;;
esac
# Define variable
if cat /etc/services.d/*/*run* &>/dev/null; then sed -i "1a export $line" /etc/services.d/*/*run* 2>/dev/null; fi
if [ -d /var/run/s6/container_environment ]; then printf "%s" "/$CUSTOMUI/" > /var/run/s6/container_environment/TRANSMISSION_WEB_HOME; fi
fi