install.sh 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122
  1. #!/usr/bin/env bash
  2. #
  3. # BamBuddy Native Installation Script
  4. # Supports: Debian/Ubuntu, RHEL/Fedora/CentOS, Arch Linux, macOS
  5. #
  6. # Usage:
  7. # Interactive: curl -fsSL https://raw.githubusercontent.com/maziggy/bambuddy/main/install/install.sh -o install.sh && chmod +x install.sh && ./install.sh
  8. # Unattended: ./install.sh --path /opt/bambuddy --port 8000 --yes
  9. #
  10. # Options:
  11. # --path PATH Installation directory (default: /opt/bambuddy)
  12. # --port PORT Port to listen on (default: 8000)
  13. # --bind ADDRESS Bind address: 0.0.0.0 (network) or 127.0.0.1 (local only)
  14. # --tz TIMEZONE Timezone (default: system timezone or UTC)
  15. # --data-dir PATH Data directory (default: INSTALL_PATH/data)
  16. # --log-dir PATH Log directory (default: INSTALL_PATH/logs)
  17. # --debug Enable debug mode
  18. # --log-level LEVEL Log level: DEBUG, INFO, WARNING, ERROR (default: INFO)
  19. # --branch BRANCH Git branch to install (default: main)
  20. # --no-service Skip systemd service setup (Linux only)
  21. # --set-system-tz Set system timezone to match (for unattended installs)
  22. # --yes, -y Non-interactive mode, accept defaults
  23. # --help, -h Show this help message
  24. #
  25. set -e
  26. # Colors for output
  27. RED='\033[0;31m'
  28. GREEN='\033[0;32m'
  29. YELLOW='\033[1;33m'
  30. BLUE='\033[0;34m'
  31. CYAN='\033[0;36m'
  32. NC='\033[0m' # No Color
  33. BOLD='\033[1m'
  34. # Default values
  35. DEFAULT_INSTALL_PATH="/opt/bambuddy"
  36. DEFAULT_PORT="8000"
  37. DEFAULT_BIND_ADDRESS="0.0.0.0"
  38. DEFAULT_LOG_LEVEL="INFO"
  39. DEFAULT_DEBUG="false"
  40. # Script variables
  41. INSTALL_PATH=""
  42. PORT=""
  43. BIND_ADDRESS=""
  44. TIMEZONE=""
  45. DATA_DIR=""
  46. LOG_DIR=""
  47. DEBUG_MODE=""
  48. LOG_LEVEL=""
  49. SKIP_SERVICE="false"
  50. SET_SYSTEM_TZ=""
  51. NON_INTERACTIVE="false"
  52. OS_TYPE=""
  53. PKG_MANAGER=""
  54. PYTHON_CMD=""
  55. BRANCH=""
  56. SERVICE_USER="bambuddy"
  57. # -----------------------------------------------------------------------------
  58. # Helper Functions
  59. # -----------------------------------------------------------------------------
  60. print_banner() {
  61. echo -e "${CYAN}"
  62. echo "╔════════════════════════════════════════════════════════╗"
  63. echo "║ ║"
  64. echo "║ ____ _ _ _ ║"
  65. echo "║ | __ ) __ _ _ __ ___ | |__ _ _ __| | __| |_ _ ║"
  66. echo "║ | _ \\ / _\` | '_ \` _ \\| '_ \\| | | |/ _\` |/ _\` | | | | ║"
  67. echo "║ | |_) | (_| | | | | | | |_) | |_| | (_| | (_| | |_| | ║"
  68. echo "║ |____/ \\__,_|_| |_| |_|_.__/ \\__,_|\\__,_|\\__,_|\\__, | ║"
  69. echo "║ |___/ ║"
  70. echo "║ ║"
  71. echo "║ Native Installation Script ║"
  72. echo "║ ║"
  73. echo "╚════════════════════════════════════════════════════════╝"
  74. echo -e "${NC}"
  75. }
  76. log_info() {
  77. echo -e "${BLUE}[INFO]${NC} $1"
  78. }
  79. log_success() {
  80. echo -e "${GREEN}[OK]${NC} $1"
  81. }
  82. log_warn() {
  83. echo -e "${YELLOW}[WARN]${NC} $1"
  84. }
  85. log_error() {
  86. echo -e "${RED}[ERROR]${NC} $1"
  87. }
  88. prompt() {
  89. local prompt_text="$1"
  90. local default_value="$2"
  91. local var_name="$3"
  92. if [[ "$NON_INTERACTIVE" == "true" ]]; then
  93. eval "$var_name=\"$default_value\""
  94. return
  95. fi
  96. if [[ -n "$default_value" ]]; then
  97. echo -en "${BOLD}$prompt_text${NC} [${CYAN}$default_value${NC}]: "
  98. else
  99. echo -en "${BOLD}$prompt_text${NC}: "
  100. fi
  101. read -r input
  102. if [[ -z "$input" ]]; then
  103. eval "$var_name=\"$default_value\""
  104. else
  105. eval "$var_name=\"$input\""
  106. fi
  107. }
  108. prompt_yes_no() {
  109. local prompt_text="$1"
  110. local default="$2" # y or n
  111. if [[ "$NON_INTERACTIVE" == "true" ]]; then
  112. [[ "$default" == "y" ]] && return 0 || return 1
  113. fi
  114. local yn_hint="[y/n]"
  115. [[ "$default" == "y" ]] && yn_hint="[Y/n]"
  116. [[ "$default" == "n" ]] && yn_hint="[y/N]"
  117. while true; do
  118. echo -en "${BOLD}$prompt_text${NC} $yn_hint: "
  119. read -r yn
  120. [[ -z "$yn" ]] && yn="$default"
  121. case "$yn" in
  122. [Yy]* ) return 0;;
  123. [Nn]* ) return 1;;
  124. * ) echo "Please answer yes or no.";;
  125. esac
  126. done
  127. }
  128. show_help() {
  129. echo "BamBuddy Native Installation Script"
  130. echo ""
  131. echo "Usage: $0 [OPTIONS]"
  132. echo ""
  133. echo "Options:"
  134. echo " --path PATH Installation directory (default: /opt/bambuddy)"
  135. echo " --port PORT Port to listen on (default: 8000)"
  136. echo " --bind ADDRESS Bind address: 0.0.0.0 (network) or 127.0.0.1 (local only)"
  137. echo " --tz TIMEZONE Timezone (default: system timezone or UTC)"
  138. echo " --data-dir PATH Data directory (default: INSTALL_PATH/data)"
  139. echo " --log-dir PATH Log directory (default: INSTALL_PATH/logs)"
  140. echo " --debug Enable debug mode"
  141. echo " --log-level LEVEL Log level: DEBUG, INFO, WARNING, ERROR (default: INFO)"
  142. echo " --branch BRANCH Git branch to install (default: main)"
  143. echo " --no-service Skip systemd service setup (Linux only)"
  144. echo " --set-system-tz Set system timezone to match (for unattended installs)"
  145. echo " --yes, -y Non-interactive mode, accept defaults"
  146. echo " --help, -h Show this help message"
  147. echo ""
  148. echo "Examples:"
  149. echo " Interactive installation:"
  150. echo " ./install.sh"
  151. echo ""
  152. echo " Unattended installation with custom settings:"
  153. echo " ./install.sh --path /srv/bambuddy --port 3000 --tz America/New_York --yes"
  154. echo ""
  155. echo " Minimal unattended installation:"
  156. echo " ./install.sh -y"
  157. exit 0
  158. }
  159. # -----------------------------------------------------------------------------
  160. # System Detection
  161. # -----------------------------------------------------------------------------
  162. detect_os() {
  163. if [[ "$OSTYPE" == "darwin"* ]]; then
  164. OS_TYPE="macos"
  165. PKG_MANAGER="brew"
  166. return
  167. fi
  168. if [[ -f /etc/os-release ]]; then
  169. . /etc/os-release
  170. case "$ID" in
  171. ubuntu|debian|raspbian|linuxmint|pop)
  172. OS_TYPE="debian"
  173. PKG_MANAGER="apt"
  174. ;;
  175. fedora|rhel|centos|rocky|almalinux|ol)
  176. OS_TYPE="rhel"
  177. if command -v dnf &>/dev/null; then
  178. PKG_MANAGER="dnf"
  179. else
  180. PKG_MANAGER="yum"
  181. fi
  182. ;;
  183. arch|manjaro|endeavouros)
  184. OS_TYPE="arch"
  185. PKG_MANAGER="pacman"
  186. ;;
  187. opensuse*|sles)
  188. OS_TYPE="suse"
  189. PKG_MANAGER="zypper"
  190. ;;
  191. *)
  192. log_error "Unsupported Linux distribution: $ID"
  193. exit 1
  194. ;;
  195. esac
  196. else
  197. log_error "Cannot detect operating system"
  198. exit 1
  199. fi
  200. }
  201. detect_python() {
  202. # Try python3 first, then python
  203. if command -v python3 &>/dev/null; then
  204. PYTHON_CMD="python3"
  205. elif command -v python &>/dev/null; then
  206. local version
  207. version=$(python --version 2>&1 | cut -d' ' -f2 | cut -d'.' -f1)
  208. if [[ "$version" -ge 3 ]]; then
  209. PYTHON_CMD="python"
  210. fi
  211. fi
  212. if [[ -z "$PYTHON_CMD" ]]; then
  213. return 1
  214. fi
  215. # Check version >= 3.10
  216. local version
  217. version=$($PYTHON_CMD -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")')
  218. local major minor
  219. major=$(echo "$version" | cut -d'.' -f1)
  220. minor=$(echo "$version" | cut -d'.' -f2)
  221. if [[ "$major" -lt 3 ]] || { [[ "$major" -eq 3 ]] && [[ "$minor" -lt 10 ]]; }; then
  222. log_warn "Python $version found, but 3.10 or newer is required"
  223. return 1
  224. fi
  225. log_success "Found Python $version"
  226. return 0
  227. }
  228. detect_timezone() {
  229. if [[ -n "$TIMEZONE" ]]; then
  230. return 0
  231. fi
  232. # Try to get system timezone (with error handling for set -e)
  233. TIMEZONE=""
  234. if [[ -f /etc/timezone ]]; then
  235. TIMEZONE=$(cat /etc/timezone 2>/dev/null) || true
  236. fi
  237. if [[ -z "$TIMEZONE" ]] && [[ -L /etc/localtime ]]; then
  238. TIMEZONE=$(readlink /etc/localtime 2>/dev/null | sed 's|.*/zoneinfo/||') || true
  239. fi
  240. if [[ -z "$TIMEZONE" ]] && command -v timedatectl &>/dev/null; then
  241. TIMEZONE=$(timedatectl show --property=Timezone --value 2>/dev/null) || true
  242. fi
  243. # Default to UTC if not found (use if/then to avoid set -e issue with &&)
  244. if [[ -z "$TIMEZONE" ]]; then
  245. TIMEZONE="UTC"
  246. fi
  247. return 0
  248. }
  249. # -----------------------------------------------------------------------------
  250. # Package Installation
  251. # -----------------------------------------------------------------------------
  252. install_dependencies() {
  253. log_info "Installing system dependencies..."
  254. case "$PKG_MANAGER" in
  255. apt)
  256. sudo apt-get update
  257. sudo apt-get install -y python3 python3-pip python3-venv git curl ffmpeg
  258. ;;
  259. dnf|yum)
  260. sudo $PKG_MANAGER install -y python3 python3-pip git curl ffmpeg
  261. ;;
  262. pacman)
  263. sudo pacman -Sy --noconfirm python python-pip git curl ffmpeg
  264. ;;
  265. zypper)
  266. sudo zypper install -y python3 python3-pip git curl ffmpeg
  267. ;;
  268. brew)
  269. # Check if Homebrew is installed
  270. if ! command -v brew &>/dev/null; then
  271. log_error "Homebrew not found. Please install it first: https://brew.sh"
  272. exit 1
  273. fi
  274. brew install python git curl ffmpeg
  275. ;;
  276. esac
  277. log_success "System dependencies installed"
  278. }
  279. # -----------------------------------------------------------------------------
  280. # Installation Steps
  281. # -----------------------------------------------------------------------------
  282. create_user() {
  283. if [[ "$OS_TYPE" == "macos" ]]; then
  284. return # Skip user creation on macOS
  285. fi
  286. if id "$SERVICE_USER" &>/dev/null; then
  287. log_info "User '$SERVICE_USER' already exists"
  288. return
  289. fi
  290. log_info "Creating service user '$SERVICE_USER'..."
  291. sudo useradd --system --shell /usr/sbin/nologin --home-dir "$INSTALL_PATH" "$SERVICE_USER"
  292. log_success "Service user created"
  293. }
  294. # Ensure a directory exists and is owned by the current user. Used on macOS so
  295. # the install tree stays user-owned (git/venv/npm never touch a root-owned dir).
  296. # Only elevates when the target's parent is root-owned (e.g. /opt); a path under
  297. # $HOME is created without any sudo prompt.
  298. ensure_user_owned_dir() {
  299. local dir="$1"
  300. if [[ -d "$dir" ]] && [[ -w "$dir" ]]; then
  301. return
  302. fi
  303. if mkdir -p "$dir" 2>/dev/null; then
  304. return
  305. fi
  306. log_info "Creating $dir (requires your password)..."
  307. sudo mkdir -p "$dir"
  308. sudo chown "$(id -un):$(id -gn)" "$dir"
  309. }
  310. download_bambuddy() {
  311. log_info "Downloading BamBuddy..."
  312. # Validate branch exists on remote before proceeding
  313. if ! git ls-remote --exit-code --heads https://github.com/maziggy/bambuddy.git "$BRANCH" &>/dev/null; then
  314. log_error "Branch '$BRANCH' not found in the BamBuddy repository."
  315. log_info "Available branches:"
  316. git ls-remote --heads https://github.com/maziggy/bambuddy.git | sed 's|.*refs/heads/| - |'
  317. exit 1
  318. fi
  319. if [[ "$OS_TYPE" == "macos" ]]; then
  320. # macOS has no service user — the whole install runs as the current user.
  321. # Create the target user-owned (elevating only if its parent is root-owned,
  322. # e.g. /opt), then clone/update without sudo so the venv/frontend the user
  323. # builds next aren't fighting a root-owned tree.
  324. ensure_user_owned_dir "$INSTALL_PATH"
  325. if [[ -d "$INSTALL_PATH/.git" ]]; then
  326. log_info "Existing installation found, updating..."
  327. git config --global --add safe.directory "$INSTALL_PATH" 2>/dev/null || true
  328. cd "$INSTALL_PATH"
  329. git fetch origin
  330. git checkout "$BRANCH" 2>/dev/null || git checkout -b "$BRANCH" "origin/$BRANCH"
  331. git reset --hard "origin/$BRANCH"
  332. else
  333. git clone --branch "$BRANCH" https://github.com/maziggy/bambuddy.git "$INSTALL_PATH"
  334. fi
  335. elif [[ -d "$INSTALL_PATH/.git" ]]; then
  336. log_info "Existing installation found, updating..."
  337. # Add safe.directory to avoid "dubious ownership" error when running as root
  338. git config --global --add safe.directory "$INSTALL_PATH" 2>/dev/null || true
  339. cd "$INSTALL_PATH"
  340. git fetch origin
  341. git checkout "$BRANCH" 2>/dev/null || git checkout -b "$BRANCH" "origin/$BRANCH"
  342. git reset --hard "origin/$BRANCH"
  343. # Ensure correct ownership after update
  344. sudo chown -R "$SERVICE_USER:$SERVICE_USER" "$INSTALL_PATH" 2>/dev/null || true
  345. else
  346. # Clone as root so we have write access regardless of the installing user,
  347. # then hand ownership to the service user. Previously we chown'd the empty
  348. # dir to the service user before the clone, which left the install-running
  349. # user (not root, not bambuddy) unable to write .git into it.
  350. sudo mkdir -p "$INSTALL_PATH"
  351. sudo git clone --branch "$BRANCH" https://github.com/maziggy/bambuddy.git "$INSTALL_PATH"
  352. sudo chown -R "$SERVICE_USER:$SERVICE_USER" "$INSTALL_PATH" 2>/dev/null || true
  353. fi
  354. log_success "BamBuddy downloaded to $INSTALL_PATH (branch: $BRANCH)"
  355. }
  356. setup_virtualenv() {
  357. log_info "Setting up Python virtual environment..."
  358. cd "$INSTALL_PATH"
  359. if [[ "$OS_TYPE" == "macos" ]]; then
  360. $PYTHON_CMD -m venv venv
  361. "$INSTALL_PATH/venv/bin/pip" install --upgrade pip
  362. "$INSTALL_PATH/venv/bin/pip" install -r requirements.txt
  363. else
  364. # Venv is owned by the service user, so pip must also run as that user —
  365. # otherwise `pip install --upgrade pip` fails trying to rewrite its own
  366. # binary inside the venv it doesn't own.
  367. sudo -u "$SERVICE_USER" $PYTHON_CMD -m venv venv 2>/dev/null || $PYTHON_CMD -m venv venv
  368. sudo -u "$SERVICE_USER" "$INSTALL_PATH/venv/bin/pip" install --upgrade pip
  369. sudo -u "$SERVICE_USER" "$INSTALL_PATH/venv/bin/pip" install -r requirements.txt
  370. fi
  371. log_success "Virtual environment configured"
  372. }
  373. # macOS attributes Local Network permission (TCC) to a process's code
  374. # signature, and judges a launchd-spawned process on its own rather than
  375. # letting it inherit the grant of the Terminal that started it. Homebrew's
  376. # Python is unsigned on Intel, so there is no identity for a grant to attach
  377. # to: every connection to a LAN address is dropped with no error the app can
  378. # log and no permission prompt, and the printer just reads as unreachable
  379. # (#3114).
  380. #
  381. # Signing only when currently unsigned is load-bearing, not tidiness. On
  382. # arm64 the linker ad-hoc signs every binary it produces, so the identity is
  383. # a hash of the file itself; re-signing rotates that hash, invalidates a
  384. # working grant, and causes the very outage this repairs -- on every update.
  385. # A python.org build carries a real Developer ID for the same reason it must
  386. # not be touched.
  387. #
  388. # Both the interpreter and the framework's Python.app are signed. The first
  389. # is what sys._base_executable resolves to (measured on an Apple Silicon
  390. # Homebrew install, inside and outside a venv, and named as the responsible
  391. # process in the reporter's own TCC log on Intel); the second is the separate
  392. # binary whose signature is what actually fixed his machine. Which of the two
  393. # macOS attributes could not be established from either, and signing both
  394. # costs nothing.
  395. sign_python_for_tcc() {
  396. [[ "$OS_TYPE" == "macos" ]] || return 0
  397. local python_bin base_exe framework target signed_any=0
  398. local -a targets=()
  399. python_bin="$INSTALL_PATH/venv/bin/python3"
  400. if [[ ! -x "$python_bin" ]]; then
  401. return 0
  402. fi
  403. if ! command -v codesign &>/dev/null; then
  404. log_warn "codesign not found — skipping the macOS Local Network signing step."
  405. log_info "If the printer turns out to be unreachable, install the Xcode command line"
  406. log_info "tools with 'xcode-select --install' and re-run install/update_macos.sh."
  407. return 0
  408. fi
  409. log_info "Checking the Python code signature (macOS Local Network permission)..."
  410. base_exe="$("$python_bin" -c 'import os, sys; print(os.path.realpath(getattr(sys, "_base_executable", None) or sys.executable))' 2>/dev/null)" || return 0
  411. if [[ -z "$base_exe" ]] || [[ ! -e "$base_exe" ]]; then
  412. return 0
  413. fi
  414. targets+=("$base_exe")
  415. # .../Versions/3.13/bin/python3.13 -> .../Versions/3.13/Resources/Python.app
  416. framework="${base_exe%/bin/*}"
  417. if [[ "$framework" != "$base_exe" ]] && [[ -d "$framework/Resources/Python.app" ]]; then
  418. targets+=("$framework/Resources/Python.app")
  419. fi
  420. for target in "${targets[@]}"; do
  421. if codesign -dv "$target" &>/dev/null; then
  422. continue
  423. fi
  424. if codesign --force --sign - "$target" &>/dev/null; then
  425. log_success "Ad-hoc signed $target"
  426. signed_any=1
  427. else
  428. log_warn "Could not sign $target"
  429. log_info "Bambuddy may be unable to reach the printer. Run this by hand:"
  430. log_info " codesign --force --sign - \"$target\""
  431. fi
  432. done
  433. if [[ "$signed_any" -eq 0 ]]; then
  434. log_success "Python already carries a code signature"
  435. fi
  436. return 0
  437. }
  438. check_node_version() {
  439. # Returns 0 if Node.js 20+ is available, 1 otherwise
  440. if ! command -v node &>/dev/null; then
  441. return 1
  442. fi
  443. local version
  444. version=$(node --version 2>/dev/null | sed 's/^v//')
  445. local major
  446. major=$(echo "$version" | cut -d'.' -f1)
  447. if [[ "$major" -ge 20 ]]; then
  448. log_success "Found Node.js v$version"
  449. return 0
  450. else
  451. log_warn "Found Node.js v$version (need 20+)"
  452. return 1
  453. fi
  454. }
  455. install_nodejs() {
  456. log_info "Installing Node.js 22..."
  457. case "$PKG_MANAGER" in
  458. apt)
  459. # Remove old nodejs if present
  460. sudo apt-get remove -y nodejs npm 2>/dev/null || true
  461. curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash -
  462. sudo apt-get install -y nodejs
  463. ;;
  464. dnf|yum)
  465. sudo $PKG_MANAGER remove -y nodejs npm 2>/dev/null || true
  466. curl -fsSL https://rpm.nodesource.com/setup_22.x | sudo bash -
  467. sudo $PKG_MANAGER install -y nodejs
  468. ;;
  469. pacman)
  470. sudo pacman -S --noconfirm nodejs npm
  471. ;;
  472. zypper)
  473. sudo zypper install -y nodejs22
  474. ;;
  475. brew)
  476. brew install node@22
  477. brew link --overwrite node@22
  478. ;;
  479. *)
  480. log_error "Please install Node.js 20+ manually: https://nodejs.org/"
  481. exit 1
  482. ;;
  483. esac
  484. # Refresh PATH
  485. hash -r 2>/dev/null || true
  486. }
  487. build_frontend() {
  488. log_info "Building frontend..."
  489. cd "$INSTALL_PATH/frontend"
  490. # Check for Node.js 20+
  491. if ! check_node_version; then
  492. install_nodejs
  493. # Verify installation
  494. if ! check_node_version; then
  495. log_error "Failed to install Node.js 20+. Please install manually."
  496. exit 1
  497. fi
  498. fi
  499. # Frontend tree is owned by the service user, so npm must run as that user —
  500. # otherwise creating node_modules/ and writing build output fails. macOS
  501. # keeps the current-user flow since it has no service user.
  502. if [[ "$OS_TYPE" == "macos" ]]; then
  503. npm ci
  504. npm run build
  505. else
  506. sudo -H -u "$SERVICE_USER" npm ci
  507. sudo -H -u "$SERVICE_USER" npm run build
  508. fi
  509. log_success "Frontend built"
  510. }
  511. create_directories() {
  512. log_info "Creating data directories..."
  513. if [[ "$OS_TYPE" == "macos" ]]; then
  514. # Rootless: DATA_DIR/LOG_DIR default under the user-owned install path.
  515. ensure_user_owned_dir "$DATA_DIR"
  516. ensure_user_owned_dir "$LOG_DIR"
  517. else
  518. sudo mkdir -p "$DATA_DIR" "$LOG_DIR"
  519. sudo chown -R "$SERVICE_USER:$SERVICE_USER" "$DATA_DIR" "$LOG_DIR"
  520. fi
  521. log_success "Directories created"
  522. }
  523. create_env_file() {
  524. log_info "Creating environment configuration..."
  525. local env_file="$INSTALL_PATH/.env"
  526. # Note: Only include settings recognized by the app's pydantic Settings class
  527. # Other settings (PORT, BIND_ADDRESS, DATA_DIR, LOG_DIR, TZ) are set in systemd service
  528. cat > /tmp/bambuddy.env << EOF
  529. # BamBuddy Configuration
  530. # Generated by install.sh on $(date)
  531. # Debug mode (true = verbose logging)
  532. DEBUG=$DEBUG_MODE
  533. # Log level (only used when DEBUG=false)
  534. # Options: DEBUG, INFO, WARNING, ERROR
  535. LOG_LEVEL=$LOG_LEVEL
  536. # Enable file logging
  537. LOG_TO_FILE=true
  538. EOF
  539. if [[ "$OS_TYPE" == "macos" ]]; then
  540. # Rootless: install path is user-owned, so write it directly.
  541. mv /tmp/bambuddy.env "$env_file"
  542. chmod 600 "$env_file"
  543. else
  544. sudo mv /tmp/bambuddy.env "$env_file"
  545. sudo chown "$SERVICE_USER:$SERVICE_USER" "$env_file"
  546. sudo chmod 600 "$env_file"
  547. fi
  548. log_success "Environment file created at $env_file"
  549. }
  550. create_systemd_service() {
  551. if [[ "$OS_TYPE" == "macos" ]] || [[ "$SKIP_SERVICE" == "true" ]]; then
  552. return
  553. fi
  554. log_info "Creating systemd service..."
  555. # ProtectHome=true hides /home/* from the service, which breaks ExecStart
  556. # when INSTALL_PATH lives under /home (issue #1685). Loosen to read-only in
  557. # that case so the venv binary is still resolvable; ReadWritePaths below
  558. # re-grants writes for the install/data/log dirs.
  559. local protect_home="true"
  560. if [[ "$INSTALL_PATH" == /home/* ]]; then
  561. protect_home="read-only"
  562. fi
  563. # This function overwrites /etc/systemd/system/bambuddy.service outright. Any
  564. # ReadWritePaths the operator added by hand — a NAS share for Scheduled
  565. # Backups, typically — used to disappear with it, and the next backup failed
  566. # with EROFS ("Read-only file system"), which reads like a permission problem
  567. # and is not one (issue #2544). Back the old unit up and carry those paths
  568. # forward.
  569. local existing_unit="/etc/systemd/system/bambuddy.service"
  570. local extra_rw=""
  571. if [[ -f "$existing_unit" ]]; then
  572. local backup_unit="${existing_unit}.bak-$(date +%Y%m%d-%H%M%S)"
  573. sudo cp "$existing_unit" "$backup_unit"
  574. log_info "Existing service backed up to $backup_unit"
  575. local prev_rw
  576. prev_rw=$(sudo grep -hE '^ReadWritePaths=' "$existing_unit" 2>/dev/null | sed 's/^ReadWritePaths=//' || true)
  577. local p
  578. for p in $prev_rw; do
  579. case "$p" in
  580. "$DATA_DIR" | "$LOG_DIR" | "$INSTALL_PATH") continue ;;
  581. esac
  582. extra_rw+=" $p"
  583. done
  584. if [[ -n "$extra_rw" ]]; then
  585. log_info "Keeping custom writable paths from the previous service:$extra_rw"
  586. fi
  587. fi
  588. cat > /tmp/bambuddy.service << EOF
  589. [Unit]
  590. Description=BamBuddy - Bambu Lab Print Management
  591. Documentation=https://github.com/maziggy/bambuddy
  592. After=network.target
  593. [Service]
  594. Type=simple
  595. User=$SERVICE_USER
  596. Group=$SERVICE_USER
  597. WorkingDirectory=$INSTALL_PATH
  598. # App settings from .env file
  599. EnvironmentFile=$INSTALL_PATH/.env
  600. # Service settings (not in .env to avoid pydantic validation errors)
  601. Environment="DATA_DIR=$DATA_DIR"
  602. Environment="LOG_DIR=$LOG_DIR"
  603. Environment="TZ=$TIMEZONE"
  604. # --loop asyncio required: uvloop can truncate VP FTP uploads (#1896)
  605. # --timeout-graceful-shutdown required: uvicorn otherwise waits forever for
  606. # in-flight requests, and an MJPEG camera stream never completes — one open
  607. # camera tile hangs the stop until systemd SIGKILLs, skipping the WAL
  608. # checkpoint and the MQTT / virtual-printer teardown.
  609. ExecStart=$INSTALL_PATH/venv/bin/uvicorn backend.app.main:app --host $BIND_ADDRESS --port $PORT --loop asyncio --timeout-graceful-shutdown 5
  610. Restart=on-failure
  611. RestartSec=5
  612. # Backstop only — uvicorn bounds its own wait at 5s and teardown takes ~1-2s.
  613. TimeoutStopSec=30
  614. StandardOutput=journal
  615. StandardError=journal
  616. # Allow binding to privileged ports (322, 990, 2024-2026) for Virtual Printer proxy mode
  617. AmbientCapabilities=CAP_NET_BIND_SERVICE
  618. # Security hardening
  619. NoNewPrivileges=true
  620. PrivateTmp=true
  621. ProtectSystem=strict
  622. ProtectHome=$protect_home
  623. # ProtectSystem=strict makes EVERY path outside the ones below read-only for this
  624. # service — including a NAS share you mounted yourself and can write to from your
  625. # own shell. If you point Scheduled Backups at such a directory, add it here, or
  626. # better in a drop-in that survives a reinstall (#2544):
  627. #
  628. # sudo systemctl edit bambuddy
  629. # [Service]
  630. # ReadWritePaths=/mnt/your-nas-share
  631. #
  632. ReadWritePaths=$DATA_DIR $LOG_DIR $INSTALL_PATH$extra_rw
  633. [Install]
  634. WantedBy=multi-user.target
  635. EOF
  636. sudo mv /tmp/bambuddy.service /etc/systemd/system/bambuddy.service
  637. sudo systemctl daemon-reload
  638. log_success "Systemd service created"
  639. if prompt_yes_no "Enable BamBuddy to start on boot?" "y"; then
  640. sudo systemctl enable bambuddy
  641. log_success "Service enabled"
  642. fi
  643. if prompt_yes_no "Start BamBuddy now?" "y"; then
  644. sudo systemctl start bambuddy
  645. sleep 2
  646. if sudo systemctl is-active --quiet bambuddy; then
  647. log_success "BamBuddy is running"
  648. else
  649. log_warn "Service may have failed to start. Check: sudo journalctl -u bambuddy -f"
  650. fi
  651. fi
  652. }
  653. create_launchd_service() {
  654. if [[ "$OS_TYPE" != "macos" ]] || [[ "$SKIP_SERVICE" == "true" ]]; then
  655. return
  656. fi
  657. log_info "Creating launchd service..."
  658. local plist_path="$HOME/Library/LaunchAgents/com.bambuddy.app.plist"
  659. cat > "$plist_path" << EOF
  660. <?xml version="1.0" encoding="UTF-8"?>
  661. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  662. <plist version="1.0">
  663. <dict>
  664. <key>Label</key>
  665. <string>com.bambuddy.app</string>
  666. <key>ProgramArguments</key>
  667. <array>
  668. <string>$INSTALL_PATH/venv/bin/uvicorn</string>
  669. <string>backend.app.main:app</string>
  670. <string>--host</string>
  671. <string>$BIND_ADDRESS</string>
  672. <string>--port</string>
  673. <string>$PORT</string>
  674. <!-- the loop asyncio flag below is required: uvloop can truncate VP FTP uploads, #1896 -->
  675. <string>--loop</string>
  676. <string>asyncio</string>
  677. <!-- required: uvicorn otherwise waits forever for in-flight requests, and an
  678. MJPEG camera stream never completes — one open camera tile hangs the stop
  679. until launchd SIGKILLs, skipping the WAL checkpoint and MQTT teardown -->
  680. <string>--timeout-graceful-shutdown</string>
  681. <string>5</string>
  682. </array>
  683. <key>WorkingDirectory</key>
  684. <string>$INSTALL_PATH</string>
  685. <key>EnvironmentVariables</key>
  686. <dict>
  687. <key>DEBUG</key>
  688. <string>$DEBUG_MODE</string>
  689. <key>LOG_LEVEL</key>
  690. <string>$LOG_LEVEL</string>
  691. <key>DATA_DIR</key>
  692. <string>$DATA_DIR</string>
  693. <key>LOG_DIR</key>
  694. <string>$LOG_DIR</string>
  695. <key>TZ</key>
  696. <string>$TIMEZONE</string>
  697. </dict>
  698. <key>RunAtLoad</key>
  699. <true/>
  700. <key>KeepAlive</key>
  701. <true/>
  702. <key>StandardOutPath</key>
  703. <string>$LOG_DIR/bambuddy.log</string>
  704. <key>StandardErrorPath</key>
  705. <string>$LOG_DIR/bambuddy.error.log</string>
  706. </dict>
  707. </plist>
  708. EOF
  709. log_success "Launchd plist created at $plist_path"
  710. if prompt_yes_no "Load BamBuddy service now?" "y"; then
  711. launchctl load "$plist_path"
  712. sleep 2
  713. if launchctl list | grep -q "com.bambuddy.app"; then
  714. log_success "BamBuddy is running"
  715. else
  716. log_warn "Service may have failed to start. Check: cat $LOG_DIR/bambuddy.error.log"
  717. fi
  718. fi
  719. }
  720. # -----------------------------------------------------------------------------
  721. # Main Installation Flow
  722. # -----------------------------------------------------------------------------
  723. parse_args() {
  724. while [[ $# -gt 0 ]]; do
  725. case "$1" in
  726. --path)
  727. INSTALL_PATH="$2"
  728. shift 2
  729. ;;
  730. --port)
  731. PORT="$2"
  732. shift 2
  733. ;;
  734. --bind)
  735. BIND_ADDRESS="$2"
  736. shift 2
  737. ;;
  738. --tz)
  739. TIMEZONE="$2"
  740. shift 2
  741. ;;
  742. --data-dir)
  743. DATA_DIR="$2"
  744. shift 2
  745. ;;
  746. --log-dir)
  747. LOG_DIR="$2"
  748. shift 2
  749. ;;
  750. --debug)
  751. DEBUG_MODE="true"
  752. shift
  753. ;;
  754. --log-level)
  755. LOG_LEVEL="$2"
  756. shift 2
  757. ;;
  758. --branch)
  759. BRANCH="$2"
  760. shift 2
  761. ;;
  762. --no-service)
  763. SKIP_SERVICE="true"
  764. shift
  765. ;;
  766. --set-system-tz)
  767. SET_SYSTEM_TZ="true"
  768. shift
  769. ;;
  770. --yes|-y)
  771. NON_INTERACTIVE="true"
  772. shift
  773. ;;
  774. --help|-h)
  775. show_help
  776. ;;
  777. *)
  778. log_error "Unknown option: $1"
  779. show_help
  780. ;;
  781. esac
  782. done
  783. }
  784. gather_config() {
  785. echo ""
  786. echo -e "${BOLD}Installation Configuration${NC}"
  787. echo -e "${CYAN}─────────────────────────────────────────${NC}"
  788. echo ""
  789. # Installation path
  790. [[ -z "$INSTALL_PATH" ]] && prompt "Installation directory" "$DEFAULT_INSTALL_PATH" INSTALL_PATH
  791. # Branch
  792. [[ -z "$BRANCH" ]] && prompt "Git branch" "main" BRANCH
  793. # Port
  794. [[ -z "$PORT" ]] && prompt "Port to listen on" "$DEFAULT_PORT" PORT
  795. # Bind address
  796. if [[ -z "$BIND_ADDRESS" ]]; then
  797. echo ""
  798. echo "Network access:"
  799. echo " 0.0.0.0 - Accessible from other devices on your network (recommended)"
  800. echo " 127.0.0.1 - Only accessible from this machine"
  801. prompt "Bind address" "$DEFAULT_BIND_ADDRESS" BIND_ADDRESS
  802. fi
  803. # Timezone
  804. detect_timezone
  805. prompt "Timezone" "$TIMEZONE" TIMEZONE
  806. # Offer to set system timezone if different from current (skip if already set via --set-system-tz)
  807. if [[ -z "$SET_SYSTEM_TZ" ]]; then
  808. local current_tz
  809. current_tz=$(timedatectl show --property=Timezone --value 2>/dev/null) || true
  810. if [[ -n "$TIMEZONE" ]] && [[ "$TIMEZONE" != "$current_tz" ]]; then
  811. # Default to "n" so unattended installs don't change system TZ unless --set-system-tz is used
  812. if prompt_yes_no "Set system timezone to $TIMEZONE?" "n"; then
  813. SET_SYSTEM_TZ="true"
  814. else
  815. SET_SYSTEM_TZ="false"
  816. fi
  817. else
  818. SET_SYSTEM_TZ="false"
  819. fi
  820. fi
  821. # Data directory
  822. [[ -z "$DATA_DIR" ]] && DATA_DIR="$INSTALL_PATH/data"
  823. prompt "Data directory" "$DATA_DIR" DATA_DIR
  824. # Log directory
  825. [[ -z "$LOG_DIR" ]] && LOG_DIR="$INSTALL_PATH/logs"
  826. prompt "Log directory" "$LOG_DIR" LOG_DIR
  827. # Debug mode
  828. if [[ -z "$DEBUG_MODE" ]]; then
  829. if prompt_yes_no "Enable debug mode?" "n"; then
  830. DEBUG_MODE="true"
  831. else
  832. DEBUG_MODE="false"
  833. fi
  834. fi
  835. # Log level
  836. if [[ -z "$LOG_LEVEL" ]]; then
  837. echo ""
  838. echo "Log levels: DEBUG, INFO, WARNING, ERROR"
  839. prompt "Log level" "$DEFAULT_LOG_LEVEL" LOG_LEVEL
  840. fi
  841. # Confirm
  842. echo ""
  843. echo -e "${BOLD}Installation Summary${NC}"
  844. echo -e "${CYAN}─────────────────────────────────────────${NC}"
  845. echo -e " Install path: ${GREEN}$INSTALL_PATH${NC}"
  846. if [[ "$BRANCH" != "main" ]]; then
  847. echo -e " Branch: ${YELLOW}$BRANCH${NC} (beta)"
  848. else
  849. echo -e " Branch: ${GREEN}$BRANCH${NC}"
  850. fi
  851. echo -e " Port: ${GREEN}$PORT${NC}"
  852. echo -e " Bind address: ${GREEN}$BIND_ADDRESS${NC}"
  853. echo -e " Timezone: ${GREEN}$TIMEZONE${NC}"
  854. echo -e " Data dir: ${GREEN}$DATA_DIR${NC}"
  855. echo -e " Log dir: ${GREEN}$LOG_DIR${NC}"
  856. echo -e " Debug mode: ${GREEN}$DEBUG_MODE${NC}"
  857. echo -e " Log level: ${GREEN}$LOG_LEVEL${NC}"
  858. echo ""
  859. if ! prompt_yes_no "Proceed with installation?" "y"; then
  860. echo "Installation cancelled."
  861. exit 0
  862. fi
  863. }
  864. main() {
  865. parse_args "$@"
  866. print_banner
  867. # Check if running via pipe (curl | bash) - interactive mode won't work
  868. if [[ ! -t 0 ]] && [[ "$NON_INTERACTIVE" != "true" ]]; then
  869. log_error "Interactive mode requires a terminal."
  870. log_info "When using 'curl | bash', you must use non-interactive mode:"
  871. echo ""
  872. echo " curl -fsSL URL | bash -s -- --yes"
  873. echo ""
  874. log_info "Or download and run directly:"
  875. echo ""
  876. echo " curl -fsSL URL -o install.sh && chmod +x install.sh && ./install.sh"
  877. echo ""
  878. exit 1
  879. fi
  880. # Check for root (we need sudo for some operations)
  881. if [[ "$EUID" -eq 0 ]] && [[ "$OS_TYPE" != "macos" ]]; then
  882. log_warn "Running as root. Consider using a regular user with sudo privileges."
  883. fi
  884. # Detect system
  885. log_info "Detecting system..."
  886. detect_os
  887. log_success "Detected: $OS_TYPE (package manager: $PKG_MANAGER)"
  888. # macOS must run rootless. Homebrew hard-refuses to run as root, and a venv
  889. # / node_modules created by root can't be managed by the launchd agent (which
  890. # runs as the user). Bail early with an actionable message instead of dying
  891. # halfway through on "brew: running as root is not supported".
  892. if [[ "$OS_TYPE" == "macos" ]]; then
  893. if [[ "$EUID" -eq 0 ]]; then
  894. log_error "Don't run the macOS installer with sudo."
  895. log_info "Homebrew, the Python venv, and the launchd agent must all be created as your"
  896. log_info "normal user. Re-run without sudo (the script elevates only when it truly needs to):"
  897. echo ""
  898. echo " ./install.sh"
  899. echo ""
  900. exit 1
  901. fi
  902. # /opt requires sudo to create and would leave a root-owned tree; default
  903. # macOS installs to a user-owned location so the whole flow stays rootless.
  904. if [[ "$DEFAULT_INSTALL_PATH" == "/opt/bambuddy" ]]; then
  905. DEFAULT_INSTALL_PATH="$HOME/bambuddy"
  906. fi
  907. fi
  908. # Check/install Python
  909. if ! detect_python; then
  910. log_info "Python 3.10+ not found, will install..."
  911. fi
  912. # Gather configuration
  913. gather_config
  914. # Install steps
  915. echo ""
  916. echo -e "${BOLD}Starting Installation${NC}"
  917. echo -e "${CYAN}─────────────────────────────────────────${NC}"
  918. echo ""
  919. install_dependencies
  920. detect_python || { log_error "Failed to install Python"; exit 1; }
  921. # Set system timezone if requested
  922. if [[ "$SET_SYSTEM_TZ" == "true" ]]; then
  923. log_info "Setting system timezone to $TIMEZONE..."
  924. if [[ "$OS_TYPE" == "macos" ]]; then
  925. sudo systemsetup -settimezone "$TIMEZONE" 2>/dev/null || true
  926. else
  927. sudo timedatectl set-timezone "$TIMEZONE" 2>/dev/null || true
  928. fi
  929. log_success "System timezone set to $TIMEZONE"
  930. fi
  931. if [[ "$OS_TYPE" != "macos" ]]; then
  932. create_user
  933. else
  934. SERVICE_USER="$USER"
  935. fi
  936. download_bambuddy
  937. setup_virtualenv
  938. sign_python_for_tcc
  939. build_frontend
  940. create_directories
  941. create_env_file
  942. if [[ "$OS_TYPE" == "macos" ]]; then
  943. create_launchd_service
  944. else
  945. create_systemd_service
  946. fi
  947. # Done!
  948. echo ""
  949. echo -e "${GREEN}╔══════════════════════════════════════════════════════════════╗${NC}"
  950. echo -e "${GREEN}║ ║${NC}"
  951. echo -e "${GREEN}║ Installation Complete! ║${NC}"
  952. echo -e "${GREEN}║ ║${NC}"
  953. echo -e "${GREEN}╚══════════════════════════════════════════════════════════════╝${NC}"
  954. echo ""
  955. # Show appropriate URL based on bind address
  956. if [[ "$BIND_ADDRESS" == "0.0.0.0" ]]; then
  957. local ip_addr
  958. ip_addr=$(hostname -I 2>/dev/null | awk '{print $1}') || ip_addr="<your-ip>"
  959. echo -e " ${BOLD}Access BamBuddy:${NC} ${CYAN}http://localhost:$PORT${NC}"
  960. echo -e " ${CYAN}http://$ip_addr:$PORT${NC} (from other devices)"
  961. else
  962. echo -e " ${BOLD}Access BamBuddy:${NC} ${CYAN}http://localhost:$PORT${NC}"
  963. fi
  964. echo ""
  965. if [[ "$OS_TYPE" == "macos" ]]; then
  966. echo -e " ${BOLD}Manage service:${NC}"
  967. echo -e " Start: launchctl load ~/Library/LaunchAgents/com.bambuddy.app.plist"
  968. echo -e " Stop: launchctl unload ~/Library/LaunchAgents/com.bambuddy.app.plist"
  969. echo -e " Logs: tail -f $LOG_DIR/bambuddy.log"
  970. else
  971. echo -e " ${BOLD}Manage service:${NC}"
  972. echo -e " Status: sudo systemctl status bambuddy"
  973. echo -e " Start: sudo systemctl start bambuddy"
  974. echo -e " Stop: sudo systemctl stop bambuddy"
  975. echo -e " Logs: sudo journalctl -u bambuddy -f"
  976. fi
  977. echo ""
  978. echo -e " ${BOLD}Update BamBuddy:${NC}"
  979. echo -e " cd $INSTALL_PATH && git pull && source venv/bin/activate"
  980. echo -e " pip install -r requirements.txt && cd frontend && npm ci && npm run build"
  981. if [[ "$OS_TYPE" != "macos" ]]; then
  982. echo -e " sudo systemctl restart bambuddy"
  983. fi
  984. echo ""
  985. echo -e " ${BOLD}Documentation:${NC} ${CYAN}https://wiki.bambuddy.cool${NC}"
  986. echo ""
  987. }
  988. main "$@"