File size: 8,658 Bytes
69fec20 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 |
#!/bin/bash
set -e # Exit on error
set -u # Exit on undefined variable
set -o pipefail # Exit on pipe failure
# Color codes for output
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
NC='\033[0m' # No Color
# Logging functions
log_info() {
echo -e "${GREEN}[INFO]${NC} $1"
}
log_error() {
echo -e "${RED}[ERROR]${NC} $1" >&2
}
log_warn() {
echo -e "${YELLOW}[WARN]${NC} $1"
}
log_debug() {
echo -e "${BLUE}[DEBUG]${NC} $1"
}
# Cleanup function for error handling
cleanup() {
local exit_code=$?
if [ $exit_code -ne 0 ]; then
log_error "Installation failed with exit code $exit_code"
fi
exit $exit_code
}
trap cleanup EXIT
# Detect OS and distribution
detect_os() {
log_info "Detecting operating system..."
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
if [ -f /etc/os-release ]; then
. /etc/os-release
OS_NAME=$ID
OS_VERSION=$VERSION_ID
log_info "Detected: $NAME $VERSION_ID"
elif [ -f /etc/lsb-release ]; then
. /etc/lsb-release
OS_NAME=$DISTRIB_ID
OS_VERSION=$DISTRIB_RELEASE
log_info "Detected: $DISTRIB_ID $DISTRIB_RELEASE"
else
OS_NAME="linux"
OS_VERSION="unknown"
log_warn "Could not determine specific Linux distribution"
fi
elif [[ "$OSTYPE" == "darwin"* ]]; then
OS_NAME="macos"
OS_VERSION=$(sw_vers -productVersion)
log_info "Detected: macOS $OS_VERSION"
elif [[ "$OSTYPE" == "freebsd"* ]]; then
OS_NAME="freebsd"
OS_VERSION=$(freebsd-version)
log_info "Detected: FreeBSD $OS_VERSION"
else
log_error "Unsupported operating system: $OSTYPE"
exit 1
fi
}
# Check for root privileges (only for Linux package managers that need it)
check_root_if_needed() {
if [[ "$OS_NAME" == "ubuntu" ]] || [[ "$OS_NAME" == "debian" ]] || [[ "$OS_NAME" == "linuxmint" ]] || [[ "$OS_NAME" == "kali" ]]; then
if [ "$EUID" -ne 0 ]; then
log_error "This script requires root privileges for apt. Please run with sudo."
exit 1
fi
elif [[ "$OS_NAME" == "fedora" ]] || [[ "$OS_NAME" == "rhel" ]] || [[ "$OS_NAME" == "centos" ]] || [[ "$OS_NAME" == "rocky" ]] || [[ "$OS_NAME" == "almalinux" ]]; then
if [ "$EUID" -ne 0 ]; then
log_error "This script requires root privileges for dnf/yum. Please run with sudo."
exit 1
fi
elif [[ "$OS_NAME" == "arch" ]] || [[ "$OS_NAME" == "manjaro" ]]; then
if [ "$EUID" -ne 0 ]; then
log_error "This script requires root privileges for pacman. Please run with sudo."
exit 1
fi
fi
}
# Update package manager
update_packages() {
log_info "Updating package manager..."
case "$OS_NAME" in
ubuntu|debian|linuxmint|kali|pop)
if ! apt update; then
log_error "Failed to update apt package lists"
exit 1
fi
;;
fedora|rhel|centos|rocky|almalinux)
if command -v dnf &> /dev/null; then
if ! dnf check-update; then
# dnf check-update returns 100 if updates are available, which is not an error
if [ $? -ne 100 ]; then
log_warn "dnf check-update returned non-standard exit code"
fi
fi
else
if ! yum check-update; then
if [ $? -ne 100 ]; then
log_warn "yum check-update returned non-standard exit code"
fi
fi
fi
;;
arch|manjaro)
if ! pacman -Syu; then
log_error "Failed to update pacman database"
exit 1
fi
;;
macos)
if command -v brew &> /dev/null; then
log_info "Updating Homebrew..."
brew update
else
log_warn "Homebrew not installed. Skipping package manager update."
fi
;;
*)
log_warn "Unknown package manager for $OS_NAME. Skipping update."
;;
esac
}
# Install git based on OS
install_git() {
if ! command -v git &> /dev/null; then
log_info "Installing git..."
case "$OS_NAME" in
ubuntu|debian|linuxmint|kali|pop)
if ! apt install git -y; then
log_error "Failed to install git"
exit 1
fi
;;
fedora|rhel|centos|rocky|almalinux)
if command -v dnf &> /dev/null; then
if ! dnf install git -y; then
log_error "Failed to install git"
exit 1
fi
else
if ! yum install git -y; then
log_error "Failed to install git"
exit 1
fi
fi
;;
arch|manjaro)
if ! pacman -S git --noconfirm; then
log_error "Failed to install git"
exit 1
fi
;;
macos)
if command -v brew &> /dev/null; then
if ! brew install git; then
log_error "Failed to install git"
exit 1
fi
else
log_error "Homebrew is required for macOS. Install from https://brew.sh/"
exit 1
fi
;;
*)
log_error "Don't know how to install git on $OS_NAME"
exit 1
;;
esac
else
log_info "Git is already installed ($(git --version))"
fi
}
# Detect OS first
detect_os
# Check root if needed
check_root_if_needed
log_info "Starting installation process..."
# Update package lists
update_packages
# Install git
install_git
# Install uv if not present
if ! command -v uv &> /dev/null; then
log_info "Installing uv package manager..."
if ! curl -Ls https://astral.sh/uv/install.sh | sh; then
log_error "Failed to install uv"
exit 1
fi
# Source environment
if [ -f "$HOME/.local/bin/env" ]; then
source "$HOME/.local/bin/env"
elif [ -f "$HOME/.cargo/env" ]; then
source "$HOME/.cargo/env"
fi
# Verify uv installation
if ! command -v uv &> /dev/null; then
log_error "uv installation failed - command not found after install"
exit 1
fi
else
log_info "uv is already installed"
fi
# Determine working directory
log_info "Checking project directory..."
if [ -f "./web.py" ]; then
log_info "Already in target directory"
elif [ -f "./gcli2api/web.py" ]; then
log_info "Changing to gcli2api directory"
cd ./gcli2api || exit 1
else
log_info "Cloning repository..."
if [ -d "./gcli2api" ]; then
log_warn "gcli2api directory exists but web.py not found. Removing and re-cloning..."
rm -rf ./gcli2api
fi
if ! git clone https://github.com/su-kaka/gcli2api.git; then
log_error "Failed to clone repository"
exit 1
fi
cd ./gcli2api || exit 1
fi
# Update repository if it's a git repo
if [ -d ".git" ]; then
log_info "Updating repository..."
if ! git pull; then
log_warn "Git pull failed, continuing anyway..."
fi
else
log_warn "Not a git repository, skipping update"
fi
# Create relocatable virtual environment to ensure portability
log_info "Creating relocatable virtual environment..."
export UV_VENV_CLEAR=1
if ! uv venv --relocatable; then
log_error "Failed to create virtual environment"
exit 1
fi
# Sync dependencies
log_info "Syncing dependencies with uv..."
if ! uv sync; then
log_error "Failed to sync dependencies"
exit 1
fi
# Activate virtual environment
log_info "Activating virtual environment..."
if [ -f ".venv/bin/activate" ]; then
source .venv/bin/activate
else
log_error "Virtual environment not found at .venv/bin/activate"
exit 1
fi
# Verify Python is available
if ! command -v python3 &> /dev/null; then
log_error "python3 not found in virtual environment"
exit 1
fi
# Check if web.py exists
if [ ! -f "web.py" ]; then
log_error "web.py not found in current directory"
exit 1
fi
# Start the application
log_info "Starting application..."
python3 web.py |