jumpserver/requirements/static_files.sh
2025-05-20 13:14:47 +08:00

49 lines
1.2 KiB
Bash

#!/bin/bash
CURRENT_DIR=$(cd "$(dirname "$0")" && pwd)
BASE_DIR=$(dirname "$CURRENT_DIR")
VERSION=v0.0.1
to_files="
apps/common/utils/ip/geoip/GeoLite2-City.mmdb
apps/common/utils/ip/ipip/ipipfree.ipdb
apps/accounts/automations/check_account/leak_passwords.db
"
if [[ $1 == "root" ]];then
BASE_DIR="${BASE_DIR}/jumpserver"
fi
for file in $to_files; do
# Check if the file already exists
file_path="${BASE_DIR}/$file"
if [ -f "$file_path" ]; then
echo "File $file already exists, skipping download."
continue
fi
filename=$(basename "$file")
static_path="$BASE_DIR/data/static/$filename"
if [[ "$1" == "static" && -f "$static_path" ]]; then
echo "File $file already exists in static path, copy it."
cp -f "$static_path" "$file_path"
continue
fi
to_dir=$(dirname "$file_path")
if [ ! -d "$to_dir" ]; then
mkdir -p "$to_dir"
fi
url=""https://github.com/jumpserver/static/releases/download/${VERSION}/$filename""
echo "Download $filename to $file_path"
wget "$url" -O "${file_path}"
if [[ "$1" == "static" ]];then
# Copy the file to the static directory
echo "Copy to static"
cp -f "$file_path" "$static_path"
fi
done