Update: 2025-05-30 08:28:40

This commit is contained in:
Mark Randall Havens 2025-05-30 08:28:40 -05:00
parent 836d3aa883
commit 2c815a61c1

View file

@ -2,143 +2,126 @@
set -euo pipefail set -euo pipefail
IFS=$'\n\t' IFS=$'\n\t'
# ───────────────────────────────────────────── # ───────────────────────────────
# ▓▓ CONFIG # │ CONFIG & PATHS │
# ───────────────────────────────────────────── # ───────────────────────────────
GIT_REMOTE_NAME="bitbucket" REMOTE_NAME="bitbucket"
REPO_NAME=$(basename "$(pwd)") REPO_NAME=$(basename "$(pwd)")
BB_USER="mrhavens"
DEFAULT_NAME="Mark Randall Havens" DEFAULT_NAME="Mark Randall Havens"
DEFAULT_EMAIL="mark.r.havens@gmail.com" DEFAULT_EMAIL="mark.r.havens@gmail.com"
USERNAME="mrhavens" APP_PASS_FILE="$HOME/.bitbucket_app_password"
BITBUCKET_API="https://api.bitbucket.org/2.0"
BITBUCKET_SSH="git@bitbucket.org:$USERNAME/$REPO_NAME.git"
TOKEN_FILE="$HOME/.bitbucket_app_password"
SSH_KEY="$HOME/.ssh/id_rsa"
SSH_PUB="$HOME/.ssh/id_rsa.pub"
# ───────────────────────────────────────────── # ╭───────────────────────────────╮
# ▓▓ LOGGING # │ LOGGING │
# ───────────────────────────────────────────── # ╰───────────────────────────────╯
info() { echo -e "\e[1;34m[INFO]\e[0m $*"; } info() { echo -e "\e[1;34m[INFO]\e[0m $*"; }
warn() { echo -e "\e[1;33m[WARN]\e[0m $*"; } warn() { echo -e "\e[1;33m[WARN]\e[0m $*"; }
error() { echo -e "\e[1;31m[ERROR]\e[0m $*" >&2; exit 1; } error() { echo -e "\e[1;31m[ERROR]\e[0m $*" >&2; exit 1; }
# ───────────────────────────────────────────── # ───────────────────────────────
# ▓▓ DEPENDENCIES # │ GIT + SSH PREREQUISITES │
# ───────────────────────────────────────────── # ───────────────────────────────
info "Checking prerequisites..." info "Checking prerequisites..."
sudo apt update -qq sudo apt update -qq
sudo apt install -y git curl jq openssh-client >/dev/null sudo apt install -y git openssh-client curl jq || error "Install failed"
# ─────────────────────────────────────────────
# ▓▓ GIT CONFIGURATION
# ─────────────────────────────────────────────
git config --global user.name "$DEFAULT_NAME" git config --global user.name "$DEFAULT_NAME"
git config --global user.email "$DEFAULT_EMAIL" git config --global user.email "$DEFAULT_EMAIL"
info "Git identity: $(git config --global user.name) <$(git config --global user.email)>" info "Git identity: $DEFAULT_NAME <$DEFAULT_EMAIL>"
# ───────────────────────────────────────────── # ───────────────────────────────
# ▓▓ SSH KEY MANAGEMENT # │ SSH KEY SETUP │
# ───────────────────────────────────────────── # ───────────────────────────────
if [ ! -f "$SSH_KEY" ]; then if [ ! -f "$HOME/.ssh/id_rsa" ]; then
info "Generating new SSH key..." info "Generating new SSH key..."
ssh-keygen -t rsa -b 4096 -C "$DEFAULT_EMAIL" -f "$SSH_KEY" -N "" ssh-keygen -t rsa -b 4096 -C "$DEFAULT_EMAIL" -f "$HOME/.ssh/id_rsa" -N ""
fi fi
eval "$(ssh-agent -s)" eval "$(ssh-agent -s)"
ssh-add "$SSH_KEY" || warn "SSH key already loaded" ssh-add "$HOME/.ssh/id_rsa"
# ─────────────────────────────────────────────
# ▓▓ TEST SSH TO BITBUCKET
# ─────────────────────────────────────────────
info "Testing SSH connection to Bitbucket..." info "Testing SSH connection to Bitbucket..."
if ! ssh -o StrictHostKeyChecking=no -T git@bitbucket.org 2>&1 | grep -q "authenticated"; then if ! ssh -T git@bitbucket.org 2>&1 | grep -q "authenticated"; then
PUBKEY=$(<"$SSH_PUB") PUBKEY=$(<"$HOME/.ssh/id_rsa.pub")
echo info "❗ SSH connection not verified."
warn "SSH key not yet registered with Bitbucket." echo -e "\n🔐 Add this public key to your Bitbucket account:\n"
echo "🔐 Please upload the following key manually to:"
echo " https://bitbucket.org/account/settings/ssh-keys/"
echo
echo "$PUBKEY" echo "$PUBKEY"
echo echo -e "\n→ https://bitbucket.org/account/settings/ssh-keys/"
read -rp "✅ Press [Enter] once you've uploaded the key..." exit 1
fi fi
# ───────────────────────────────────────────── # ╭───────────────────────────────╮
# ▓▓ BITBUCKET AUTH (App Password) # │ APP PASSWORD SETUP │
# ───────────────────────────────────────────── # ╰───────────────────────────────╯
if [ ! -f "$TOKEN_FILE" ]; then if [ ! -f "$APP_PASS_FILE" ]; then
echo -e "\n🔐 Create a Bitbucket App Password with:"
echo " ✅ permissions: Repositories (Read+Write), SSH, and Webhooks"
echo " 🔗 https://bitbucket.org/account/settings/app-passwords/\n"
read -rsp "Paste your Bitbucket App Password: " BB_APP_PASS
echo "$BB_APP_PASS" > "$APP_PASS_FILE"
chmod 600 "$APP_PASS_FILE"
echo echo
echo "🔑 Create a Bitbucket App Password with:" else
echo " ✅ permissions: Repositories (Read+Write), SSH, and Webhooks" BB_APP_PASS=$(<"$APP_PASS_FILE")
echo " 🌐 https://bitbucket.org/account/settings/app-passwords/"
echo
read -rp "🧑 Username [$USERNAME]: " input_user
read -rsp "🔐 App Password: " input_pass && echo
echo "$input_user:$input_pass" > "$TOKEN_FILE"
chmod 600 "$TOKEN_FILE"
info "✓ App password stored at $TOKEN_FILE"
fi fi
AUTH=$(<"$TOKEN_FILE") # ╭───────────────────────────────╮
AUTH_HEADER="Authorization: Basic $(echo -n "$AUTH" | base64)" # │ BITBUCKET API CALL │
# ╰───────────────────────────────╯
API_URL="https://api.bitbucket.org/2.0/repositories/$BB_USER/$REPO_NAME"
# ───────────────────────────────────────────── REPO_EXISTS=$(curl -s -u "$BB_USER:$BB_APP_PASS" "$API_URL" | jq -r .type || echo "none")
# ▓▓ INIT GIT REPO if [[ "$REPO_EXISTS" != "repository" ]]; then
# ───────────────────────────────────────────── info "Creating Bitbucket repository '$REPO_NAME' via API..."
if [ ! -d ".git" ]; then curl -s -X POST "$API_URL" \
info "Initializing Git repository..." -u "$BB_USER:$BB_APP_PASS" \
-H "Content-Type: application/json" \
-d "{\"scm\": \"git\", \"is_private\": false, \"project\": {\"key\": \"~$BB_USER\"}}" |
grep -q "\"type\": \"repository\"" || warn "⚠️ Repo may already exist or failed to create (HTTP 401)"
else
info "Bitbucket repository already exists."
fi
REMOTE_URL="git@bitbucket.org:$BB_USER/$REPO_NAME.git"
if ! git remote get-url "$REMOTE_NAME" &>/dev/null; then
git remote add "$REMOTE_NAME" "$REMOTE_URL"
info "Remote added: $REMOTE_NAME → $REMOTE_URL"
else
info "Remote already set: $REMOTE_NAME → $(git remote get-url "$REMOTE_NAME")"
fi
# ╭───────────────────────────────╮
# │ GIT INITIALIZATION │
# ╰───────────────────────────────╯
if [ ! -d .git ]; then
git init git init
git add . || warn "Nothing to add" git add . || warn "Nothing to add"
git commit -m "Initial commit" || warn "Nothing to commit" git commit -m "Initial commit" || warn "Nothing to commit"
else info "Git repository initialized and committed"
info "Git repository already exists."
fi fi
# Ensure HEAD exists if ! git rev-parse HEAD &>/dev/null; then
git rev-parse HEAD >/dev/null 2>&1 || { git add . && git commit -m "Initial commit"
git add . && git commit -m "Initial commit" || warn "Nothing to commit"
}
# ─────────────────────────────────────────────
# ▓▓ CREATE REMOTE REPO
# ─────────────────────────────────────────────
if ! git remote get-url "$GIT_REMOTE_NAME" &>/dev/null; then
info "Creating Bitbucket repository '$REPO_NAME' via API..."
CREATE_RESPONSE=$(curl -s -w "%{http_code}" -o /tmp/bb_create.json \
-X POST "$BITBUCKET_API/repositories/$USERNAME/$REPO_NAME" \
-H "$AUTH_HEADER" -H "Content-Type: application/json" \
-d "{\"scm\": \"git\", \"is_private\": false}")
HTTP_CODE="${CREATE_RESPONSE:(-3)}"
if [ "$HTTP_CODE" == "200" ] || [ "$HTTP_CODE" == "201" ]; then
info "✓ Bitbucket repo created."
else
warn "⚠️ Repo may already exist or failed to create (HTTP $HTTP_CODE)"
fi
git remote add "$GIT_REMOTE_NAME" "$BITBUCKET_SSH"
info "Remote added: $BITBUCKET_SSH"
else
info "Remote already set: $(git remote get-url "$GIT_REMOTE_NAME")"
fi fi
# ───────────────────────────────────────────── # ╭───────────────────────────────╮
# ▓▓ COMMIT & PUSH # │ COMMIT + PUSH LOGIC │
# ───────────────────────────────────────────── # ╰───────────────────────────────╯
if ! git diff --quiet || ! git diff --cached --quiet; then if ! git diff --quiet || ! git diff --cached --quiet; then
git add . && git commit -m "Update: $(date '+%Y-%m-%d %H:%M:%S')" || warn "Nothing to commit" git add .
git commit -m "Update: $(date '+%Y-%m-%d %H:%M:%S')" || warn "Nothing to commit"
else else
info "No uncommitted changes." info "No uncommitted changes."
fi fi
BRANCH=$(git symbolic-ref --short HEAD) BRANCH=$(git rev-parse --abbrev-ref HEAD)
if ! git config --get branch."$BRANCH".remote &>/dev/null; then if ! git config --get branch."$BRANCH".remote &>/dev/null; then
info "Setting upstream and pushing branch '$BRANCH'..." info "Pushing with upstream..."
git push -u "$GIT_REMOTE_NAME" "$BRANCH" || error "Push failed" git push -u "$REMOTE_NAME" "$BRANCH" || error "Push failed"
else else
info "Pushing to '$GIT_REMOTE_NAME/$BRANCH'..." info "Pushing to $REMOTE_NAME/$BRANCH..."
git push "$GIT_REMOTE_NAME" "$BRANCH" || error "Push failed" git push "$REMOTE_NAME" "$BRANCH" || error "Push failed"
fi fi
info "🎉 Bitbucket publish complete!" info "✓ Bitbucket push completed successfully."