#!/usr/bin/env bash
# Pre-push checks aligned with CI (.github/workflows/app.yml, frontend.yml, cli.yml).

set -euo pipefail

ROOT="$(cd "$(dirname "$0")/../.." && pwd)"
# shellcheck source=scripts/git-hooks/common.sh
source "$ROOT/scripts/git-hooks/common.sh"

if hook_skip; then
  exit 0
fi

cd "$ROOT"

remote="${1:-origin}"
while read -r _local_ref local_sha remote_ref remote_sha; do
  if [[ "$local_sha" =~ ^0+$ ]]; then
    continue
  fi

  log_step "pre-push ($remote ${remote_ref#refs/heads/})"

  ensure_origin_main
  pr_ref="$(pr_diff_base_ref)"
  pr_tip="$local_sha"
  pr_diff="${pr_ref}...${pr_tip}"
  lint_from_rev="$pr_ref"

  if [[ "$remote_sha" =~ ^0+$ ]]; then
    push_start="$(git -C "$ROOT" merge-base "$pr_ref" "$local_sha")"
    push_range="${push_start}..${local_sha}"
    log_step "new branch; PR diff ${pr_ref}...${local_sha:0:12}"
  else
    if [[ "$remote_sha" == "$local_sha" ]]; then
      log_ok "pre-push: nothing new to push"
      continue
    fi
    push_range="${remote_sha}..${local_sha}"
    log_step "pushing ${remote_sha:0:12}..${local_sha:0:12}; PR diff ${pr_ref}...${local_sha:0:12}"
  fi

  check_whitespace "$push_range"

  pr_changed=()
  while IFS= read -r line; do
    [[ -n "$line" ]] && pr_changed+=("$line")
  done < <(git diff --name-only --diff-filter=ACMR "$pr_diff" || true)

  if [[ ${#pr_changed[@]} -eq 0 ]]; then
    log_ok "pre-push: no PR diff changes"
    continue
  fi

  pr_changed_go=()
  while IFS= read -r line; do
    [[ -n "$line" ]] && pr_changed_go+=("$line")
  done < <(git diff --name-only --diff-filter=ACMR "$pr_diff" -- '*.go' ':!cli/**' || true)

  if [[ ${#pr_changed_go[@]} -gt 0 ]]; then
    go_files=()
    for f in "${pr_changed_go[@]}"; do
      go_files+=("$ROOT/$f")
    done
    check_gofmt_files check "${go_files[@]}"

    run_golangci_if_available "$lint_from_rev"

    pkgs=()
    while IFS= read -r line; do
      [[ -n "$line" ]] && pkgs+=("$line")
    done < <(collect_go_packages_from_files "${pr_changed_go[@]}")

    filtered=()
    for pkg in "${pkgs[@]}"; do
      [[ "$pkg" == *"/docreader/"* ]] && continue
      filtered+=("$pkg")
    done

    run_full_app_vet
    run_go_test_packages "${filtered[@]}"

    log_step "go build ./cmd/server"
    go build ./cmd/server
    log_ok "go build ./cmd/server"
  fi

  if paths_match_prefix "cli/" "${pr_changed[@]}"; then
    run_cli_checks
  fi
  if paths_match_prefix "frontend/" "${pr_changed[@]}"; then
    run_frontend_checks
  fi

  log_ok "pre-push passed"
done

exit 0
