Compare commits

..

2 Commits

Author SHA1 Message Date
Kyle Yasuda
3117738f27
update highlighting and play first episode automatically (#20) 2022-10-13 22:07:24 -07:00
ksyasuda
64d70c34f2 update gogoanime url 2022-10-13 17:47:42 -07:00

11
ani-cli
View File

@ -216,7 +216,7 @@ search_anime() {
search="${1// /}"
fi
lg "Search Query: $search"
curl -s "https://gogoanime.lu//search.html?keyword=$search" -L |
curl -s "https://gogoanime.dk//search.html?keyword=$search" -L |
sed -nE 's_^[[:space:]]*<a href="/category/([^"]*)" title.*">$_\1_p'
}
@ -606,7 +606,9 @@ main() {
anime_name="${updated_episode%%/*}"
lg "ANIME NAME: $anime_name"
if ! check_db "search" "$anime_name"; then
stmt="SELECT COUNT(*) FROM search_history WHERE anime_name = '$anime_name';"
ep="${updated_episode##*/ep}"
[ "$ep" = "$anime_name" ] && ep=1
stmt="SELECT COUNT(*) FROM watch_history WHERE anime_name = '$anime_name' AND episode_number = '${ep:-1}';"
lg "QUERY: $stmt"
if [[ "$(run_stmt "$stmt")" -ne 0 ]]; then
lg "$updated_episode watched before... adding to watched list"
@ -623,8 +625,11 @@ main() {
fi
lg "SELECTION: $selection"
selection_id="${selection%%/*}"
anime_id="$selection_id"
episode_list "$selection_id"
get_episode
ep_choice_start="${selection##*/ep}"
lg "EP_CHOICE_START: $ep_choice_start"
[ "$ep_choice_start" = "$selection_id" ] && get_episode
;;
esac