summaryrefslogtreecommitdiff
path: root/tmw-info
diff options
context:
space:
mode:
Diffstat (limited to 'tmw-info')
-rwxr-xr-xtmw-info142
1 files changed, 63 insertions, 79 deletions
diff --git a/tmw-info b/tmw-info
index 712ca93..04a0c4d 100755
--- a/tmw-info
+++ b/tmw-info
@@ -1,39 +1,38 @@
#!/bin/bash
-# TMW GM Log Downloader (original): https://gitlab.com/liviorecchia/tmw-gm-log-downloader
-# tmw-info: https://git.themanaworld.org/legacy/tmw-info/
-# The Mana World: https://themanaworld.org
-# Ledmitz (2020) - GPL 3.0
+#TMW GM Log Downloader (original): https://gitlab.com/liviorecchia/tmw-gm-log-downloader
+#tmw-info: https://git.themanaworld.org/legacy/tmw-info/
+#The Mana World: https://themanaworld.org
+#Ledmitz (2020) - GPL 3.0
-# Chat logs DIR
+#Chat logs DIR
CHAT_LOGS="$HOME/.local/share/mana/logs/server.themanaworld.org/"
months=(01 02 03 04 05 06 07 08 09 10 11 12)
thisYear=$(date -u +'%Y')
thisMonth=$(date -u +'%m')
-# Main DIR
+#Main DIR
TMW_INFO="$HOME/.tmw-info"
-# Items DB DIR
+#Items DB DIR
ITEM_DIR="$TMW_INFO/item"
-# Monster DB DIR
+#Monster DB DIR
MOB_DIR="$TMW_INFO/mob"
-# Commands DIR
+#Commands DIR
TMW_CMDS="$TMW_INFO/cmds"
-# GM Log DIR
+#GM Log DIR
TMW_GM_LOGS="$TMW_INFO/logs"
GM_LOG_LIST="$TMW_INFO/gm_log_list"
-# Current month's GM log
+#Current month's GM log
GM_LOG="$TMW_INFO/gm_log.tmp"
-# File to be read as report
+#File to be read as report
GM_REPORT="$TMW_INFO/gm_report.txt"
-# Runs on exit (deletes tmp files)
+#Runs on exit (deletes tmp files)
function FINISH
{
- rm -f "$TMW_INFO"/*.tmp
+ find "$TMW_INFO" -type f -name '*.tmp' -exec rm -f {} \;
}
trap FINISH EXIT
-
help(){
echo "tmw-info [command] [STRING]"
echo " help / --help / -h (this help screen)"
@@ -53,62 +52,57 @@ help(){
echo " mob-search TERM1 TERM2 TERM3 ... (monsters: results contain all of the terms)"
echo 'If you get and error while searching, it may contain special characters and needs to be quoted'
echo 'gm searches, item-search, mob-search and cmds require periodic updating with their respective update commands'
- echo 'To avoid hammering servers, there will be no update-all option. Use gm-update before performing gm searches. \
-Use gm-show to quickly display the last 10 gm commands run (updates automatically)'
+ echo 'To avoid hammering servers, there will be no update-all option. Use gm-update before performing gm searches.
+Use gm-show to quickly display the last 10 gm commands run. Updates automatically. Uses zenity to display GUI, if installed)'
}
-
if [ -z "$1" ]; then
echo "Missing command"
help
exit 0
fi
-# If no search term is given
-if [ "$1" == "gm-search" ] || [ "$1" == "gm-asearch" ] || [ "$1" == "gm-esearch" ] || [ "$1" == "item-search" ] || [ "$1" == "mob-search" ]; then
+if [ "$1" == "gm-search" ] || [ "$1" == "gm-asearch" ] || [ "$1" == "gm-esearch" ] || [ "$1" == "item-search" ] || [ "$1" == "mob-search" ] || [ "$1" == "chat-search" ]; then
if [ -z "$2" ]; then
echo "Missing search terms"
help
exit 0
fi
- # If either the "logs" DIR doesn't exist or there are no files in the DIR
fi
-
-# Create a DIR to save files in
+if [[ $(find '/usr/bin/' '/bin/' -type f -name 'curl') == '' ]]; then
+ echo "Warning: cURL missing. Curl needs to be installed for most functions to work"
+fi
+if [[ $(find '/usr/bin/' '/bin/' -type f -name 'wget') == '' ]]; then
+ echo "Warning: wget missing. wget needs to be installed for gm-update and cmds-update to work"
+fi
mkdir -p "$TMW_INFO"
-
if [ "$1" == "help" ] || [ "$1" == "--help" ] || [ "$1" == "-h" ]; then
help
elif [ "$1" == "news" ]; then
curl -s 'https://themanaworld.github.io/tmwa-server-data/news.html' | sed 's/<\/*[^>]*>//g' | less
elif [ "$1" == "online" ]; then
- #curl -s 'https://server.themanaworld.org/' | sed 's/<\/*[^>]*>//g' | sed -r '/^\s*$/d' | sed -r '/^\s*Name\s*$/d' | sed 1d
curl -s 'https://server.themanaworld.org/' | sed 's/<\/*[^>]*>//g' | sed -r '/^\s*$/d' | sed -r '/^\s*Name\s*$/d' | grep -v 'Online Players' | sed 1d | LC_ALL=C sort
elif [ "$1" == "gm-update" ]; then
mkdir -p "$TMW_GM_LOGS"
- # Get list of files from server to read the byte counts from
+ #Get list of files from server to read the byte counts from
wget -c -q -O "$GM_LOG_LIST.tmp" 'https://server.themanaworld.org/gm'
sed 's/<\/*[^>]*>//g' "$GM_LOG_LIST.tmp" > "$GM_LOG_LIST"
- # Download the very first one without updating it if already exists
- #This is the only gmlog without a byte count check. If it becomes corrupted, it must be deleted
+ #Download the very first one without updating it if already exists
+ #This is the only gmlog without a byte count check (none listed online). If it becomes corrupted, it must be deleted manually
wget -nc -q -P "$TMW_GM_LOGS" 'https://server.themanaworld.org/gm/gm.log.2008-12'
- for (( year = 2009; year <= thisYear; year++ ))
- do
- for month in ${months[*]}
- do
- # If the log is from this year and the month hasn't come yet, do nothing
+ for (( year = 2009; year <= thisYear; year++ )); do
+ for month in ${months[*]}; do
+ #If the log is from this year and the month hasn't come yet, do nothing
if [[ "$year" == "$thisYear" ]] && [[ "$month" > "$thisMonth" ]]; then
:
else
- # Get the bytecounts reported by server to compare with local file
+ #Get the bytecounts reported by server to compare with local file
BYTECOUNT_WEB=$(grep "gm.log.$year-$month " "$GM_LOG_LIST" | awk '{print $4}' | sed -E 's/\s//g')
BYTECOUNT_LOCAL=$(ls -l "$TMW_GM_LOGS/gm.log.$year-$month" 2> '/dev/null' | awk '{print $5}' | sed -E 's/\s//g')
- #echo $BYTECOUNT_WEB
- #echo $BYTECOUNT_LOCAL
if [[ "$BYTECOUNT_WEB" != "$BYTECOUNT_LOCAL" ]]; then
echo "Downloading $month/$year"
wget -q -c -P "$TMW_GM_LOGS" "https://server.themanaworld.org/gm/gm.log.$year-$month"
fi
- # Added for file rebuilt from corrupted (2020-09-old)
+ #Added for file rebuilt from corrupted (2020-09-old)
BYTECOUNT_WEB_OLD=$(grep "gm.log.$year-$month-old " "$GM_LOG_LIST" | awk '{print $4}' | sed -E 's/\s//g')
BYTECOUNT_LOCAL_OLD=$(ls -l "$TMW_GM_LOGS/gm.log.$year-$month-old" 2> '/dev/null' | awk '{print $5}' | sed -E 's/\s//g')
if [[ "$BYTECOUNT_WEB_OLD" != "$BYTECOUNT_LOCAL_OLD" ]]; then
@@ -116,20 +110,19 @@ elif [ "$1" == "gm-update" ]; then
wget -q -c -P "$TMW_GM_LOGS" "https://server.themanaworld.org/gm/gm.log.$year-$month-old"
fi
fi
- done
+ done
done
-# All searches cancel special grep characters, [ and ], which are read by grep, even in single quoted text
-# When echoing back, the \ are again removed to show what was originally typed by the user correctly
-# only [ and ] regex characters seemed to pose a problem
+#All searches cancel special grep characters [ and ], which are read by grep, even in single quoted text
+#When echoing back, the \ are again removed to show what was originally typed by the user correctly
+#Only [ and ] regex characters seemed to pose a problem
elif [ "$1" == "gm-search" ]; then
if [ ! -d "$TMW_GM_LOGS" ] || [ -z "$(ls "$TMW_GM_LOGS")" ]; then
echo 'You must run gm-update before searching'
exit 0
fi
- # Any terms: This must be an array because each term is searched separately in the for loop.
+ #Any terms: This must be an array because each term is searched separately in the for loop.
SEARCH_TERMS=($(echo "$*" | sed -E 's/^gm-search\s//g' | sed 's/\[/\\\[/g' | sed 's/\]/\\\]/g'))
- for WORD in "${SEARCH_TERMS[@]}"
- do
+ for WORD in "${SEARCH_TERMS[@]}"; do
echo "========== Results (any): $WORD ==========" | sed 's/\\//g'
grep -hi "$WORD" "$TMW_GM_LOGS"/*
done
@@ -138,13 +131,12 @@ elif [ "$1" == "gm-asearch" ]; then
echo 'You must run gm-update before searching'
exit 0
fi
- # All terms: This must not be an array
+ #All terms: This must not be an array
SEARCH_TERMS=$(echo "$*" | sed -E 's/^gm-asearch\s//g' | sed 's/\[/\\\[/g' | sed 's/\]/\\\]/g')
WORD_COUNT=$(echo "$SEARCH_TERMS" | wc -w)
COUNT='1'
echo "========== Results (all): $SEARCH_TERMS ==========" | sed 's/\\//g'
- while [ "$COUNT" -le "$WORD_COUNT" ]
- do
+ while [ "$COUNT" -le "$WORD_COUNT" ]; do
WORD=$(echo "$SEARCH_TERMS" | awk "{print \$$COUNT}")
if [ "$COUNT" = '1' ]; then
grep -hi "$WORD" "$TMW_GM_LOGS"/* > "$TMW_INFO/gm-asearch$COUNT.tmp"
@@ -160,57 +152,55 @@ elif [ "$1" == "gm-esearch" ]; then
echo 'You must run gm-update before searching'
exit 0
fi
- # Exact search: Must not be an array. Used once.
+ #Exact search: Must not be an array. Used once.
SEARCH_TERMS=$(echo "$*" | sed -E 's/^gm-esearch\s//g' | sed 's/\[/\\\[/g' | sed 's/\]/\\\]/g')
echo "========== Results (exact): $SEARCH_TERMS ==========" | sed 's/\\//g'
grep -hi "$SEARCH_TERMS" "$TMW_GM_LOGS"/*
elif [ "$1" == 'gm-show' ]; then
- ## This shows a GUI window with the last 10 GM commands. The amount of lines can be changed with "LINE_COUNT"
- # Root URL of the GM logs (no date)
+ ##This shows a GUI window with the last 10 GM commands. The amount of lines can be changed with "LINE_COUNT"
+ #Root URL of the GM logs (no date)
GM_LOG_URL='https://server.themanaworld.org/gm/gm.log.'
- # Date scheme used in URL
+ #Date scheme used in URL
LOG_DATE=$(date -u +%Y-%m)
- # The current day
+ #The current day
TODAY=$(date -u +%d)
- # Yesterday
+ #Yesterday
YESTERDAY=$(date -u --date yesterday +%d)
- # Last month
+ #Last month
LAST_MONTH=$(date -u --date 'last month' +%m)
- # Last year
+ #Last year
LAST_YEAR=$(date -u --date 'last year' +%Y)
- # Maximum number of new lines to report
+ #Maximum number of new lines to report
LINE_COUNT='10'
- # Download the GM log
+ #Download the GM log
curl -s "$GM_LOG_URL$LOG_DATE" > "$GM_LOG"
- # Check if no posts made this month yet
+ #Check if no posts made this month yet
if [[ $(grep '<head><title>404 Not Found</title></head>' "$GM_LOG") != '' ]]; then
LINE_COUNT_TODAY='0'
- # Check if no posts made today yet
+ #Check if no posts made today yet
elif [[ $(grep "$LOG_DATE-$TODAY" "$GM_LOG") == '' ]]; then
LINE_COUNT_TODAY='0'
else
- # Number of commands issued today
+ #Number of commands issued today
LINE_COUNT_TODAY=$(grep "$LOG_DATE-$TODAY" "$GM_LOG" | wc -l)
fi
- # If lines for today are at maximum, just get max lines
+ #If lines for today are at maximum, just get max lines
if [ "$LINE_COUNT_TODAY" -ge "$LINE_COUNT" ]; then
tail -n "$LINE_COUNT" "$GM_LOG" > "$GM_REPORT"
- # If line aren't maxed yet...
else
- # If today isn't the first of the month, just get the lines from the current month's log
+ #If today isn't the first of the month, just get the lines from the current month's log
if [[ "$TODAY" != '01' ]]; then
tail -n "$LINE_COUNT" "$GM_LOG" > "$GM_REPORT"
- # If it is the 1st of the month...
else
- # Number of lines to report from yesterday's commands (total - today = yesterday)
+ #Number of lines to report from yesterday's commands (total - today = yesterday)
LINE_COUNT_YESTERDAY=$(( "$LINE_COUNT" - "$LINE_COUNT_TODAY" ))
- # Make sure it isn't January, download last month's log and append lines to file
+ #Make sure it isn't January, download last month's log and append lines to file
if [[ $(date -u +%m) != '01' ]]; then
curl -s "$GM_LOG_URL$(date -u +%Y)-$LAST_MONTH" > "$GM_LOG"'_last_month'
grep "$(date -u +%Y)-$LAST_MONTH-$YESTERDAY" "$GM_LOG"'_last_month' | tail -n "$LINE_COUNT_YESTERDAY" > "$GM_REPORT"
grep "$LOG_DATE-$TODAY" "$GM_LOG" >> "$GM_REPORT"
- # If it is January, last month is also last year
+ #If it is January, last month is also last year
else
curl -s "$GM_LOG_URL$LAST_YEAR-12" > "$GM_LOG"'_last_month'
grep "$LAST_YEAR-12-31" "$GM_LOG"'_last_month' | tail -n "$LINE_COUNT_YESTERDAY" > "$GM_REPORT"
@@ -218,8 +208,8 @@ elif [ "$1" == 'gm-show' ]; then
fi
fi
fi
- if [[ $(dpkg -l 'zenity' | grep -Eo '^ii') == 'ii' ]]; then
- zenity --text-info 'tmw-gmlog' --width '600' --height '300' --filename "$GM_REPORT"
+ if [[ $(find '/usr/bin/' -type f -name 'zenity') == '/usr/bin/zenity' ]] || [[ $(find '/bin/' -type f -name 'zenity') == '/bin/zenity' ]]; then
+ zenity --text-info 'tmw-gmlog' --width '600' --height '300' --filename "$GM_REPORT" 2> '/dev/null'
else
cat < "$GM_REPORT"
fi
@@ -228,7 +218,7 @@ elif [ "$1" == "chat-search" ]; then
echo 'There are no chat logs to search'
exit 0
fi
- # All terms: This must not be an array
+ #All terms: This must not be an array
SEARCH_TERMS=$(echo "$*" | sed -E 's/^chat-search\s//g' | sed 's/\[/\\\[/g' | sed 's/\]/\\\]/g')
WORD_COUNT=$(echo "$SEARCH_TERMS" | wc -w)
COUNT='1'
@@ -266,7 +256,7 @@ elif [ "$1" == "item-search" ]; then
echo 'You must run item-update before searching'
exit 0
fi
- # All terms: This must not be an array
+ #All terms: This must not be an array
SEARCH_TERMS=$(echo "$*" | sed -E 's/^item-search\s//g' | sed 's/\[/\\\[/g' | sed 's/\]/\\\]/g')
WORD_COUNT=$(echo "$SEARCH_TERMS" | wc -w)
COUNT='1'
@@ -306,7 +296,7 @@ elif [ "$1" == "mob-search" ]; then
echo 'You must run mob-update before searching'
exit 0
fi
- # All terms: This must not be an array
+ #All terms: This must not be an array
SEARCH_TERMS=$(echo "$*" | sed -E 's/^mob-search\s//g' | sed 's/\[/\\\[/g' | sed 's/\]/\\\]/g')
WORD_COUNT=$(echo "$SEARCH_TERMS" | wc -w)
COUNT='1'
@@ -371,21 +361,15 @@ elif [ "$1" == 'cmds-update' ];then
grep -Eo '>/[a-z]+' "$TMW_CMDS/client_commands" | sed 's/^>//g' > "$TMW_CMDS/client"
grep -Eo '>/[a-z\,/]+' "$TMW_CMDS/client_commands" | sed 's/^>//g' >> "$TMW_CMDS/client"
grep -Eao '/[a-z]+ ' '/usr/games/manaplus' >> "$TMW_CMDS/client"
- echo -e '/ipctoggle\n/targetmonster\n/movetotarget\n/attack\n/targetattack\n/untarget\n/where\n/navigate X Y\n/sethome\n/movetohome\n/present\n/all\n/pickup\n/useitem ID\n/disablehighlight\n/enablehighlight\n/sit\n/direct\n/turn[up,down,left,right]' >> "$TMW_CMDS/client"
- #grep -Eo '>/[a-z\,/]+' "$TMW_CMDS/client_commands" | sed 's/^>//g' >> "$TMW_CMDS/client"
- #grep -Eao '/[a-z]+ ' '/usr/games/manaplus' >> "$TMW_CMDS/client"
+ echo -e '/ipctoggle\n/lastseen\n/targetmonster\n/movetotarget\n/attack\n/targetattack\n/untarget\n/where\n/navigate X Y\n/sethome\n/movetohome\n/present\n/all\n/pickup\n/useitem ID\n/disablehighlight\n/enablehighlight\n/sit\n/direct\n/turn[up,down,left,right]' >> "$TMW_CMDS/client"
cat < "$TMW_CMDS/client" | sed -E 's/\s*$//g' | sort -u > "$TMW_CMDS/client.tmp"
mv -f "$TMW_CMDS/client.tmp" "$TMW_CMDS/client"
- #rm "$TMW_CMDS/client_commands"
echo "Downloading and creating default at command list..."
wget -q -c -P "$TMW_CMDS" "https://github.com/themanaworld/tmwa-server-data/blob/master/world/map/conf/atcommand_athena.conf"
sed 's/<\/*[^>]*>//g' "$TMW_CMDS/atcommand_athena.conf" | grep -Eo '[A-Za-z0-9]+: [0-9]+' "$TMW_CMDS/atcommand_athena.conf" | sort -u > "$TMW_CMDS/default_at"
- #rm "$TMW_CMDS/atcommand_athena.conf"
echo "Downloading and creating custom at command list..."
wget -q -c -P "$TMW_CMDS" "https://github.com/themanaworld/tmwa-server-data/tree/master/world/map/npc/commands"
sed 's/<\/*[^>]*>//g' "$TMW_CMDS/commands" | grep -Eo '[A-Za-z0-9]+.txt' | sed 's/.txt$//g' | grep -v '^import$\|^procedures$' | sort -u > "$TMW_CMDS/custom_at"
- #rm "$TMW_CMDS/commands"
-
elif [ "$1" == 'cmds' ];then
if [ ! -f "$TMW_CMDS/client" ] || [ ! -f "$TMW_CMDS/default_at" ] || [ ! -f "$TMW_CMDS/custom_at" ]; then
echo 'You must run "cmds-update" first'