#!/usr/bin/env bash # sync.sh — Copy telegram-join-approval-bot submodule into internal/, then apply patches. # Usage: ./scripts/sync.sh set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" ROOT_DIR="$(cd "$SCRIPT_DIR/.." && pwd)" SUBMODULE_DIR="$ROOT_DIR/telegram-join-approval-bot" PATCH_FILE="$ROOT_DIR/patches/0001-nuzzles.patch" # ── 1. Ensure submodule is initialised ──────────────────────────────────────── echo "→ Updating submodule..." # Update the submodule git -C "$ROOT_DIR" submodule update --init --recursive --remote # ── 2. Wipe and re-copy the submodule source ────────────────────────────────── echo "→ Copying telegram-join-approval-bot source to root..." # Clean up directories that will be replaced rm -rf "$ROOT_DIR/config" "$ROOT_DIR/handlers" "$ROOT_DIR/pkg" "$ROOT_DIR/main.go" "$ROOT_DIR/go.mod" "$ROOT_DIR/go.sum" # Copy source files, excluding .git and keeping patches/ and scripts/ rsync -a --stats --exclude='.git' "$SUBMODULE_DIR/" "$ROOT_DIR/" \ --exclude='patches' --exclude='scripts' --exclude='README.md' --exclude='Dockerfile' # Remove scripts/ from .gitignore so we can track our sync script sed -i '/^scripts\/$/d' "$ROOT_DIR/.gitignore" # ── 3. Rewrite the Go module path inside the copied source ──────────────────── # Change the module from telegram-join-approval-bot to telegram-join-approval-nuzzles echo "→ Rewriting module path in go.mod ..." sed -i "s|^module git\.zio\.sh/astra/telegram-join-approval-bot|module git.zio.sh/astra/telegram-join-approval-nuzzles|" "$ROOT_DIR/go.mod" # Fix all import references in the copied source echo "→ Rewriting import paths in .go files ..." find "$ROOT_DIR" -name '*.go' -not -path "*/telegram-join-approval-bot/telegram-join-approval-bot/*" | xargs sed -i 's|git\.zio\.sh/astra/telegram-join-approval-bot|git.zio.sh/astra/telegram-join-approval-nuzzles|g' # ── 4. Apply string patch ──────────────────────────────────────────── if [[ -f "$PATCH_FILE" ]]; then echo "→ Applying patch ..." # Check if patch applies cleanly first (dry run) if patch --dry-run -p1 -d "$ROOT_DIR" < "$PATCH_FILE" &>/dev/null; then patch -p1 --no-backup-if-mismatch -d "$ROOT_DIR" < "$PATCH_FILE" echo " Patch applied successfully." else echo "" echo "⚠️ Patch did not apply cleanly — telegram-join-approval-bot may have changed." echo " Run the following to see conflicts:" echo " patch --dry-run -p1 -d $ROOT_DIR < $PATCH_FILE" echo "" echo " Update patches/0001-nuzzles.patch to match the new source, then re-run sync." exit 1 fi else echo " No patch file found at patches/0001-nuzzles.patch — skipping." fi # ── 5. Verify it builds ─────────────────────────────────────────────────────── echo "→ Verifying build ..." go build "$ROOT_DIR" 2>&1 && echo " Build OK." || { echo "❌ Build failed."; exit 1; } rm "$SCRIPT_DIR/telegram-join-approval-nuzzles" # ── 6. Commit changes ───────────────────────────────────────────────────────── echo "→ Committing changes..." git -C "$ROOT_DIR" add -A git -C "$ROOT_DIR" commit -m "Update telegram-join-approval-bot submodule and apply patches" || true echo "" echo "✅ Sync complete. Root directory is up to date with telegram-join-approval-bot (patched)."