Skip to content

Commit

Permalink
Experimental bash script
Browse files Browse the repository at this point in the history
  • Loading branch information
Loudbooks committed Jun 19, 2024
1 parent daa0ad0 commit 10ad62c
Showing 1 changed file with 143 additions and 0 deletions.
143 changes: 143 additions & 0 deletions scripts/logbook/logbook.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
#!/bin/bash

read -p "Enter your Discord username: " discord_username

while [ -z "$discord_username" ]; do
echo "Discord username cannot be blank. Please try again."
read -p "Enter your Discord username: " discord_username
done

echo
echo "Confirm your log type:"
echo "1) Latest Log"
echo "2) Launcher Log"
read -p "Enter your choice: " log_type

if [ "$log_type" == "1" ]; then
log_name="latest"
elif [ "$log_type" == "2" ]; then
log_name="launcher"
else
echo
echo "Invalid log type. Please try again."
exec "$0"
fi

echo
echo "Confirm your launcher:"
echo "1) Official Launcher"
echo "2) Prism Launcher"
echo "3) Modrinth Launcher"
echo "4) Technic Launcher"
read -p "Enter your choice: " launcher_type

case $launcher_type in
1)
if [ "$log_name" == "latest" ]; then
selected_directory="$HOME/Library/Application Support/minecraft/logs/latest.log"
log_name="Latest Log"
else
selected_directory="$HOME/Library/Application Support/minecraft/launcher_log.txt"
log_name="Launcher Log"
fi
;;
2)
index=1
prism_dirs=("$HOME/Library/Application Support/PrismLauncher/instances"/*/)
if [ ${#prism_dirs[@]} -eq 0 ]; then
echo
echo "No Prism installations found."
exit 1
fi

echo
echo "Your Prism installations:"
for dir in "${prism_dirs[@]}"; do
echo "$index) $(basename "$dir")"
((index++))
done

read -p "Enter the index of the installation you are using: " selected_index
selected_dir=${prism_dirs[$selected_index-1]}

if [ "$log_type" == "launcher" ]; then
selected_directory="$selected_dir.minecraft/logs/launcher_log.txt"
log_name="Prism Launcher Log ($(basename "$selected_dir"))"
else
selected_directory="$selected_dir.minecraft/logs/latest.log"
log_name="Prism Latest Log ($(basename "$selected_dir"))"
fi
;;
3)
index=1
modrinth_dirs=("$HOME/Library/Application Support/com.modrinth.theseus/profiles"/*/)

if [ ${#modrinth_dirs[@]} -eq 0 ]; then
echo
echo "No Modrinth installations found."
exit 1
fi

echo
echo "Your Modrinth installations:"
for dir in "${modrinth_dirs[@]}"; do
echo "$index) $(basename "$dir")"
((index++))
done

read -p "Enter the index of the installation you are using: " selected_index
selected_dir=${modrinth_dirs[$selected_index-1]}

if [ "$log_type" == "launcher" ]; then
selected_directory="$selected_dir/logs/launcher_log.txt"
log_name="Modrinth Launcher Log ($(basename "$selected_dir"))"
else
selected_directory="$selected_dir/logs/latest.log"
log_name="Modrinth Latest Log ($(basename "$selected_dir"))"
fi
;;
4)
index=1
technic_dirs=("$HOME/Library/Application Support/technic/modpacks"/*/)
if [ ${#technic_dirs[@]} -eq 0 ]; then
echo
echo "No Technic installations found."
exit 1
fi

echo
echo "Your Technic installations:"
for dir in "${technic_dirs[@]}"; do
echo "$index) $(basename "$dir")"
((index++))
done

read -p "Enter the index of the installation you are using: " selected_index
selected_dir=${technic_dirs[$selected_index-1]}

if [ "$log_type" == "launcher" ]; then
selected_directory="$selected_dir/logs/launcher_log.txt"
log_name="Technic Launcher Log \($(basename "$selected_dir")\)"
else
selected_directory="$selected_dir/logs/latest.log"
log_name="Technic Latest Log \($(basename "$selected_dir")\)"
fi
;;
*)
echo
echo "Invalid launcher type. Please try again."
exec "$0"
;;
esac

if [ ! -f "$selected_directory" ]; then
echo
echo "Log not found: $selected_directory"
exit 1
fi

echo
echo "Your paste link:"
curl -H "title: $discord_username's $log_name" -X POST --upload-file "$selected_directory" https://pastebook.dev/api/upload
echo
echo "Log uploaded successfully."

0 comments on commit 10ad62c

Please sign in to comment.