- Add comprehensive JAV studios quick reference guide - Update documentation index with JAV reference - Add logo animation components and test files - Update CSS styling for cards, buttons, forms, and theme - Add utility scripts for configuration and import workflows - Update templates and UI components 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
76 lines
1.6 KiB
Bash
Executable File
76 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# TPDB import helper (TUI-friendly runner)
|
|
# Usage:
|
|
# ./scripts/tpdb_import.sh all
|
|
# ./scripts/tpdb_import.sh performers
|
|
# ./scripts/tpdb_import.sh studios
|
|
# ./scripts/tpdb_import.sh scenes
|
|
|
|
set -euo pipefail
|
|
|
|
cmd="${1:-}"
|
|
|
|
# Try env first, then config/api_keys.json
|
|
if [[ -z "${TPDB_API_KEY:-}" ]]; then
|
|
if [[ -f "../config/api_keys.json" ]]; then
|
|
TPDB_API_KEY="$(
|
|
python - <<'PY' "../config/api_keys.json"
|
|
import json, sys
|
|
p = sys.argv[1]
|
|
try:
|
|
with open(p) as f:
|
|
data = json.load(f)
|
|
print(data.get("tpdb_api_key", ""))
|
|
except Exception:
|
|
print("")
|
|
PY
|
|
)"
|
|
fi
|
|
fi
|
|
|
|
if [[ -z "${TPDB_API_KEY:-}" ]]; then
|
|
echo "TPDB_API_KEY is not set. Export it, or save it via scripts/set_api_key.sh." >&2
|
|
echo ' export TPDB_API_KEY="your-key-here"' >&2
|
|
exit 1
|
|
fi
|
|
|
|
run() {
|
|
echo "▶ $*"
|
|
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
if [[ -x "$repo_root/goondex" ]]; then
|
|
exec "$repo_root/goondex" "$@"
|
|
elif [[ -x "$repo_root/bin/goondex" ]]; then
|
|
exec "$repo_root/bin/goondex" "$@"
|
|
else
|
|
echo "goondex binary not found. Build it first with: go build -o bin/goondex ./cmd/goondex" >&2
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
case "$cmd" in
|
|
all)
|
|
run import all
|
|
;;
|
|
performers|performer)
|
|
run import performer
|
|
;;
|
|
studios|studio)
|
|
run import studio
|
|
;;
|
|
scenes|scene)
|
|
run import scene
|
|
;;
|
|
*)
|
|
cat <<'EOF' >&2
|
|
Usage: ./scripts/tpdb_import.sh {all|performers|studios|scenes}
|
|
|
|
Examples:
|
|
./scripts/tpdb_import.sh all
|
|
./scripts/tpdb_import.sh performers
|
|
./scripts/tpdb_import.sh studios
|
|
./scripts/tpdb_import.sh scenes
|
|
EOF
|
|
exit 1
|
|
;;
|
|
esac
|