mirror of
https://github.com/gilbN/theme.park.git
synced 2024-11-04 10:12:31 +01:00
Merge branch 'master' into develop
This commit is contained in:
commit
147a7c222d
46
.github/workflows/auto-build.yml
vendored
46
.github/workflows/auto-build.yml
vendored
@ -5,6 +5,40 @@ on:
|
|||||||
- master
|
- master
|
||||||
paths:
|
paths:
|
||||||
- 'docker-mods/**'
|
- 'docker-mods/**'
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
app:
|
||||||
|
description: 'Select an app'
|
||||||
|
required: true
|
||||||
|
type: choice
|
||||||
|
options:
|
||||||
|
- radarr
|
||||||
|
- sonarr
|
||||||
|
- readarr
|
||||||
|
- lidarr
|
||||||
|
- bazarr
|
||||||
|
- whisparr
|
||||||
|
- prowlarr
|
||||||
|
- plex
|
||||||
|
- jellyfin
|
||||||
|
- emby
|
||||||
|
- sabnzbd
|
||||||
|
- synclounge
|
||||||
|
- transmission
|
||||||
|
- calibre-web
|
||||||
|
- lazylibrarian
|
||||||
|
- mylar3
|
||||||
|
- duplicati
|
||||||
|
- tautulli
|
||||||
|
- vuetorrent
|
||||||
|
- deluge
|
||||||
|
- jackett
|
||||||
|
- librespeed
|
||||||
|
- nzbget
|
||||||
|
- qbittorrent
|
||||||
|
- rutorrent
|
||||||
|
- swag
|
||||||
|
- thelounge
|
||||||
jobs:
|
jobs:
|
||||||
push_to_ghcr_io:
|
push_to_ghcr_io:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -24,6 +58,7 @@ jobs:
|
|||||||
username: ${{ github.repository_owner }}
|
username: ${{ github.repository_owner }}
|
||||||
password: ${{ secrets.GH_PAT }}
|
password: ${{ secrets.GH_PAT }}
|
||||||
- name: find correct directory then build&push
|
- name: find correct directory then build&push
|
||||||
|
if: ${{ github.event_name == 'push' }}
|
||||||
run: |
|
run: |
|
||||||
for i in ${{ steps.getfile.outputs.files }}
|
for i in ${{ steps.getfile.outputs.files }}
|
||||||
do
|
do
|
||||||
@ -38,6 +73,11 @@ jobs:
|
|||||||
docker build docker-mods/$directory --tag ghcr.io/gilbn/theme.park:$directory
|
docker build docker-mods/$directory --tag ghcr.io/gilbn/theme.park:$directory
|
||||||
docker push ghcr.io/gilbn/theme.park:$directory
|
docker push ghcr.io/gilbn/theme.park:$directory
|
||||||
done
|
done
|
||||||
|
- name: manually build
|
||||||
|
if: ${{ github.event.inputs.app }}
|
||||||
|
run: |
|
||||||
|
docker build docker-mods/${{ github.event.inputs.app }} --tag ghcr.io/gilbn/theme.park:${{ github.event.inputs.app }}
|
||||||
|
docker push ghcr.io/gilbn/theme.park:${{ github.event.inputs.app }}
|
||||||
push_to_dockerhub:
|
push_to_dockerhub:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
@ -55,6 +95,7 @@ jobs:
|
|||||||
username: ${{ secrets.DH_USER }}
|
username: ${{ secrets.DH_USER }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
- name: find correct directory then build&push
|
- name: find correct directory then build&push
|
||||||
|
if: ${{ github.event_name == 'push' }}
|
||||||
run: |
|
run: |
|
||||||
for i in ${{ steps.getfile.outputs.files }}
|
for i in ${{ steps.getfile.outputs.files }}
|
||||||
do
|
do
|
||||||
@ -69,3 +110,8 @@ jobs:
|
|||||||
docker build docker-mods/$directory --tag gilbn/theme.park:$directory
|
docker build docker-mods/$directory --tag gilbn/theme.park:$directory
|
||||||
docker push gilbn/theme.park:$directory
|
docker push gilbn/theme.park:$directory
|
||||||
done
|
done
|
||||||
|
- name: manually build
|
||||||
|
if: ${{ github.event.inputs.app }}
|
||||||
|
run: |
|
||||||
|
docker build docker-mods/${{ github.event.inputs.app }} --tag gilbn/theme.park:${{ github.event.inputs.app }}
|
||||||
|
docker push gilbn/theme.park:${{ github.event.inputs.app }}
|
@ -45,7 +45,7 @@ if [[ -z ${TP_THEME} ]]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Adding stylesheets
|
# Adding stylesheets
|
||||||
if ! grep -q "${TP_DOMAIN}/css/base" "${APP_FILEPATH}"; then
|
if ! grep -q "${TP_DOMAIN}/css/base" "${APP_FILEPATH}"/usr/lib/plexmediaserver/Resources/Plug-ins-*/WebClient.bundle/Contents/Resources/index.html; then
|
||||||
echo '---------------------------'
|
echo '---------------------------'
|
||||||
echo '| Adding the stylesheet |'
|
echo '| Adding the stylesheet |'
|
||||||
echo '---------------------------'
|
echo '---------------------------'
|
||||||
|
7
docker-mods/whisparr/Dockerfile
Normal file
7
docker-mods/whisparr/Dockerfile
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
FROM scratch
|
||||||
|
|
||||||
|
LABEL maintainer="GilbN"
|
||||||
|
LABEL app="Whisparr"
|
||||||
|
|
||||||
|
#copy local files.
|
||||||
|
COPY root/ /
|
67
docker-mods/whisparr/root/etc/cont-init.d/98-themepark
Normal file
67
docker-mods/whisparr/root/etc/cont-init.d/98-themepark
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
#!/usr/bin/with-contenv bash
|
||||||
|
|
||||||
|
echo '-----------------------------'
|
||||||
|
echo '| Whisparr theme.park Mod |'
|
||||||
|
echo '-----------------------------'
|
||||||
|
|
||||||
|
# Display variables for troubleshooting
|
||||||
|
echo -e "Variables set:\\n\
|
||||||
|
'TP_DOMAIN'=${TP_DOMAIN}\\n\
|
||||||
|
'TP_COMMUNITY_THEME'=${TP_COMMUNITY_THEME}\\n\
|
||||||
|
'TP_SCHEME'=${TP_SCHEME}\\n\
|
||||||
|
'TP_ADDON'=${TP_ADDON}\\n\
|
||||||
|
'TP_THEME'=${TP_THEME}\\n"
|
||||||
|
|
||||||
|
APP_FILEPATH='/app/whisparr/bin/UI/index.html'
|
||||||
|
LOGIN_FILEPATH='/app/whisparr/bin/UI/login.html'
|
||||||
|
if [ "${TP_HOTIO}" = true ]; then
|
||||||
|
echo 'Changing to Hotio file path!'
|
||||||
|
APP_FILEPATH='/app/bin/UI/index.html'
|
||||||
|
LOGIN_FILEPATH='/app/bin/UI/login.html'
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Set default
|
||||||
|
if [[ -z ${TP_DOMAIN} ]]; then
|
||||||
|
echo 'No domain set, defaulting to theme-park.dev'
|
||||||
|
TP_DOMAIN='theme-park.dev'
|
||||||
|
fi
|
||||||
|
if [[ -z ${TP_SCHEME} ]]; then
|
||||||
|
echo 'No scheme set, defaulting to https'
|
||||||
|
TP_SCHEME='https'
|
||||||
|
fi
|
||||||
|
|
||||||
|
THEME_TYPE='theme-options'
|
||||||
|
if [ "${TP_COMMUNITY_THEME}" = true ]; then
|
||||||
|
THEME_TYPE='community-theme-options'
|
||||||
|
fi
|
||||||
|
|
||||||
|
case ${TP_DOMAIN} in
|
||||||
|
*"github.io"*)
|
||||||
|
echo "Switching to github.io URL style"
|
||||||
|
TP_DOMAIN="${TP_DOMAIN}\/theme.park"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [[ -z ${TP_THEME} ]]; then
|
||||||
|
echo 'No theme set, defaulting to organizr'
|
||||||
|
TP_THEME='organizr'
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Adding stylesheets
|
||||||
|
if ! grep -q "${TP_DOMAIN}/css/base" "${APP_FILEPATH}"; then
|
||||||
|
echo '---------------------------'
|
||||||
|
echo '| Adding the stylesheet |'
|
||||||
|
echo '---------------------------'
|
||||||
|
sed -i "s/<\/head>/<link rel='stylesheet' href='${TP_SCHEME}:\/\/${TP_DOMAIN}\/css\/base\/whisparr\/whisparr-base.css'><\/head> /g" "${APP_FILEPATH}"
|
||||||
|
sed -i "s/<\/head>/<link rel='stylesheet' href='${TP_SCHEME}:\/\/${TP_DOMAIN}\/css\/${THEME_TYPE}\/${TP_THEME}.css'><\/head> /g" "${APP_FILEPATH}"
|
||||||
|
sed -i "s/<\/head>/<link rel='stylesheet' href='${TP_SCHEME}:\/\/${TP_DOMAIN}\/css\/base\/whisparr\/whisparr-base.css'><\/head> /g" "${LOGIN_FILEPATH}"
|
||||||
|
sed -i "s/<\/head>/<link rel='stylesheet' href='${TP_SCHEME}:\/\/${TP_DOMAIN}\/css\/${THEME_TYPE}\/${TP_THEME}.css'><\/head> /g" "${LOGIN_FILEPATH}"
|
||||||
|
printf 'Stylesheet set to %s\n' "${TP_THEME}"
|
||||||
|
if [[ -n ${TP_ADDON} ]]; then
|
||||||
|
for addon in $(echo "$TP_ADDON" | tr "|" " "); do
|
||||||
|
sed -i "s/<\/head>/<link rel='stylesheet' href='${TP_SCHEME}:\/\/${TP_DOMAIN}\/css\/addons\/whisparr\/${addon}\/${addon}.css'><\/head> /g" "${APP_FILEPATH}"
|
||||||
|
sed -i "s/<\/head>/<link rel='stylesheet' href='${TP_SCHEME}:\/\/${TP_DOMAIN}\/css\/addons\/whisparr\/${addon}\/${addon}.css'><\/head> /g" "${LOGIN_FILEPATH}"
|
||||||
|
printf 'Added custom addon: %s\n\n' "${addon}"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
fi
|
Loading…
Reference in New Issue
Block a user