mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-03-07 23:48:10 +00:00
Compare commits
1 Commits
main
...
automated/
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
242bbd3e31 |
19
CHANGELOG.md
19
CHANGELOG.md
@@ -412,31 +412,12 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
|
|||||||
|
|
||||||
## 2026-03-07
|
## 2026-03-07
|
||||||
|
|
||||||
### 🆕 New Scripts
|
|
||||||
|
|
||||||
- ImmichFrame ([#12653](https://github.com/community-scripts/ProxmoxVE/pull/12653))
|
|
||||||
|
|
||||||
### 🚀 Updated Scripts
|
### 🚀 Updated Scripts
|
||||||
|
|
||||||
- #### 🐞 Bug Fixes
|
- #### 🐞 Bug Fixes
|
||||||
|
|
||||||
- Grocy: bump PHP version from 8.3 to 8.5 [@MickLesk](https://github.com/MickLesk) ([#12651](https://github.com/community-scripts/ProxmoxVE/pull/12651))
|
|
||||||
- Check for influxdb3 installation in update_script [@odin568](https://github.com/odin568) ([#12648](https://github.com/community-scripts/ProxmoxVE/pull/12648))
|
|
||||||
- Update Rdtclient to dotnet 10.0 [@asylumexp](https://github.com/asylumexp) ([#12638](https://github.com/community-scripts/ProxmoxVE/pull/12638))
|
|
||||||
- fix(immich): fix update script failing to add Debian testing repo when preferences file already exists [@Copilot](https://github.com/Copilot) ([#12631](https://github.com/community-scripts/ProxmoxVE/pull/12631))
|
- fix(immich): fix update script failing to add Debian testing repo when preferences file already exists [@Copilot](https://github.com/Copilot) ([#12631](https://github.com/community-scripts/ProxmoxVE/pull/12631))
|
||||||
|
|
||||||
### 💾 Core
|
|
||||||
|
|
||||||
- #### ✨ New Features
|
|
||||||
|
|
||||||
- tools: add interactive GitHub PAT prompt on rate limit / auth failure [@MickLesk](https://github.com/MickLesk) ([#12652](https://github.com/community-scripts/ProxmoxVE/pull/12652))
|
|
||||||
|
|
||||||
### 🌐 Website
|
|
||||||
|
|
||||||
- #### 📝 Script Information
|
|
||||||
|
|
||||||
- Papra: update repository URL to papra-hq/papra [@MickLesk](https://github.com/MickLesk) ([#12650](https://github.com/community-scripts/ProxmoxVE/pull/12650))
|
|
||||||
|
|
||||||
## 2026-03-06
|
## 2026-03-06
|
||||||
|
|
||||||
### 🚀 Updated Scripts
|
### 🚀 Updated Scripts
|
||||||
|
|||||||
@@ -28,8 +28,8 @@ function update_script() {
|
|||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
php_ver=$(php -v | head -n 1 | awk '{print $2}')
|
php_ver=$(php -v | head -n 1 | awk '{print $2}')
|
||||||
if [[ ! $php_ver == "8.5"* ]]; then
|
if [[ ! $php_ver == "8.3"* ]]; then
|
||||||
PHP_VERSION="8.5" PHP_APACHE="YES" setup_php
|
PHP_VERSION="8.3" PHP_APACHE="YES" setup_php
|
||||||
fi
|
fi
|
||||||
if check_for_gh_release "grocy" "grocy/grocy"; then
|
if check_for_gh_release "grocy" "grocy/grocy"; then
|
||||||
msg_info "Updating grocy"
|
msg_info "Updating grocy"
|
||||||
|
|||||||
@@ -1,81 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
|
||||||
# Author: Thiago Canozzo Lahr (tclahr)
|
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
||||||
# Source: https://github.com/immichFrame/ImmichFrame
|
|
||||||
|
|
||||||
APP="ImmichFrame"
|
|
||||||
var_tags="${var_tags:-photos;slideshow}"
|
|
||||||
var_cpu="${var_cpu:-1}"
|
|
||||||
var_ram="${var_ram:-1024}"
|
|
||||||
var_disk="${var_disk:-8}"
|
|
||||||
var_os="${var_os:-debian}"
|
|
||||||
var_version="${var_version:-13}"
|
|
||||||
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/immichframe ]]; then
|
|
||||||
msg_error "No ${APP} Installation Found!"
|
|
||||||
exit
|
|
||||||
fi
|
|
||||||
|
|
||||||
if check_for_gh_release "immichframe" "immichFrame/ImmichFrame"; then
|
|
||||||
msg_info "Stopping Service"
|
|
||||||
systemctl stop immichframe
|
|
||||||
msg_ok "Stopped Service"
|
|
||||||
|
|
||||||
msg_info "Backing up Configuration"
|
|
||||||
cp -r /opt/immichframe/Config /tmp/immichframe_config.bak
|
|
||||||
msg_ok "Backed up Configuration"
|
|
||||||
|
|
||||||
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "immichframe" "immichFrame/ImmichFrame" "tarball" "latest" "/tmp/immichframe"
|
|
||||||
|
|
||||||
msg_info "Setting up ImmichFrame"
|
|
||||||
cd /tmp/immichframe
|
|
||||||
$STD dotnet publish ImmichFrame.WebApi/ImmichFrame.WebApi.csproj \
|
|
||||||
--configuration Release \
|
|
||||||
--runtime linux-x64 \
|
|
||||||
--self-contained false \
|
|
||||||
--output /opt/immichframe
|
|
||||||
|
|
||||||
cd /tmp/immichframe/immichFrame.Web
|
|
||||||
$STD npm ci --silent
|
|
||||||
$STD npm run build
|
|
||||||
rm -rf /opt/immichframe/wwwroot/*
|
|
||||||
cp -r build/* /opt/immichframe/wwwroot
|
|
||||||
rm -rf /tmp/immichframe
|
|
||||||
msg_ok "Setup ImmichFrame"
|
|
||||||
|
|
||||||
msg_info "Restoring Configuration"
|
|
||||||
cp -r /tmp/immichframe_config.bak/* /opt/immichframe/Config/
|
|
||||||
rm -rf /tmp/immichframe_config.bak
|
|
||||||
chown -R immichframe:immichframe /opt/immichframe
|
|
||||||
msg_ok "Restored Configuration"
|
|
||||||
|
|
||||||
|
|
||||||
msg_info "Starting Service"
|
|
||||||
systemctl start immichframe
|
|
||||||
msg_ok "Started Service"
|
|
||||||
msg_ok "Updated successfully!"
|
|
||||||
fi
|
|
||||||
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 "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}"
|
|
||||||
@@ -23,7 +23,7 @@ function update_script() {
|
|||||||
header_info
|
header_info
|
||||||
check_container_storage
|
check_container_storage
|
||||||
check_container_resources
|
check_container_resources
|
||||||
if [[ ! -f /usr/bin/influxd && ! -f /usr/bin/influxdb3 ]]; then
|
if [[ ! -f /usr/bin/influxd ]]; then
|
||||||
msg_error "No ${APP} Installation Found!"
|
msg_error "No ${APP} Installation Found!"
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -39,9 +39,9 @@ function update_script() {
|
|||||||
|
|
||||||
fetch_and_deploy_gh_release "rdt-client" "rogerfar/rdt-client" "prebuild" "latest" "/opt/rdtc" "RealDebridClient.zip"
|
fetch_and_deploy_gh_release "rdt-client" "rogerfar/rdt-client" "prebuild" "latest" "/opt/rdtc" "RealDebridClient.zip"
|
||||||
cp -R /opt/rdtc-backup/appsettings.json /opt/rdtc/
|
cp -R /opt/rdtc-backup/appsettings.json /opt/rdtc/
|
||||||
if dpkg-query -W aspnetcore-runtime-9.0 >/dev/null 2>&1; then
|
if dpkg-query -W dotnet-sdk-8.0 >/dev/null 2>&1; then
|
||||||
$STD apt remove --purge -y aspnetcore-runtime-9.0
|
$STD apt remove --purge -y dotnet-sdk-8.0
|
||||||
ensure_dependencies aspnetcore-runtime-10.0
|
ensure_dependencies aspnetcore-runtime-9.0
|
||||||
fi
|
fi
|
||||||
rm -rf /opt/rdtc-backup
|
rm -rf /opt/rdtc-backup
|
||||||
|
|
||||||
|
|||||||
@@ -1,40 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "ImmichFrame",
|
|
||||||
"slug": "immichframe",
|
|
||||||
"categories": [
|
|
||||||
13
|
|
||||||
],
|
|
||||||
"date_created": "2026-03-07",
|
|
||||||
"type": "ct",
|
|
||||||
"updateable": true,
|
|
||||||
"privileged": false,
|
|
||||||
"interface_port": 8080,
|
|
||||||
"documentation": "https://immichframe.dev/docs/overview",
|
|
||||||
"config_path": "/opt/immichframe/Config/Settings.yml",
|
|
||||||
"website": "https://immichframe.dev/",
|
|
||||||
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/immich-frame.webp",
|
|
||||||
"description": "ImmichFrame is a digital photo frame web application that connects to your Immich server and displays your photos as a fullscreen slideshow.",
|
|
||||||
"install_methods": [
|
|
||||||
{
|
|
||||||
"type": "default",
|
|
||||||
"script": "ct/immichframe.sh",
|
|
||||||
"resources": {
|
|
||||||
"cpu": 1,
|
|
||||||
"ram": 1024,
|
|
||||||
"hdd": 8,
|
|
||||||
"os": "Debian",
|
|
||||||
"version": "13"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"default_credentials": {
|
|
||||||
"username": null,
|
|
||||||
"password": null
|
|
||||||
},
|
|
||||||
"notes": [
|
|
||||||
{
|
|
||||||
"text": "After installation, edit `/opt/immichframe/Config/Settings.yml` and set ImmichServerUrl and ApiKey. Then restart the service with `systemctl restart immichframe`.",
|
|
||||||
"type": "warning"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -9,8 +9,8 @@
|
|||||||
"updateable": true,
|
"updateable": true,
|
||||||
"privileged": false,
|
"privileged": false,
|
||||||
"interface_port": 1221,
|
"interface_port": 1221,
|
||||||
"documentation": "https://github.com/papra-hq/papra",
|
"documentation": "https://github.com/CorentinTh/papra",
|
||||||
"website": "https://github.com/papra-hq/papra",
|
"website": "https://github.com/CorentinTh/papra",
|
||||||
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/papra.webp",
|
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/papra.webp",
|
||||||
"config_path": "/opt/papra/.env",
|
"config_path": "/opt/papra/.env",
|
||||||
"description": "Papra is a modern, self-hosted document management system with full-text search, OCR support, and automatic document processing. Built with Node.js and featuring a clean web interface for organizing and managing your documents.",
|
"description": "Papra is a modern, self-hosted document management system with full-text search, OCR support, and automatic document processing. Built with Node.js and featuring a clean web interface for organizing and managing your documents.",
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ msg_info "Installing Dependencies"
|
|||||||
$STD apt install -y apt-transport-https
|
$STD apt install -y apt-transport-https
|
||||||
msg_ok "Installed Dependencies"
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
PHP_VERSION="8.5" PHP_APACHE="YES" setup_php
|
PHP_VERSION="8.3" PHP_APACHE="YES" setup_php
|
||||||
fetch_and_deploy_gh_release "grocy" "grocy/grocy" "prebuild" "latest" "/var/www/html" "grocy*.zip"
|
fetch_and_deploy_gh_release "grocy" "grocy/grocy" "prebuild" "latest" "/var/www/html" "grocy*.zip"
|
||||||
|
|
||||||
msg_info "Configuring grocy"
|
msg_info "Configuring grocy"
|
||||||
|
|||||||
@@ -1,84 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
|
||||||
# Author: Thiago Canozzo Lahr (tclahr)
|
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
||||||
# Source: https://github.com/immichFrame/ImmichFrame
|
|
||||||
|
|
||||||
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
||||||
color
|
|
||||||
verb_ip6
|
|
||||||
catch_errors
|
|
||||||
setting_up_container
|
|
||||||
network_check
|
|
||||||
update_os
|
|
||||||
|
|
||||||
msg_info "Installing Dependencies"
|
|
||||||
setup_deb822_repo \
|
|
||||||
"microsoft" \
|
|
||||||
"https://packages.microsoft.com/keys/microsoft-2025.asc" \
|
|
||||||
"https://packages.microsoft.com/debian/13/prod/" \
|
|
||||||
"trixie" \
|
|
||||||
"main"
|
|
||||||
$STD apt install -y \
|
|
||||||
libicu-dev \
|
|
||||||
libssl-dev \
|
|
||||||
gettext-base \
|
|
||||||
dotnet-sdk-8.0 \
|
|
||||||
aspnetcore-runtime-8.0
|
|
||||||
msg_ok "Installed Dependencies"
|
|
||||||
|
|
||||||
NODE_VERSION="22" setup_nodejs
|
|
||||||
fetch_and_deploy_gh_release "immichframe" "immichFrame/ImmichFrame" "tarball" "latest" "/tmp/immichframe"
|
|
||||||
|
|
||||||
msg_info "Setting up ImmichFrame"
|
|
||||||
mkdir -p /opt/immichframe
|
|
||||||
cd /tmp/immichframe
|
|
||||||
$STD dotnet publish ImmichFrame.WebApi/ImmichFrame.WebApi.csproj \
|
|
||||||
--configuration Release \
|
|
||||||
--runtime linux-x64 \
|
|
||||||
--self-contained false \
|
|
||||||
--output /opt/immichframe
|
|
||||||
cd /tmp/immichframe/immichFrame.Web
|
|
||||||
$STD npm ci
|
|
||||||
$STD npm run build
|
|
||||||
cp -r build/* /opt/immichframe/wwwroot
|
|
||||||
$STD apt remove -y dotnet-sdk-8.0
|
|
||||||
$STD apt autoremove -y
|
|
||||||
rm -rf /tmp/immichframe
|
|
||||||
mkdir -p /opt/immichframe/Config
|
|
||||||
curl -fsSL "https://raw.githubusercontent.com/immichFrame/ImmichFrame/main/docker/Settings.example.yml" -o /opt/immichframe/Config/Settings.yml
|
|
||||||
useradd -r -s /sbin/nologin -d /opt/immichframe -M immichframe
|
|
||||||
chown -R immichframe:immichframe /opt/immichframe
|
|
||||||
msg_ok "Setup ImmichFrame"
|
|
||||||
|
|
||||||
msg_info "Creating Service"
|
|
||||||
cat <<EOF >/etc/systemd/system/immichframe.service
|
|
||||||
[Unit]
|
|
||||||
Description=ImmichFrame Digital Photo Frame
|
|
||||||
After=network.target
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
Type=simple
|
|
||||||
User=immichframe
|
|
||||||
Group=immichframe
|
|
||||||
WorkingDirectory=/opt/immichframe
|
|
||||||
ExecStart=/usr/bin/dotnet /opt/immichframe/ImmichFrame.WebApi.dll
|
|
||||||
Environment=ASPNETCORE_URLS=http://0.0.0.0:8080
|
|
||||||
Environment=ASPNETCORE_ENVIRONMENT=Production
|
|
||||||
Environment=DOTNET_CONTENTROOT=/opt/immichframe
|
|
||||||
Restart=always
|
|
||||||
RestartSec=5
|
|
||||||
StandardOutput=journal
|
|
||||||
StandardError=journal
|
|
||||||
SyslogIdentifier=immichframe
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=multi-user.target
|
|
||||||
EOF
|
|
||||||
systemctl enable -q --now immichframe
|
|
||||||
msg_ok "Created Service"
|
|
||||||
|
|
||||||
motd_ssh
|
|
||||||
customize
|
|
||||||
cleanup_lxc
|
|
||||||
@@ -19,7 +19,7 @@ setup_deb822_repo \
|
|||||||
"https://packages.microsoft.com/keys/microsoft-2025.asc" \
|
"https://packages.microsoft.com/keys/microsoft-2025.asc" \
|
||||||
"https://packages.microsoft.com/debian/13/prod/" \
|
"https://packages.microsoft.com/debian/13/prod/" \
|
||||||
"trixie"
|
"trixie"
|
||||||
$STD apt install -y aspnetcore-runtime-10.0
|
$STD apt install -y aspnetcore-runtime-9.0
|
||||||
msg_ok "Installed Dependencies"
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
fetch_and_deploy_gh_release "rdt-client" "rogerfar/rdt-client" "prebuild" "latest" "/opt/rdtc" "RealDebridClient.zip"
|
fetch_and_deploy_gh_release "rdt-client" "rogerfar/rdt-client" "prebuild" "latest" "/opt/rdtc" "RealDebridClient.zip"
|
||||||
|
|||||||
@@ -1079,44 +1079,6 @@ is_package_installed() {
|
|||||||
dpkg-query -W -f='${Status}' "$package" 2>/dev/null | grep -q "^install ok installed$"
|
dpkg-query -W -f='${Status}' "$package" 2>/dev/null | grep -q "^install ok installed$"
|
||||||
}
|
}
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
|
||||||
# Prompt user to enter a GitHub Personal Access Token (PAT) interactively
|
|
||||||
# Returns 0 if a valid token was provided, 1 otherwise
|
|
||||||
# ------------------------------------------------------------------------------
|
|
||||||
prompt_for_github_token() {
|
|
||||||
if [[ ! -t 0 ]]; then
|
|
||||||
return 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
local reply
|
|
||||||
read -rp "${TAB}Would you like to enter a GitHub Personal Access Token (PAT)? [y/N]: " reply
|
|
||||||
reply="${reply:-n}"
|
|
||||||
|
|
||||||
if [[ ! "${reply,,}" =~ ^(y|yes)$ ]]; then
|
|
||||||
return 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
local token
|
|
||||||
while true; do
|
|
||||||
read -rp "${TAB}Enter your GitHub PAT: " token
|
|
||||||
# Trim leading/trailing whitespace
|
|
||||||
token="$(echo "$token" | xargs)"
|
|
||||||
if [[ -z "$token" ]]; then
|
|
||||||
msg_warn "Token cannot be empty. Please try again."
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
if [[ "$token" =~ [[:space:]] ]]; then
|
|
||||||
msg_warn "Token must not contain spaces. Please try again."
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
break
|
|
||||||
done
|
|
||||||
|
|
||||||
export GITHUB_TOKEN="$token"
|
|
||||||
msg_ok "GitHub token has been set."
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# GitHub API call with authentication and rate limit handling
|
# GitHub API call with authentication and rate limit handling
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
@@ -1129,8 +1091,7 @@ github_api_call() {
|
|||||||
local header_args=()
|
local header_args=()
|
||||||
[[ -n "${GITHUB_TOKEN:-}" ]] && header_args=(-H "Authorization: Bearer $GITHUB_TOKEN")
|
[[ -n "${GITHUB_TOKEN:-}" ]] && header_args=(-H "Authorization: Bearer $GITHUB_TOKEN")
|
||||||
|
|
||||||
local attempt=1
|
for attempt in $(seq 1 $max_retries); do
|
||||||
while ((attempt <= max_retries)); do
|
|
||||||
local http_code
|
local http_code
|
||||||
http_code=$(curl -sSL -w "%{http_code}" -o "$output_file" \
|
http_code=$(curl -sSL -w "%{http_code}" -o "$output_file" \
|
||||||
-H "Accept: application/vnd.github+json" \
|
-H "Accept: application/vnd.github+json" \
|
||||||
@@ -1147,11 +1108,7 @@ github_api_call() {
|
|||||||
if [[ -n "${GITHUB_TOKEN:-}" ]]; then
|
if [[ -n "${GITHUB_TOKEN:-}" ]]; then
|
||||||
msg_error "Your GITHUB_TOKEN appears to be invalid or expired."
|
msg_error "Your GITHUB_TOKEN appears to be invalid or expired."
|
||||||
else
|
else
|
||||||
msg_error "The repository may require authentication."
|
msg_error "The repository may require authentication. Try: export GITHUB_TOKEN=\"ghp_your_token\""
|
||||||
fi
|
|
||||||
if prompt_for_github_token; then
|
|
||||||
header_args=(-H "Authorization: Bearer $GITHUB_TOKEN")
|
|
||||||
continue
|
|
||||||
fi
|
fi
|
||||||
return 1
|
return 1
|
||||||
;;
|
;;
|
||||||
@@ -1161,16 +1118,9 @@ github_api_call() {
|
|||||||
msg_warn "GitHub API rate limit, waiting ${retry_delay}s... (attempt $attempt/$max_retries)"
|
msg_warn "GitHub API rate limit, waiting ${retry_delay}s... (attempt $attempt/$max_retries)"
|
||||||
sleep "$retry_delay"
|
sleep "$retry_delay"
|
||||||
retry_delay=$((retry_delay * 2))
|
retry_delay=$((retry_delay * 2))
|
||||||
((attempt++))
|
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
msg_error "GitHub API rate limit exceeded (HTTP 403)."
|
msg_error "GitHub API rate limit exceeded (HTTP 403)."
|
||||||
if prompt_for_github_token; then
|
|
||||||
header_args=(-H "Authorization: Bearer $GITHUB_TOKEN")
|
|
||||||
retry_delay=2
|
|
||||||
attempt=1
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
msg_error "To increase the limit, export a GitHub token before running the script:"
|
msg_error "To increase the limit, export a GitHub token before running the script:"
|
||||||
msg_error " export GITHUB_TOKEN=\"ghp_your_token_here\""
|
msg_error " export GITHUB_TOKEN=\"ghp_your_token_here\""
|
||||||
return 1
|
return 1
|
||||||
@@ -1182,7 +1132,6 @@ github_api_call() {
|
|||||||
000 | "")
|
000 | "")
|
||||||
if [[ $attempt -lt $max_retries ]]; then
|
if [[ $attempt -lt $max_retries ]]; then
|
||||||
sleep "$retry_delay"
|
sleep "$retry_delay"
|
||||||
((attempt++))
|
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
msg_error "GitHub API connection failed (no response)."
|
msg_error "GitHub API connection failed (no response)."
|
||||||
@@ -1192,14 +1141,12 @@ github_api_call() {
|
|||||||
*)
|
*)
|
||||||
if [[ $attempt -lt $max_retries ]]; then
|
if [[ $attempt -lt $max_retries ]]; then
|
||||||
sleep "$retry_delay"
|
sleep "$retry_delay"
|
||||||
((attempt++))
|
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
msg_error "GitHub API call failed (HTTP $http_code)."
|
msg_error "GitHub API call failed (HTTP $http_code)."
|
||||||
return 1
|
return 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
((attempt++))
|
|
||||||
done
|
done
|
||||||
|
|
||||||
msg_error "GitHub API call failed after ${max_retries} attempts: ${url}"
|
msg_error "GitHub API call failed after ${max_retries} attempts: ${url}"
|
||||||
@@ -3176,30 +3123,11 @@ function fetch_and_deploy_gh_release() {
|
|||||||
if [[ "$http_code" == "200" ]]; then
|
if [[ "$http_code" == "200" ]]; then
|
||||||
success=true
|
success=true
|
||||||
break
|
break
|
||||||
elif [[ "$http_code" == "401" ]]; then
|
|
||||||
msg_error "GitHub API authentication failed (HTTP 401)."
|
|
||||||
if [[ -n "${GITHUB_TOKEN:-}" ]]; then
|
|
||||||
msg_error "Your GITHUB_TOKEN appears to be invalid or expired."
|
|
||||||
else
|
|
||||||
msg_error "The repository may require authentication."
|
|
||||||
fi
|
|
||||||
if prompt_for_github_token; then
|
|
||||||
header=(-H "Authorization: token $GITHUB_TOKEN")
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
break
|
|
||||||
elif [[ "$http_code" == "403" ]]; then
|
elif [[ "$http_code" == "403" ]]; then
|
||||||
if ((attempt < max_retries)); then
|
if ((attempt < max_retries)); then
|
||||||
msg_warn "GitHub API rate limit hit, retrying in ${retry_delay}s... (attempt $attempt/$max_retries)"
|
msg_warn "GitHub API rate limit hit, retrying in ${retry_delay}s... (attempt $attempt/$max_retries)"
|
||||||
sleep "$retry_delay"
|
sleep "$retry_delay"
|
||||||
retry_delay=$((retry_delay * 2))
|
retry_delay=$((retry_delay * 2))
|
||||||
else
|
|
||||||
msg_error "GitHub API rate limit exceeded (HTTP 403)."
|
|
||||||
if prompt_for_github_token; then
|
|
||||||
header=(-H "Authorization: token $GITHUB_TOKEN")
|
|
||||||
retry_delay=2
|
|
||||||
attempt=0
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
sleep "$retry_delay"
|
sleep "$retry_delay"
|
||||||
@@ -3208,10 +3136,21 @@ function fetch_and_deploy_gh_release() {
|
|||||||
done
|
done
|
||||||
|
|
||||||
if ! $success; then
|
if ! $success; then
|
||||||
if [[ "$http_code" == "000" || -z "$http_code" ]]; then
|
if [[ "$http_code" == "401" ]]; then
|
||||||
|
msg_error "GitHub API authentication failed (HTTP 401)."
|
||||||
|
if [[ -n "${GITHUB_TOKEN:-}" ]]; then
|
||||||
|
msg_error "Your GITHUB_TOKEN appears to be invalid or expired."
|
||||||
|
else
|
||||||
|
msg_error "The repository may require authentication. Try: export GITHUB_TOKEN=\"ghp_your_token\""
|
||||||
|
fi
|
||||||
|
elif [[ "$http_code" == "403" ]]; then
|
||||||
|
msg_error "GitHub API rate limit exceeded (HTTP 403)."
|
||||||
|
msg_error "To increase the limit, export a GitHub token before running the script:"
|
||||||
|
msg_error " export GITHUB_TOKEN=\"ghp_your_token_here\""
|
||||||
|
elif [[ "$http_code" == "000" || -z "$http_code" ]]; then
|
||||||
msg_error "GitHub API connection failed (no response)."
|
msg_error "GitHub API connection failed (no response)."
|
||||||
msg_error "Check your network/DNS: curl -sSL https://api.github.com/rate_limit"
|
msg_error "Check your network/DNS: curl -sSL https://api.github.com/rate_limit"
|
||||||
elif [[ "$http_code" != "401" ]]; then
|
else
|
||||||
msg_error "Failed to fetch release metadata (HTTP $http_code)"
|
msg_error "Failed to fetch release metadata (HTTP $http_code)"
|
||||||
fi
|
fi
|
||||||
return 1
|
return 1
|
||||||
|
|||||||
Reference in New Issue
Block a user