Full-featured cPanel backup tool with SSH, S3, and Google Drive support. Includes WHM plugin with Tailwind/DaisyUI UI, multi-remote management, decoupled schedules, and account restore workflows. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
52 lines
1.3 KiB
Bash
52 lines
1.3 KiB
Bash
#!/usr/bin/env bash
|
|
# gniza/lib/utils.sh — Core utility functions
|
|
|
|
die() {
|
|
local code="${2:-$EXIT_FATAL}"
|
|
echo "${C_RED}FATAL: $1${C_RESET}" >&2
|
|
exit "$code"
|
|
}
|
|
|
|
require_root() {
|
|
[[ $EUID -eq 0 ]] || die "This command must be run as root"
|
|
}
|
|
|
|
timestamp() {
|
|
date -u +"%Y-%m-%dT%H%M%S"
|
|
}
|
|
|
|
human_size() {
|
|
local bytes="$1"
|
|
if (( bytes >= 1073741824 )); then
|
|
local whole=$(( bytes / 1073741824 ))
|
|
local frac=$(( (bytes % 1073741824) * 10 / 1073741824 ))
|
|
printf "%d.%d GB" "$whole" "$frac"
|
|
elif (( bytes >= 1048576 )); then
|
|
local whole=$(( bytes / 1048576 ))
|
|
local frac=$(( (bytes % 1048576) * 10 / 1048576 ))
|
|
printf "%d.%d MB" "$whole" "$frac"
|
|
elif (( bytes >= 1024 )); then
|
|
local whole=$(( bytes / 1024 ))
|
|
local frac=$(( (bytes % 1024) * 10 / 1024 ))
|
|
printf "%d.%d KB" "$whole" "$frac"
|
|
else
|
|
printf "%d B" "$bytes"
|
|
fi
|
|
}
|
|
|
|
human_duration() {
|
|
local seconds="$1"
|
|
if (( seconds >= 3600 )); then
|
|
printf "%dh %dm %ds" $((seconds/3600)) $((seconds%3600/60)) $((seconds%60))
|
|
elif (( seconds >= 60 )); then
|
|
printf "%dm %ds" $((seconds/60)) $((seconds%60))
|
|
else
|
|
printf "%ds" "$seconds"
|
|
fi
|
|
}
|
|
|
|
# Check if a command exists
|
|
require_cmd() {
|
|
command -v "$1" &>/dev/null || die "Required command not found: $1"
|
|
}
|