delete-bsky-record.sh
@hrbrmstr.dev · 15d ago · plaintext · 90 loc · raw · 0 comments
1#!/usr/bin/env bash23# Exit on error4set -e56# Set up trap to ensure cleanup of temporary files7cleanup() {8 if [ -f "$AUTH_TEMP" ]; then rm "$AUTH_TEMP"; fi9 if [ -f "$DELETE_TEMP" ]; then rm "$DELETE_TEMP"; fi10}1112# Set trap for script exit, termination signals, and errors13trap cleanup EXIT INT TERM ERR1415# Create secure temporary files16AUTH_TEMP=$(mktemp) || { echo "Failed to create temporary file"; exit 1; }17DELETE_TEMP=$(mktemp) || { echo "Failed to create temporary file"; exit 1; }1819# Ensure temp files are only readable by the owner20chmod 600 "$AUTH_TEMP" "$DELETE_TEMP"2122# Configuration23HANDLE="${BLUESKY_IDENTIFIER}"24APP_PASSWORD="${BLUESKY_PASSWORD}"25COLLECTION="is.rud.bsky.bookshelf.book"2627# Get RECORD_KEY from command line parameter28if [ -z "$1" ]; then29 echo "Error: RECORD_KEY must be provided as a command-line parameter"30 echo "Usage: $0 <record_key>"31 exit 132fi3334RECORD_KEY="$1" # The rkey you want to delete3536# Check if credentials are provided37if [ -z "$HANDLE" ] || [ -z "$APP_PASSWORD" ]; then38 echo "Please provide your Bluesky handle and app password"39 exit 140fi4142# Create a temporary JSON file for authentication43cat > "$AUTH_TEMP" << EOF44{45 "identifier": "$HANDLE",46 "password": "$APP_PASSWORD"47}48EOF4950# Authenticate with Bluesky51echo "Authenticating with Bluesky..."52AUTH_RESPONSE=$(curl -s -X POST "https://bsky.social/xrpc/com.atproto.server.createSession" \53 -H "Content-Type: application/json" \54 -d @"$AUTH_TEMP")5556# Extract access token and DID57ACCESS_TOKEN=$(echo "$AUTH_RESPONSE" | jq -r .accessJwt)58DID=$(echo "$AUTH_RESPONSE" | jq -r .did)5960if [ -z "$ACCESS_TOKEN" ] || [ "$ACCESS_TOKEN" == "null" ]; then61 echo "Authentication failed. Please check your credentials."62 exit 163fi6465echo "Authentication successful! DID: $DID"6667# Create a JSON file for the delete request68cat > "$DELETE_TEMP" << EOF69{70 "repo": "$DID",71 "collection": "$COLLECTION",72 "rkey": "$RECORD_KEY"73}74EOF7576# Delete the record77echo "Deleting record $RECORD_KEY from collection $COLLECTION..."78DELETE_RESPONSE=$(curl -s -X POST "https://bsky.social/xrpc/com.atproto.repo.deleteRecord" \79 -H "Content-Type: application/json" \80 -H "Authorization: Bearer $ACCESS_TOKEN" \81 -d @"$DELETE_TEMP")8283# Check if the deletion was successful84if [ -z "$DELETE_RESPONSE" ]; then85 echo "Success! Record deleted."86else87 echo "Failed to delete record. Response: $DELETE_RESPONSE"88 exit 189fi90
login to post a comment