diff --git a/ct/headers/your-spotify b/ct/headers/your-spotify new file mode 100644 index 000000000..715a1b3f6 --- /dev/null +++ b/ct/headers/your-spotify @@ -0,0 +1,6 @@ +__ __ _____ __ _ ____ +\ \/ /___ __ _______ / ___/____ ____ / /_(_) __/_ __ + \ / __ \/ / / / ___/_____\__ \/ __ \/ __ \/ __/ / /_/ / / / + / / /_/ / /_/ / / /_____/__/ / /_/ / /_/ / /_/ / __/ /_/ / +/_/\____/\__,_/_/ /____/ .___/\____/\__/_/_/ \__, / + /_/ /____/ diff --git a/ct/your-spotify.sh b/ct/your-spotify.sh new file mode 100644 index 000000000..dcc0a82ae --- /dev/null +++ b/ct/your-spotify.sh @@ -0,0 +1,77 @@ +#!/usr/bin/env bash +_CS_DEFAULT_URL="https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main" +_cs_boot="${COMMUNITY_SCRIPTS_CORE_DIR:-$(dirname "${BASH_SOURCE[0]}")/../../core}/core/build.func" +source "$_cs_boot" 2>/dev/null || source <(curl -fsSL "${COMMUNITY_SCRIPTS_CORE_URL:-https://raw.githubusercontent.com/community-scripts/core/main}/core/build.func") +# Copyright (c) 2021-2026 community-scripts ORG +# Author: MickLesk (CanbiZ) +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://github.com/Yooooomi/your_spotify + +APP="Your-Spotify" +var_tags="${var_tags:-music;analytics}" +var_cpu="${var_cpu:-2}" +var_ram="${var_ram:-3072}" +var_disk="${var_disk:-10}" +var_os="${var_os:-debian}" +var_version="${var_version:-13}" +#var_arm64="${var_arm64:-no}" # unset = ask the user; set yes/no only when verified +var_unprivileged="${var_unprivileged:-1}" + +header_info "$APP" +variables +color +catch_errors + +function update_script() { + header_info + check_container_storage + check_container_resources + + if [[ ! -d /opt/your-spotify ]]; then + msg_error "No ${APP} Installation Found!" + exit + fi + + if check_for_gh_release "your-spotify" "Yooooomi/your_spotify"; then + msg_info "Stopping Services" + systemctl stop your-spotify your-spotify-web + msg_ok "Stopped Services" + + CLEAN_INSTALL=1 fetch_and_deploy_gh_release "your-spotify" "Yooooomi/your_spotify" "tarball" + + msg_info "Building Your Spotify" + cd /opt/your-spotify + $STD pnpm install --frozen-lockfile + $STD pnpm --filter @your_spotify/server build + $STD pnpm --filter @your_spotify/client build + msg_ok "Built Your Spotify" + + fi + + msg_info "Applying Client Configuration" + API_ENDPOINT=$(grep '^API_ENDPOINT=' /opt/your-spotify.env | cut -d= -f2-) + cp /opt/your-spotify/apps/client/build/variables-template.js /opt/your-spotify/apps/client/build/variables.js + sed -i "s;__API_ENDPOINT__;${API_ENDPOINT};g" /opt/your-spotify/apps/client/build/variables.js + sed -i "s#connect-src \(.*\);#connect-src 'self' ${API_ENDPOINT}/;#g" /opt/your-spotify/apps/client/build/index.html + msg_ok "Applied Client Configuration" + + msg_info "Restarting Services" + systemctl restart your-spotify your-spotify-web + msg_ok "Restarted Services" + msg_ok "Updated successfully!" + exit +} + +start +build_container +description + +msg_ok "Completed Successfully!\n" +echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" +echo -e "${INFO}${YW}Access it using the following URL:${CL}" +echo -e "${GATEWAY}${BGN}http://${IP}:3000${CL}" +echo -e "${INFO}${YW}Add your Spotify app keys to /opt/your-spotify.env first${CL}" +echo -e "${INFO}${YW}Spotify rejects plain http redirect URIs on a LAN address.${CL}" +echo -e "${INFO}${YW}Put this behind a TLS reverse proxy and register:${CL}" +echo -e "${TAB}${DEFAULT}${BGN}https://your.domain/oauth/spotify/callback${CL}" +echo -e "${INFO}${YW}Then set API_ENDPOINT to that https URL and rerun the update.${CL}" diff --git a/install/your-spotify-install.sh b/install/your-spotify-install.sh new file mode 100644 index 000000000..c3b548a95 --- /dev/null +++ b/install/your-spotify-install.sh @@ -0,0 +1,94 @@ +#!/usr/bin/env bash + +# Copyright (c) 2021-2026 community-scripts ORG +# Author: MickLesk (CanbiZ) +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://github.com/Yooooomi/your_spotify + +source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" +color +verb_ip6 +catch_errors +setting_up_container +network_check +update_os + +setup_mongodb +NODE_VERSION="22" NODE_MODULE="pnpm@^10,serve" setup_nodejs + +fetch_and_deploy_gh_release "your-spotify" "Yooooomi/your_spotify" "tarball" + +msg_info "Building Your Spotify" +cd /opt/your-spotify +$STD pnpm install --frozen-lockfile +$STD pnpm --filter @your_spotify/server build +$STD pnpm --filter @your_spotify/client build +msg_ok "Built Your Spotify" + +var_api_endpoint="${var_api_endpoint:-http://${LOCAL_IP}:8080}" +var_client_endpoint="${var_client_endpoint:-http://${LOCAL_IP}:3000}" +var_spotify_public="${var_spotify_public:-CHANGE_ME}" +var_spotify_secret="${var_spotify_secret:-CHANGE_ME}" + +msg_info "Configuring Your Spotify" +cat </opt/your-spotify.env +API_ENDPOINT=${var_api_endpoint} +CLIENT_ENDPOINT=${var_client_endpoint} +SPOTIFY_PUBLIC=${var_spotify_public} +SPOTIFY_SECRET=${var_spotify_secret} +MONGO_ENDPOINT=mongodb://127.0.0.1:27017/your_spotify +TIMEZONE=UTC +LOG_LEVEL=info +PORT=8080 +EOF +chmod 600 /opt/your-spotify.env + +cp /opt/your-spotify/apps/client/build/variables-template.js /opt/your-spotify/apps/client/build/variables.js +sed -i "s;__API_ENDPOINT__;${var_api_endpoint};g" /opt/your-spotify/apps/client/build/variables.js +sed -i "s#connect-src \(.*\);#connect-src 'self' ${var_api_endpoint}/;#g" /opt/your-spotify/apps/client/build/index.html +msg_ok "Configured Your Spotify" + +msg_info "Creating Services" +cat </etc/systemd/system/your-spotify.service +[Unit] +Description=Your Spotify Server +Wants=network-online.target +After=network-online.target mongod.service + +[Service] +Type=simple +User=root +WorkingDirectory=/opt/your-spotify/apps/server +EnvironmentFile=/opt/your-spotify.env +ExecStartPre=/usr/bin/node build/index.js --migrate +ExecStart=/usr/bin/node build/index.js +Restart=on-failure +RestartSec=5 + +[Install] +WantedBy=multi-user.target +EOF + +cat </etc/systemd/system/your-spotify-web.service +[Unit] +Description=Your Spotify Web +Wants=network-online.target +After=network-online.target your-spotify.service + +[Service] +Type=simple +User=root +WorkingDirectory=/opt/your-spotify/apps/client +ExecStart=serve -s -l tcp://0.0.0.0:3000 /opt/your-spotify/apps/client/build +Restart=on-failure +RestartSec=5 + +[Install] +WantedBy=multi-user.target +EOF +systemctl enable -q --now your-spotify your-spotify-web +msg_ok "Created Services" + +motd_ssh +customize +cleanup_lxc