2013-09-21 03:20:19 +04:00
|
|
|
|
#!/usr/bin/env bash
|
2014-03-27 11:52:44 +04:00
|
|
|
|
# Copyright 2014 Vladimir Ivanov <ivvl82@gmail.com>
|
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2013-09-21 03:20:19 +04:00
|
|
|
|
|
2013-10-20 13:28:50 +04:00
|
|
|
|
REPO=fat0troll/lorchess
|
2014-03-27 11:52:44 +04:00
|
|
|
|
TOURNAMENT=2014/1-tabiyas
|
2013-09-21 03:20:19 +04:00
|
|
|
|
|
2014-04-20 14:13:14 +04:00
|
|
|
|
# Version information
|
|
|
|
|
VERSION="0.1"
|
|
|
|
|
|
|
|
|
|
argv0=${0##*/}
|
|
|
|
|
|
|
|
|
|
usage() {
|
|
|
|
|
cat <<EOF
|
|
|
|
|
List games on tours of tournament
|
|
|
|
|
|
|
|
|
|
Usage: $argv0 [options] [tours]
|
|
|
|
|
Tournament tours are restricted to sequence \`tours' given in
|
|
|
|
|
Bash-style syntax, i.e., \`tours' may include explicit numbers
|
|
|
|
|
(tours=1 3), intervals (tours={1..5}), or any combination of them.
|
|
|
|
|
If no tours are specified, display each tour until an empty
|
|
|
|
|
\`tour_info' is found. By default, only unaccomplished games are
|
|
|
|
|
listed.
|
|
|
|
|
|
|
|
|
|
Inner variable REPO points to the root of repository; REPO is a URL
|
|
|
|
|
link, absolute or relative path. Inner variable TOURNAMENT specifies
|
|
|
|
|
the sub-directory of tournament.
|
|
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
-a List accomplished games too
|
2014-04-20 20:08:12 +04:00
|
|
|
|
-p PLAYER Show game if PLAYER is a part of a player's name
|
2014-04-20 14:13:14 +04:00
|
|
|
|
-f FORMAT Specify the output format; FORMAT is \`term'
|
|
|
|
|
(default), \`html', or \`lor'
|
|
|
|
|
-l Add the URL link to game (if accomplished)
|
|
|
|
|
-h Show this help output
|
|
|
|
|
-v Show version information
|
|
|
|
|
EOF
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
version() {
|
|
|
|
|
echo "${argv0}-${VERSION}"
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-27 11:52:44 +04:00
|
|
|
|
show_tour_sequence() {
|
2014-04-20 20:08:12 +04:00
|
|
|
|
local sequence
|
2013-09-23 14:31:09 +04:00
|
|
|
|
|
2014-03-27 11:52:44 +04:00
|
|
|
|
# Generate the sequence of tours to search in
|
|
|
|
|
if [[ -z "$@" ]]; then
|
|
|
|
|
sequence=$(seq -f "%02g" 1 99)
|
|
|
|
|
else
|
|
|
|
|
# Change tour numbers: '1' -> '01', '2' -> '02', and so on
|
|
|
|
|
sequence=$(for i in "$@"; do printf "%02g " "$i"; done)
|
|
|
|
|
fi
|
2013-09-21 03:20:19 +04:00
|
|
|
|
|
2014-03-27 11:52:44 +04:00
|
|
|
|
for tour in $sequence; do
|
2014-04-20 20:08:12 +04:00
|
|
|
|
local info_url="${BASEURL}/tours/${tour}/tour_info"
|
|
|
|
|
|
|
|
|
|
# *NOTE* The incorporation of a newline at the end of
|
|
|
|
|
# 'tour_info' (--write-out '\n') is important and allows one
|
|
|
|
|
# to read the last line with no trailing '\n'
|
|
|
|
|
local tour_info="$(curl -q --fail --silent --write-out '\n' $info_url)"
|
|
|
|
|
|
2014-03-27 11:52:44 +04:00
|
|
|
|
# Produce output only if 'tour_info' exists
|
2014-04-20 20:08:12 +04:00
|
|
|
|
if [[ -n "$tour_info" ]]; then
|
|
|
|
|
local tour_num date_beg date_end
|
|
|
|
|
local white black result game_date game_url
|
|
|
|
|
# Lines with game info
|
|
|
|
|
local output_lines=""
|
|
|
|
|
|
|
|
|
|
while read line; do
|
|
|
|
|
get_tour_num "$line" && continue
|
|
|
|
|
get_tour_dates "$line" && continue
|
|
|
|
|
|
|
|
|
|
# Keep game info if needed, and store it in variables
|
|
|
|
|
# 'while', 'black', 'result', and 'game_date'
|
|
|
|
|
if keep_game_info "$line"; then
|
|
|
|
|
# Fix result
|
|
|
|
|
case "$result" in
|
|
|
|
|
1:0) result="1-0" ;;
|
|
|
|
|
0:1) result="0-1" ;;
|
|
|
|
|
0.5:0.5) result="1/2" ;;
|
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
|
# Store the link to game in 'game_url'
|
|
|
|
|
game_url=""
|
|
|
|
|
if $SHOW_LINK; then
|
|
|
|
|
[[ -n "$result" ]] && store_game_url
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
output_lines+="${white} ${black} ${result} ${game_url}\n"
|
2014-03-27 11:52:44 +04:00
|
|
|
|
fi
|
2014-04-20 20:08:12 +04:00
|
|
|
|
done <<< "$tour_info"
|
|
|
|
|
|
|
|
|
|
[[ -n "$output_lines" ]] && eval "info_output_$FORMAT \"${output_lines}\""
|
|
|
|
|
|
2014-03-27 11:52:44 +04:00
|
|
|
|
else
|
|
|
|
|
# If the tour numbers were not passed as arguments, exit
|
|
|
|
|
# once the first non-existing 'tour_info' is reached
|
|
|
|
|
[[ -z "$@" ]] && break
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
}
|
2013-09-21 03:20:19 +04:00
|
|
|
|
|
2014-04-20 20:08:12 +04:00
|
|
|
|
get_tour_num() {
|
|
|
|
|
if [[ "$1" =~ "Тур №"([0-9]+) ]]; then
|
|
|
|
|
tour_num="${BASH_REMATCH[1]}"
|
|
|
|
|
return 0
|
|
|
|
|
else
|
|
|
|
|
return 1
|
|
|
|
|
fi
|
|
|
|
|
}
|
2013-10-20 13:28:50 +04:00
|
|
|
|
|
2014-04-20 20:08:12 +04:00
|
|
|
|
get_tour_dates() {
|
|
|
|
|
local date_re="[0-9?]{2}\\.[0-9?]{2}\\.[0-9?]{4}"
|
2013-10-20 13:28:50 +04:00
|
|
|
|
|
2014-04-20 20:08:12 +04:00
|
|
|
|
if [[ "$1" =~ "Время проведения:"' '*($date_re)' '*[-—]' '*($date_re) ]]; then
|
|
|
|
|
date_beg="${BASH_REMATCH[1]}" date_end="${BASH_REMATCH[2]}"
|
|
|
|
|
# Use short dates
|
|
|
|
|
date_beg="${date_beg:0:5}" date_end="${date_end:0:5}"
|
|
|
|
|
return 0
|
|
|
|
|
else
|
|
|
|
|
return 1
|
|
|
|
|
fi
|
2013-10-20 13:28:50 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-04-20 20:08:12 +04:00
|
|
|
|
keep_game_info() {
|
|
|
|
|
local date_re="([0-9?]{2})\\.([0-9?]{2})\\.([0-9?]{4})"
|
|
|
|
|
local res_re="(0|1|0\\.5):(0|1|0\\.5)"
|
2014-03-27 11:52:44 +04:00
|
|
|
|
local line="$1" keep=1
|
2013-10-20 13:28:50 +04:00
|
|
|
|
|
2014-04-20 20:08:12 +04:00
|
|
|
|
if [[ "$line" =~ ($date_re)' '*[-—]' '*([^' ']+)' '*($res_re)?' '*([^' ']+) ]]; then
|
|
|
|
|
white="${BASH_REMATCH[5]}"
|
|
|
|
|
black="${BASH_REMATCH[9]}"
|
|
|
|
|
result="${BASH_REMATCH[6]}"
|
|
|
|
|
game_date="${BASH_REMATCH[4]}-${BASH_REMATCH[3]}-${BASH_REMATCH[2]}"
|
2014-03-27 11:52:44 +04:00
|
|
|
|
|
2014-04-20 20:08:12 +04:00
|
|
|
|
# If the player was passed as an argument, check if it is his game or not
|
|
|
|
|
if [[ -z "$PLAYER" || "$white" =~ "$PLAYER" || "$black" =~ "$PLAYER" ]]; then
|
|
|
|
|
if $SHOW_ALL; then
|
2014-03-27 11:52:44 +04:00
|
|
|
|
keep=0
|
2014-04-20 20:08:12 +04:00
|
|
|
|
else
|
|
|
|
|
# Keep line if the game is not finished
|
|
|
|
|
[[ -z "$result" ]] && keep=0
|
2014-03-27 11:52:44 +04:00
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
fi
|
2013-10-20 13:28:50 +04:00
|
|
|
|
|
2014-03-27 11:52:44 +04:00
|
|
|
|
return $keep
|
|
|
|
|
}
|
2013-10-20 13:28:50 +04:00
|
|
|
|
|
2014-03-27 22:54:45 +04:00
|
|
|
|
store_game_url() {
|
|
|
|
|
local tour=$(printf "%02g" "$tour_num")
|
|
|
|
|
local game_dir="${game_date}-${white}-vs-${black}"
|
2014-04-20 20:08:12 +04:00
|
|
|
|
local pgn_url="${BASEURL}/tours/${tour}/${game_dir}/1.pgn"
|
2014-03-27 22:54:45 +04:00
|
|
|
|
|
|
|
|
|
while read line; do
|
2014-04-20 20:08:12 +04:00
|
|
|
|
# Search for a URL inside PGN file
|
|
|
|
|
[[ "$line" =~ "[Site \""([a-z]+:[^\"]+)"\"]" ]]
|
|
|
|
|
game_url="${BASH_REMATCH[1]}"
|
|
|
|
|
[[ -n "$game_url" ]] && break
|
|
|
|
|
done <<< "$(curl -q --fail --silent $pgn_url)"
|
2014-03-27 22:54:45 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-03-27 11:52:44 +04:00
|
|
|
|
info_output_term() {
|
2014-03-27 15:26:01 +04:00
|
|
|
|
echo -n "$(tput setaf 2)${tour_num} тур "
|
2014-03-27 11:52:44 +04:00
|
|
|
|
echo "$(tput setaf 6)(${date_beg} - ${date_end})$(tput sgr0)"
|
2013-10-20 13:28:50 +04:00
|
|
|
|
|
2014-03-27 15:26:01 +04:00
|
|
|
|
echo -en "$1" | column -t | while IFS= read line; do
|
2014-03-27 11:52:44 +04:00
|
|
|
|
# Highlight player's name
|
|
|
|
|
if [[ -n "$PLAYER" ]]; then
|
|
|
|
|
players=$(grep -o "[^ ]*${PLAYER}[^ ]*" <<< "$line")
|
|
|
|
|
for name in $players; do
|
|
|
|
|
line=$(sed "s/${name}/\\$(tput setaf 1)\0\\$(tput sgr0)/g" <<< "$line")
|
|
|
|
|
done
|
|
|
|
|
fi
|
2013-10-20 13:28:50 +04:00
|
|
|
|
|
2014-03-27 11:52:44 +04:00
|
|
|
|
# Highlight result
|
2014-03-27 22:54:45 +04:00
|
|
|
|
line=$(sed "s/\(1-0\|0-1\|1\\/2\)/\\$(tput setaf 6)\0\\$(tput sgr0)/g" <<< "$line")
|
2013-10-20 13:28:50 +04:00
|
|
|
|
|
2014-03-27 11:52:44 +04:00
|
|
|
|
echo "$line"
|
|
|
|
|
done
|
2013-10-20 13:28:50 +04:00
|
|
|
|
|
2014-03-27 11:52:44 +04:00
|
|
|
|
echo
|
|
|
|
|
}
|
2013-10-20 13:28:50 +04:00
|
|
|
|
|
2014-03-27 15:26:01 +04:00
|
|
|
|
info_output_lor() {
|
2014-03-27 18:21:15 +04:00
|
|
|
|
echo "[b]${tour_num} тур (${date_beg} - ${date_end})[/b]"
|
2014-03-27 15:26:01 +04:00
|
|
|
|
echo "[list]"
|
|
|
|
|
|
2014-03-27 22:54:45 +04:00
|
|
|
|
echo -en "$1" | while read white black result url; do
|
|
|
|
|
[[ -n "$url" ]] && result="[url=${url}]${result}[/url]"
|
2014-03-27 18:21:15 +04:00
|
|
|
|
local line=" [*] [user]${white}[/user] - [user]${black}[/user] ${result}"
|
|
|
|
|
|
|
|
|
|
# Highlight player's name
|
|
|
|
|
if [[ -n "$PLAYER" ]]; then
|
|
|
|
|
players=$(grep -o "\\[user\\][^ ]*${PLAYER}[^ ]*\\[/user\\]" <<< "$line")
|
|
|
|
|
# Escape symbols ']', '[', and '/'
|
|
|
|
|
players=$(sed 's/[][\/]/\\\0/g' <<< "$players")
|
|
|
|
|
for name in $players; do
|
|
|
|
|
line=$(sed "s/${name}/[b]\0[\\/b]/g" <<< "$line")
|
|
|
|
|
done
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
echo "$line"
|
2014-03-27 15:26:01 +04:00
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
echo "[/list]"
|
|
|
|
|
echo
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-27 19:31:56 +04:00
|
|
|
|
info_output_html() {
|
|
|
|
|
echo "<div class=\"tour-info\">"
|
2014-03-27 23:52:49 +04:00
|
|
|
|
echo " <table class=\"table table-condensed\">"
|
2014-03-27 19:31:56 +04:00
|
|
|
|
echo " <caption>"
|
|
|
|
|
echo " <strong>${tour_num} тур (${date_beg} - ${date_end})</strong>"
|
|
|
|
|
echo " </caption>"
|
|
|
|
|
echo " <tbody>"
|
|
|
|
|
|
2014-03-27 22:54:45 +04:00
|
|
|
|
echo -en "$1" | while read white black result url; do
|
|
|
|
|
[[ -n "$url" ]] && result="<a href=\"${url}\">${result}</a>"
|
|
|
|
|
|
2014-03-27 19:31:56 +04:00
|
|
|
|
# Highlight player's name
|
|
|
|
|
if [[ -n "$PLAYER" ]]; then
|
|
|
|
|
[[ "$white" =~ $PLAYER ]] && white="<strong>${white}</strong>"
|
|
|
|
|
[[ "$black" =~ $PLAYER ]] && black="<strong>${black}</strong>"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
echo " <tr>"
|
2014-03-27 19:59:37 +04:00
|
|
|
|
echo " <td>${white} - ${black}</td><td class=\"result\">${result}</td>"
|
2014-03-27 19:31:56 +04:00
|
|
|
|
echo " </tr>"
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
echo " </tbody>"
|
|
|
|
|
echo " </table>"
|
|
|
|
|
echo "</div>"
|
|
|
|
|
echo
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-20 14:42:19 +04:00
|
|
|
|
checkargs() {
|
|
|
|
|
if [[ "$OPTARG" =~ ^-[apflhv]$ ]]; then
|
|
|
|
|
echo "Option -${opt}: argument not found"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
if [[ "$opt" == f && ! "$OPTARG" =~ ^(term|html|lor)$ ]]; then
|
|
|
|
|
echo "Incorrect FORMAT specified"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
}
|
2013-10-20 13:28:50 +04:00
|
|
|
|
|
2014-03-27 11:52:44 +04:00
|
|
|
|
SHOW_ALL=false
|
|
|
|
|
PLAYER=""
|
|
|
|
|
FORMAT=term
|
2014-03-27 22:54:45 +04:00
|
|
|
|
SHOW_LINK=false
|
|
|
|
|
BASEURL="https://raw.github.com/${REPO}/master/${TOURNAMENT}"
|
2014-03-27 11:52:44 +04:00
|
|
|
|
|
2014-04-20 14:42:19 +04:00
|
|
|
|
while getopts "ap:f:lhv" opt; do
|
|
|
|
|
case "$opt" in
|
|
|
|
|
a) SHOW_ALL=true
|
|
|
|
|
;;
|
|
|
|
|
p) checkargs
|
|
|
|
|
PLAYER="$OPTARG"
|
|
|
|
|
;;
|
|
|
|
|
f) checkargs
|
|
|
|
|
FORMAT="$OPTARG"
|
|
|
|
|
;;
|
|
|
|
|
l) SHOW_LINK=true
|
|
|
|
|
;;
|
|
|
|
|
h) usage && exit 0
|
|
|
|
|
;;
|
|
|
|
|
v) version && exit 0
|
|
|
|
|
;;
|
2014-03-27 11:52:44 +04:00
|
|
|
|
esac
|
2013-09-21 03:20:19 +04:00
|
|
|
|
done
|
2013-09-26 00:11:13 +04:00
|
|
|
|
|
2014-04-20 14:42:19 +04:00
|
|
|
|
shift $(($OPTIND - 1))
|
|
|
|
|
show_tour_sequence "$@"
|
|
|
|
|
|
2013-09-26 00:11:13 +04:00
|
|
|
|
exit 0
|