#!/usr/bin/env bash
# 新本番 (tools.kachiumaai.com) の phpMyAdmin を一時無効化する。
# リリース時は scripts/enable_phpmyadmin.sh で再有効化。
set -euo pipefail

CONF="/etc/httpd/conf.d/phpMyAdmin.conf"
DISABLED="/etc/httpd/conf.d/phpMyAdmin.conf.disabled"

if [[ -f "$CONF" ]]; then
  mv "$CONF" "$DISABLED"
  echo "disabled: $CONF -> $DISABLED"
elif [[ -f "$DISABLED" ]]; then
  echo "already disabled: $DISABLED"
else
  echo "phpMyAdmin Apache config not found; nothing to disable" >&2
  exit 1
fi

apachectl configtest
systemctl reload httpd

echo "verify: curl -sI https://tools.kachiumaai.com/phpmyadmin/ | head -1"
curl -sI "https://tools.kachiumaai.com/phpmyadmin/" 2>/dev/null | head -1 || true
