2021-11-01 00:23:51 -07:00
|
|
|
#!/usr/bin/env bash
|
2021-06-09 05:25:23 -07:00
|
|
|
|
2022-01-02 23:18:27 -08:00
|
|
|
CFG_DIR="${XDG_CONFIG_HOME:-$HOME/.config}/aniwrapper"
|
2022-01-04 11:38:13 -08:00
|
|
|
HISTORY_DB="$CFG_DIR/history.sqlite3"
|
2022-01-11 17:05:11 -08:00
|
|
|
ROFI_CFG="$CFG_DIR/themes/aniwrapper.rasi"
|
|
|
|
ROFI_THEME="aniwrapper.rasi"
|
|
|
|
THEMES="aniwrapper (default)|dracula|doomone|fancy|flamingo|material|nord|onedark"
|
2022-01-04 11:38:13 -08:00
|
|
|
ANIWRAPPER_ICON_PATH="$CFG_DIR/icons/icon-64.png"
|
2021-12-30 20:00:49 -08:00
|
|
|
MAISAN_ICON_PATH="$CFG_DIR/icons/MYsan.png"
|
2022-01-11 17:05:11 -08:00
|
|
|
DPI=96
|
2022-01-31 22:50:33 -08:00
|
|
|
IS_ROFI=1
|
2022-01-11 17:05:11 -08:00
|
|
|
VERBOSE=0
|
2022-01-29 01:01:37 -08:00
|
|
|
SILENT=0
|
2021-11-02 15:18:23 -07:00
|
|
|
|
2021-06-13 04:34:16 -07:00
|
|
|
player_fn="mpv"
|
2022-01-05 11:44:42 -08:00
|
|
|
playable="\.mp4|\.mkv|\.ts|\.mp3|\.webm"
|
2021-06-09 08:53:30 -07:00
|
|
|
c_red="\033[1;31m"
|
|
|
|
c_green="\033[1;32m"
|
|
|
|
c_yellow="\033[1;33m"
|
|
|
|
c_blue="\033[1;34m"
|
|
|
|
c_magenta="\033[1;35m"
|
|
|
|
c_cyan="\033[1;36m"
|
|
|
|
c_reset="\033[0m"
|
|
|
|
|
2021-10-29 22:49:52 -07:00
|
|
|
die() {
|
2022-01-29 01:01:37 -08:00
|
|
|
((SILENT != 1)) && printf "$c_red%s$c_reset\n" "$*" >&2
|
2021-06-09 05:25:23 -07:00
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2021-10-29 22:49:52 -07:00
|
|
|
err() {
|
2022-01-29 01:01:37 -08:00
|
|
|
((SILENT != 1)) && printf "$c_red%s$c_reset\n" "$*" >&2
|
2021-06-18 03:18:16 -07:00
|
|
|
}
|
|
|
|
|
2022-01-29 01:01:37 -08:00
|
|
|
# prints passed in args to stdout if $VERBOSE is set to 1
|
2022-01-15 19:32:06 -08:00
|
|
|
lg() {
|
2022-01-29 01:01:37 -08:00
|
|
|
((VERBOSE == 1)) && printf "%s\n" "$*" >&2
|
2021-11-18 15:52:37 -08:00
|
|
|
}
|
|
|
|
|
2021-12-30 11:08:50 -08:00
|
|
|
check_input() {
|
2022-01-02 11:19:31 -08:00
|
|
|
[ "$ep_choice_start" -eq "$ep_choice_start" ] 2> /dev/null || die "Invalid number entered: $ep_choice_start"
|
2021-12-30 11:08:50 -08:00
|
|
|
episodes=$ep_choice_start
|
|
|
|
if [ -n "$ep_choice_end" ]; then
|
2022-01-02 11:19:31 -08:00
|
|
|
[ "$ep_choice_end" -eq "$ep_choice_end" ] 2> /dev/null || die "Invalid number entered: $ep_choice_end"
|
2021-12-30 11:08:50 -08:00
|
|
|
episodes=$(seq $ep_choice_start $ep_choice_end)
|
|
|
|
fi
|
2021-10-07 03:21:38 -07:00
|
|
|
}
|
|
|
|
|
2022-02-03 22:18:51 -08:00
|
|
|
# get the download page url
|
2022-01-03 22:12:24 -08:00
|
|
|
get_dpage_link() {
|
2021-12-10 23:15:40 -08:00
|
|
|
anime_id=$1
|
|
|
|
ep_no=$2
|
2021-06-09 05:25:23 -07:00
|
|
|
|
2021-12-10 23:15:40 -08:00
|
|
|
# credits to fork: https://github.com/Dink4n/ani-cli for the fix
|
2022-01-28 12:19:24 -08:00
|
|
|
anime_page=$(curl -s "$BASE_URL/$anime_id-$ep_no")
|
2022-01-02 11:00:49 -08:00
|
|
|
|
2022-01-04 11:38:13 -08:00
|
|
|
if printf '%s' "$anime_page" | grep -q "404"; then
|
2022-01-28 12:19:24 -08:00
|
|
|
anime_page=$(curl -s "$BASE_URL/$anime_id-episode-$ep_no")
|
2022-01-02 11:00:49 -08:00
|
|
|
fi
|
2021-12-10 23:15:40 -08:00
|
|
|
|
2022-01-03 22:12:24 -08:00
|
|
|
printf '%s' "$anime_page" |
|
2022-01-14 12:05:49 -08:00
|
|
|
sed -n -E 's/^[[:space:]]*<a href="#" rel="100" data-video="([^"]*)".*/\1/p' |
|
|
|
|
sed 's/^/https:/g'
|
2021-12-30 11:08:50 -08:00
|
|
|
}
|
2021-12-10 23:15:40 -08:00
|
|
|
|
2022-01-14 12:05:49 -08:00
|
|
|
decrypt_link() {
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "BEGIN: decrypt_link()" > /dev/stderr
|
2022-01-14 12:05:49 -08:00
|
|
|
ajax_url="https://gogoplay.io/encrypt-ajax.php"
|
2022-01-03 22:12:24 -08:00
|
|
|
|
2022-01-14 12:05:49 -08:00
|
|
|
#get the id from the url
|
2022-01-28 12:19:24 -08:00
|
|
|
video_id=$(echo "$1" | cut -d\? -f2 | cut -d\& -f1 | sed 's/id=//g')
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "video_id -> $video_id" > /dev/stderr
|
2022-01-14 12:05:49 -08:00
|
|
|
|
|
|
|
#construct ajax parameters
|
|
|
|
secret_key='3235373436353338353932393338333936373634363632383739383333323838'
|
|
|
|
iv='34323036393133333738303038313335'
|
2022-01-28 12:19:24 -08:00
|
|
|
ajax=$(echo "$video_id" | openssl enc -aes256 -K "$secret_key" -iv "$iv" -a)
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "ajax -> $ajax" > /dev/stderr
|
2022-01-14 12:05:49 -08:00
|
|
|
|
|
|
|
#send the request to the ajax url
|
2022-01-28 12:19:24 -08:00
|
|
|
curl -s -H 'x-requested-with:XMLHttpRequest' "$ajax_url" -d "id=$ajax" -d "time=69420691337800813569" |
|
|
|
|
sed -e 's/\].*/\]/' -e 's/\\//g' |
|
|
|
|
grep -Eo 'https:\/\/[-a-zA-Z0-9@:%._\+~#=][a-zA-Z0-9][-a-zA-Z0-9@:%_\+.~#?&\/\/=]*'
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "END: decrypt_link()" > /dev/stderr
|
2022-01-14 12:05:49 -08:00
|
|
|
}
|
2022-01-05 10:54:19 -08:00
|
|
|
|
2022-01-14 12:05:49 -08:00
|
|
|
get_video_quality() {
|
|
|
|
dpage_url=$1
|
|
|
|
video_links=$(decrypt_link "$dpage_url")
|
|
|
|
case $quality in
|
|
|
|
best)
|
|
|
|
video_link=$(printf '%s' "$video_links" | head -n 4 | tail -n 1)
|
|
|
|
;;
|
2022-01-28 12:19:24 -08:00
|
|
|
|
2022-01-14 12:05:49 -08:00
|
|
|
worst)
|
|
|
|
video_link=$(printf '%s' "$video_links" | head -n 1)
|
|
|
|
;;
|
2022-01-28 12:19:24 -08:00
|
|
|
|
2022-01-14 12:05:49 -08:00
|
|
|
*)
|
2022-01-28 12:19:24 -08:00
|
|
|
video_link=$(printf '%s' "$video_links" | grep -i "${quality}" | head -n 1)
|
2022-01-14 12:05:49 -08:00
|
|
|
if [ -z "$video_link" ]; then
|
|
|
|
err "Current video quality is not available (defaulting to best quality)"
|
|
|
|
quality=best
|
|
|
|
video_link=$(printf '%s' "$video_links" | head -n 4 | tail -n 1)
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
2022-01-03 22:12:24 -08:00
|
|
|
printf '%s' "$video_link"
|
|
|
|
}
|
|
|
|
|
2021-10-29 22:49:52 -07:00
|
|
|
dep_ch() {
|
2021-06-11 06:18:20 -07:00
|
|
|
for dep; do
|
2022-01-02 09:53:16 -08:00
|
|
|
if ! command -v "$dep" > /dev/null; then
|
2021-06-11 06:18:20 -07:00
|
|
|
die "Program \"$dep\" not found. Please install it."
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2022-01-08 14:55:17 -08:00
|
|
|
notification() {
|
2022-02-01 11:42:34 -08:00
|
|
|
((SILENT == 1)) && return 0
|
2022-01-08 14:55:17 -08:00
|
|
|
msg="$*"
|
|
|
|
if command -v "notify-send" > /dev/null; then
|
|
|
|
notify-send -i "$ANIWRAPPER_ICON_PATH" "$msg"
|
|
|
|
else
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "$msg"
|
2022-01-08 14:55:17 -08:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2022-01-14 12:05:49 -08:00
|
|
|
generate_span() {
|
|
|
|
msg="$*"
|
|
|
|
span="<span foreground='#ecbe7b' style='italic' size='small'>$msg</span>"
|
|
|
|
printf "%s\n" "$span"
|
|
|
|
}
|
|
|
|
|
2021-11-11 14:13:11 -08:00
|
|
|
#####################
|
|
|
|
## Database Code ##
|
|
|
|
#####################
|
|
|
|
|
2022-01-14 12:05:49 -08:00
|
|
|
run_stmt() {
|
|
|
|
printf "%s\n" "$1" | sqlite3 -noheader "$HISTORY_DB"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Return number of matches for anime/episode in db
|
2021-10-29 22:49:52 -07:00
|
|
|
check_db() {
|
2022-02-03 21:59:50 -08:00
|
|
|
case "$1" in
|
|
|
|
directory)
|
|
|
|
stmt="SELECT DISTINCT COUNT(*) FROM file_history WHERE directory = '$2';"
|
|
|
|
;;
|
|
|
|
file)
|
|
|
|
stmt="SELECT DISTINCT COUNT(*) FROM file_history WHERE directory = '$2' AND filename = '$3';"
|
|
|
|
;;
|
|
|
|
search)
|
|
|
|
stmt="SELECT DISTINCT COUNT(*) FROM search_history WHERE anime_name = '$2';"
|
|
|
|
;;
|
|
|
|
watch | sync)
|
|
|
|
stmt="SELECT DISTINCT COUNT(*) FROM watch_history WHERE anime_name = '$2' AND episode_number = '$3';"
|
|
|
|
;;
|
|
|
|
esac
|
2022-01-04 23:06:12 -08:00
|
|
|
res=$(run_stmt "$stmt")
|
2022-02-03 21:59:50 -08:00
|
|
|
return "$res"
|
2021-10-29 22:49:52 -07:00
|
|
|
}
|
|
|
|
|
2022-01-07 10:50:52 -08:00
|
|
|
# return true (0) if $source_dt > $target_dt
|
|
|
|
check_date() {
|
|
|
|
source_dt="$1"
|
|
|
|
target_dt="$2"
|
2022-01-07 12:10:20 -08:00
|
|
|
if [[ "$source_dt" < "$target_dt" ]] || [[ "$source_dt" == "$target_dt" ]]; then
|
2022-01-07 10:50:52 -08:00
|
|
|
return 1
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2021-11-25 10:52:59 -08:00
|
|
|
# updates search/watch date for passed in anime
|
2021-10-29 22:49:52 -07:00
|
|
|
update_date() {
|
2021-11-01 12:53:10 -07:00
|
|
|
datetime=$(date +'%Y-%m-%d %H:%M:%S')
|
2021-11-01 17:05:43 -07:00
|
|
|
stmt=""
|
2022-02-03 21:59:50 -08:00
|
|
|
case "$1" in
|
|
|
|
directory)
|
2022-02-03 22:18:51 -08:00
|
|
|
lg "UPDATING FILE_HISTORY for with directory: directory='$2', filename='DIRECTORY', search_date='$datetime'"
|
2022-02-03 21:59:50 -08:00
|
|
|
stmt="UPDATE file_history SET watch_date = '$datetime' WHERE directory = '$2' and filename = '$3';"
|
|
|
|
;;
|
|
|
|
file)
|
|
|
|
lg "UPDATING FILE_HISTORY: directory='$2', filename='$3', watch_date='$datetime'"
|
|
|
|
stmt="UPDATE file_history SET watch_date = '$datetime' WHERE directory = '$2' and filename = '$3';"
|
|
|
|
;;
|
|
|
|
search)
|
|
|
|
lg "UPDATING SEARCH_HISTORY: anime_name='$2', search_date='$datetime'"
|
|
|
|
stmt="UPDATE search_history SET search_date = '$datetime' WHERE anime_name = '$2';"
|
|
|
|
;;
|
|
|
|
sync)
|
|
|
|
temp_dt="${3// /:}"
|
|
|
|
[ -z "$temp_dt" ] && return 1
|
|
|
|
hist_dt=$(run_stmt "SELECT watch_date FROM watch_history WHERE anime_name='$2' AND episode_number='$3';")
|
|
|
|
hist_dt="${hist_dt// /:}"
|
|
|
|
lg "Checking if update is needed..."
|
|
|
|
if ! check_date "$hist_dt" "$temp_dt"; then
|
|
|
|
lg "Passed in date is older or same than current date... doing nothing"
|
|
|
|
return 1
|
|
|
|
fi
|
2022-02-03 22:18:51 -08:00
|
|
|
lg "UPDATING WATCH_HISTORY from sync. watch_date -> $temp_dt"
|
2022-02-03 21:59:50 -08:00
|
|
|
stmt="UPDATE watch_history SET watch_date = '$temp_dt' WHERE anime_name = '$2' AND episode_number = $3;"
|
|
|
|
;;
|
|
|
|
watch)
|
|
|
|
lg "UPDATING WATCH_HISTORY: anime_name='$2', episode_number='$3' watch_date='$datetime'"
|
|
|
|
stmt="UPDATE watch_history SET watch_date = '$datetime' WHERE anime_name = '$2' AND episode_number = $3;"
|
|
|
|
;;
|
|
|
|
esac
|
2022-01-11 22:01:05 -08:00
|
|
|
wait # in case there's another insert/update still running in background?
|
2021-11-01 17:05:43 -07:00
|
|
|
run_stmt "$stmt"
|
2021-10-29 22:49:52 -07:00
|
|
|
}
|
|
|
|
|
2022-01-14 12:05:49 -08:00
|
|
|
# inserts into search/watch history db
|
|
|
|
# check the anime_name/id
|
2021-10-29 22:49:52 -07:00
|
|
|
insert_history() {
|
2021-11-01 12:53:10 -07:00
|
|
|
datetime=$(date +'%Y-%m-%d %H:%M:%S')
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "Checking if ($*) exists in db"
|
2021-10-29 22:49:52 -07:00
|
|
|
check_db "$@"
|
2021-11-25 10:52:59 -08:00
|
|
|
res="$?"
|
2022-01-04 23:06:12 -08:00
|
|
|
if [[ $res -gt 0 ]]; then
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "Match found... Updating row in history db..."
|
2021-10-29 22:49:52 -07:00
|
|
|
update_date "$@"
|
2022-01-07 10:50:52 -08:00
|
|
|
res=$?
|
2021-10-29 22:49:52 -07:00
|
|
|
else
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "Row not found in DB... inserting"
|
2022-02-03 15:18:04 -08:00
|
|
|
case "$1" in
|
|
|
|
directory)
|
|
|
|
stmt="INSERT INTO file_history(directory, filename, watch_date) VALUES('$2', 'DIRECTORY', '$datetime');"
|
|
|
|
;;
|
|
|
|
file)
|
|
|
|
stmt="INSERT INTO file_history(directory, filename, watch_date) VALUES('$2', '$3', '$datetime');"
|
|
|
|
;;
|
|
|
|
search)
|
|
|
|
stmt="INSERT INTO search_history(anime_name, search_date) VALUES('$2', '$datetime');"
|
|
|
|
;;
|
|
|
|
watch)
|
|
|
|
stmt="INSERT INTO watch_history(anime_name, episode_number, watch_date) VALUES('$2', '$3', '$datetime');"
|
|
|
|
;;
|
|
|
|
sync)
|
|
|
|
stmt="INSERT INTO watch_history(anime_name, episode_number, watch_date) VALUES('$2', '$3', '$4');"
|
|
|
|
;;
|
|
|
|
esac
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "INSERT STATEMENT -> $stmt"
|
2022-01-09 12:34:21 -08:00
|
|
|
wait # in case there's another insert/update still running in background
|
2022-01-04 23:06:12 -08:00
|
|
|
run_stmt "$stmt"
|
2022-01-07 10:50:52 -08:00
|
|
|
res=$?
|
2021-10-29 22:49:52 -07:00
|
|
|
fi
|
2022-01-07 10:50:52 -08:00
|
|
|
return $res
|
2021-10-29 22:49:52 -07:00
|
|
|
}
|
|
|
|
|
2021-11-11 14:13:11 -08:00
|
|
|
sync_search_history() {
|
|
|
|
cnt=0
|
2022-01-07 10:50:52 -08:00
|
|
|
errs=0
|
2021-11-11 14:13:11 -08:00
|
|
|
while read -r line; do
|
2022-01-02 09:53:16 -08:00
|
|
|
anime_name=$(awk -F '|' '{print $2}' <<< "$line")
|
2022-02-05 16:46:12 -08:00
|
|
|
if sqlite3 -noheader "$HISTORY_DB" "SELECT COUNT(*) FROM search_history WHERE anime_name = '$anime_name'"; then
|
2022-01-02 09:53:16 -08:00
|
|
|
search_date=$(awk -F '|' '{print $3}' <<< "$line")
|
2022-01-01 16:54:32 -08:00
|
|
|
if ! sqlite3 "$HISTORY_DB" "INSERT INTO search_history(anime_name, search_date) VALUES('$anime_name', '$search_date')"; then
|
2022-01-07 10:50:52 -08:00
|
|
|
((++errs))
|
|
|
|
continue
|
2021-11-11 14:13:11 -08:00
|
|
|
fi
|
|
|
|
((++cnt))
|
|
|
|
fi
|
2022-01-11 22:01:05 -08:00
|
|
|
done < <(sqlite3 -list -noheader "$temp_db" "SELECT DISTINCT * FROM search_history")
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "$cnt rows inserted into search_history table"
|
|
|
|
lg "$errs errors on insert"
|
2021-11-11 14:13:11 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
sync_watch_history() {
|
|
|
|
cnt=0
|
2022-01-07 10:50:52 -08:00
|
|
|
errs=0
|
2021-11-11 14:13:11 -08:00
|
|
|
while read -r line; do
|
2021-11-18 15:52:37 -08:00
|
|
|
anime_name="${line/ //}"
|
|
|
|
while read -r ep; do
|
2022-01-02 09:53:16 -08:00
|
|
|
episode_num=$(awk -F '|' '{print $1}' <<< "$ep")
|
2022-01-07 10:50:52 -08:00
|
|
|
watch_date=$(awk -F '|' '{print $NF}' <<< "$ep")
|
2022-02-03 15:18:04 -08:00
|
|
|
if ! insert_history "sync" "$anime_name" "$episode_num" "$watch_date"; then
|
2022-01-07 10:50:52 -08:00
|
|
|
((++errs))
|
|
|
|
continue
|
2021-11-11 14:13:11 -08:00
|
|
|
fi
|
2022-01-07 10:50:52 -08:00
|
|
|
((++cnt))
|
2022-01-11 23:41:47 -08:00
|
|
|
done < <(sqlite3 -list -noheader "$temp_db" "SELECT episode_number, watch_date FROM watch_history WHERE anime_name = '$anime_name'")
|
2022-01-11 22:01:05 -08:00
|
|
|
done < <(sqlite3 -list -noheader "$temp_db" "SELECT DISTINCT anime_name FROM watch_history")
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "$cnt rows inserted into watch_history table"
|
|
|
|
lg "$errs rows skipped on insert"
|
2021-11-11 14:13:11 -08:00
|
|
|
}
|
|
|
|
|
2022-01-04 18:07:41 -08:00
|
|
|
#####################
|
|
|
|
### Play from file###
|
|
|
|
#####################
|
2022-01-05 10:54:19 -08:00
|
|
|
|
2022-02-05 16:46:12 -08:00
|
|
|
# opens the passed in file with $player_fn
|
2022-01-04 18:07:41 -08:00
|
|
|
play_file() {
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "Checking if file is playable"
|
2022-01-04 18:07:41 -08:00
|
|
|
if [[ "$1" =~ ($playable)$ ]]; then
|
2022-01-11 11:53:21 -08:00
|
|
|
filename="${1##*/}"
|
|
|
|
directory="${1%/*}"
|
2022-01-06 13:57:11 -08:00
|
|
|
insert_history "file" "$directory" "$filename" &
|
2022-01-04 18:07:41 -08:00
|
|
|
if [[ "$1" =~ .mp3 ]]; then
|
2022-01-08 14:55:17 -08:00
|
|
|
notification "Playing $1"
|
2022-02-05 16:46:12 -08:00
|
|
|
case "$player_fn" in
|
|
|
|
mpv)
|
|
|
|
nohup "$player_fn" --no-video "$1" > /dev/null 2>&1
|
|
|
|
;;
|
|
|
|
mplayer)
|
|
|
|
nohup "$player_fn" -novideo "$1" > /dev/null 2>&1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
nohup "$player_fn" "$1" > /dev/null 2>&1
|
|
|
|
;;
|
|
|
|
esac
|
2022-01-04 18:07:41 -08:00
|
|
|
else
|
2022-01-08 14:55:17 -08:00
|
|
|
notification "Playing $1"
|
2022-02-05 16:46:12 -08:00
|
|
|
nohup "$player_fn" "$1" > /dev/null 2>&1 &
|
2022-01-04 18:07:41 -08:00
|
|
|
fi
|
2022-01-08 14:55:17 -08:00
|
|
|
return $?
|
2022-01-04 18:07:41 -08:00
|
|
|
else
|
|
|
|
die "File: $1 is not playable... Quitting"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2022-01-09 02:33:29 -08:00
|
|
|
get_directory_data() {
|
2022-01-06 13:42:54 -08:00
|
|
|
search_dir="$1"
|
2022-01-09 02:33:29 -08:00
|
|
|
inputlist=""
|
2022-01-06 13:42:54 -08:00
|
|
|
watched=""
|
2022-01-09 02:33:29 -08:00
|
|
|
cnt=1
|
2022-01-11 11:53:21 -08:00
|
|
|
[ "$search_dir" = "/" ] && cnt=0 # account for no ../ on /
|
|
|
|
for directory in "$1"/*; do
|
|
|
|
directory="${directory##*/}"
|
2022-01-31 03:18:08 -08:00
|
|
|
[ ! -d "$search_dir/$directory" ] && continue
|
2022-01-11 11:53:21 -08:00
|
|
|
[ -z "$inputlist" ] && inputlist="$directory" || inputlist="$inputlist|$directory"
|
2022-01-06 16:03:31 -08:00
|
|
|
if ! check_db "directory" "$search_dir/$directory"; then
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "$search_dir/$directory opened before... adding $cnt to list" 1> /dev/stderr
|
2022-01-11 11:53:21 -08:00
|
|
|
[ -z "$watched" ] && watched="$cnt" || watched="$watched, $cnt"
|
2022-01-06 16:03:31 -08:00
|
|
|
fi
|
|
|
|
((++cnt))
|
2022-01-11 11:53:21 -08:00
|
|
|
done
|
|
|
|
shopt -s nullglob # set nullglob to avoid printing output if no files with extension exist
|
|
|
|
shopt -s nocaseglob # case insensitive globbing
|
2022-01-31 03:18:08 -08:00
|
|
|
for filename in "$search_dir"/*.{mp4,mkv,ts,mp3,webm}; do
|
|
|
|
filename="${filename##*/}"
|
2022-01-11 11:53:21 -08:00
|
|
|
[ -z "$inputlist" ] && inputlist="$filename" || inputlist="$inputlist|$filename"
|
2022-01-06 13:57:11 -08:00
|
|
|
if ! check_db "file" "$search_dir" "$filename"; then
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "$filename watched before... adding $cnt to list" 1> /dev/stderr
|
2022-01-11 11:53:21 -08:00
|
|
|
[ -z "$watched" ] && watched="$cnt" || watched="$watched, $cnt"
|
2022-01-06 13:42:54 -08:00
|
|
|
fi
|
|
|
|
((++cnt))
|
2022-01-11 11:53:21 -08:00
|
|
|
done
|
|
|
|
shopt -u nullglob
|
|
|
|
shopt -u nocaseglob
|
2022-01-11 23:41:47 -08:00
|
|
|
if [[ -n "$inputlist" && "$search_dir" != / ]]; then
|
|
|
|
inputlist="../|$inputlist|Back|Quit"
|
|
|
|
elif [[ -z "$inputlist" && "$search_dir" != / ]]; then
|
|
|
|
inputlist="../|Back|Quit"
|
|
|
|
elif [[ "$search_dir" = / ]]; then
|
2022-02-01 11:36:10 -08:00
|
|
|
inputlist="$inputlist|Quit"
|
2022-01-31 03:18:08 -08:00
|
|
|
else
|
|
|
|
inputlist="Quit"
|
2022-01-11 23:41:47 -08:00
|
|
|
fi
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "INPUT LIST: $inputlist" 1> /dev/stderr
|
|
|
|
lg "WATCHED LIST: $watched" 1> /dev/stderr
|
2022-01-06 13:42:54 -08:00
|
|
|
}
|
|
|
|
|
2022-01-04 18:07:41 -08:00
|
|
|
# recursive function for finding path to video file given a starting directory
|
|
|
|
find_media() {
|
|
|
|
inp="$1"
|
2022-01-08 14:55:17 -08:00
|
|
|
[ -z "$inp" ] && die "No directory"
|
2022-02-03 22:18:51 -08:00
|
|
|
lg "BEGIN find_media() on $inp" 1> /dev/stderr
|
2022-01-04 18:07:41 -08:00
|
|
|
|
|
|
|
# base case hit when a file is found
|
|
|
|
if [ -f "$inp" ]; then
|
|
|
|
printf "%s\n" "$inp"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
2022-01-09 02:33:29 -08:00
|
|
|
get_directory_data "$inp"
|
2022-01-11 23:41:47 -08:00
|
|
|
selection="$(rofi -dpi "$DPI" -dmenu -only-match -async-pre-read 33 -config "$ROFI_CFG" \
|
2022-01-09 03:22:22 -08:00
|
|
|
-l 15 -i -sep '|' -mesg "$(generate_span "Current directory: $inp")" -a "$watched" \
|
2022-01-11 23:41:47 -08:00
|
|
|
-p "Enter selection" <<< "$inputlist")"
|
2022-01-22 11:13:41 -08:00
|
|
|
lg "SELECTION: $selection" 1> /dev/stderr
|
2022-01-08 14:55:17 -08:00
|
|
|
case "$selection" in
|
2022-01-09 02:33:29 -08:00
|
|
|
Back | ../)
|
2022-01-11 11:53:21 -08:00
|
|
|
dotdotslash="${inp%/*}"
|
2022-01-11 22:01:05 -08:00
|
|
|
if [ -z "$dotdotslash" ]; then
|
2022-01-21 00:27:39 -08:00
|
|
|
insert_history "directory" "/"
|
2022-01-22 11:13:41 -08:00
|
|
|
find_media "/"
|
2022-01-11 22:01:05 -08:00
|
|
|
else
|
2022-01-21 00:27:39 -08:00
|
|
|
insert_history "directory" "$dotdotslash"
|
2022-01-22 11:13:41 -08:00
|
|
|
find_media "$dotdotslash"
|
2022-01-11 22:01:05 -08:00
|
|
|
fi
|
2022-01-08 14:55:17 -08:00
|
|
|
;;
|
|
|
|
Quit)
|
|
|
|
return 1
|
|
|
|
;;
|
|
|
|
*)
|
2022-01-22 11:13:41 -08:00
|
|
|
if [ -d "$inp/$selection" ]; then
|
2022-01-21 00:27:39 -08:00
|
|
|
insert_history "directory" "$inp/$selection"
|
2022-01-08 14:55:17 -08:00
|
|
|
if [ "$inp" = "/" ]; then
|
2022-01-11 11:53:21 -08:00
|
|
|
find_media "/$selection"
|
2022-01-08 14:55:17 -08:00
|
|
|
else
|
|
|
|
find_media "$inp/$selection"
|
|
|
|
fi
|
2022-01-22 11:13:41 -08:00
|
|
|
else
|
|
|
|
find_media "$inp/$selection"
|
2022-01-08 14:55:17 -08:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
2022-01-04 18:07:41 -08:00
|
|
|
}
|
|
|
|
|
2022-01-14 12:05:49 -08:00
|
|
|
#####################
|
|
|
|
## main code ##
|
|
|
|
#####################
|
|
|
|
|
2021-10-29 22:49:52 -07:00
|
|
|
get_search_query() {
|
2022-02-04 17:58:08 -08:00
|
|
|
if [ $# -gt 0 ]; then
|
|
|
|
query="${*// /-}"
|
|
|
|
elif [ "$IS_ROFI" -eq 1 ]; then
|
|
|
|
stmt="SELECT DISTINCT id || '. ' || anime_name FROM search_history ORDER BY search_date DESC;"
|
|
|
|
msg="Choose from list of searched anime below, or enter a unique name of an anime to search for"
|
2022-01-11 17:05:11 -08:00
|
|
|
query=$(rofi -dpi "$DPI" -dmenu -l 15 -p "Search Anime:" \
|
2022-01-23 16:49:36 -08:00
|
|
|
-mesg "$(generate_span "$msg")" \
|
2022-01-11 23:41:47 -08:00
|
|
|
-config "$ROFI_CFG" < <(run_stmt "$stmt"))
|
2021-11-13 01:39:54 -08:00
|
|
|
query="${query//[1-9]*\. /}"
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "Query: $query"
|
2022-01-31 22:50:33 -08:00
|
|
|
elif [ "$IS_ROFI" -eq 0 ]; then
|
2021-12-30 21:20:40 -08:00
|
|
|
printf "Search Anime: "
|
|
|
|
read -r query
|
2021-06-18 03:18:16 -07:00
|
|
|
fi
|
|
|
|
}
|
2021-06-14 02:22:02 -07:00
|
|
|
|
2022-02-03 22:18:51 -08:00
|
|
|
# get anime name along with its id
|
2022-01-14 12:05:49 -08:00
|
|
|
search_anime() {
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "NUM ARGS: $#"
|
2022-01-14 12:05:49 -08:00
|
|
|
if [[ $# -gt 1 ]]; then
|
|
|
|
# if multi-word query, concatenate into one string and replace spaces with '-'
|
|
|
|
search="$*"
|
|
|
|
search="${search// /-}"
|
|
|
|
else
|
|
|
|
# if one word, remove leading or trailing whitespace
|
|
|
|
search="${1// /}"
|
|
|
|
fi
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "Search Query: $search"
|
2022-01-14 12:05:49 -08:00
|
|
|
curl -s "$BASE_URL//search.html" \
|
|
|
|
-G \
|
|
|
|
-d "keyword=$search" |
|
|
|
|
sed -n -E '
|
|
|
|
s_^[[:space:]]*<a href="/category/([^"]*)" title="([^"]*)".*_\1_p
|
|
|
|
'
|
2022-01-04 18:07:41 -08:00
|
|
|
}
|
|
|
|
|
2022-01-14 12:05:49 -08:00
|
|
|
search_eps() {
|
|
|
|
anime_id=$1
|
|
|
|
curl -s "$BASE_URL/category/$anime_id" |
|
|
|
|
sed -n -E '
|
|
|
|
/^[[:space:]]*<a href="#" class="active" ep_start/{
|
|
|
|
s/.* '\''([0-9]*)'\'' ep_end = '\''([0-9]*)'\''.*/\2/p
|
|
|
|
q
|
|
|
|
}
|
|
|
|
'
|
|
|
|
}
|
2021-06-09 05:25:23 -07:00
|
|
|
|
2022-02-03 22:18:51 -08:00
|
|
|
# Select anime from query results
|
2021-10-29 22:49:52 -07:00
|
|
|
anime_selection() {
|
2021-06-18 03:18:16 -07:00
|
|
|
search_results=$*
|
2022-01-31 22:50:33 -08:00
|
|
|
if [ "$IS_ROFI" -eq 1 ]; then
|
2021-12-30 21:20:40 -08:00
|
|
|
menu=()
|
|
|
|
res=()
|
2022-02-03 00:34:50 -08:00
|
|
|
searched=""
|
|
|
|
cnt=0
|
|
|
|
# generate inputlist for rofi and indexes of previously searched anime
|
2021-12-30 21:20:40 -08:00
|
|
|
while read -r anime_id; do
|
2022-02-03 00:34:50 -08:00
|
|
|
menu+="$((cnt + 1)). $anime_id\n"
|
|
|
|
res["$cnt"]="$anime_id"
|
|
|
|
lg "ANIME: $anime_id"
|
2022-02-03 21:59:50 -08:00
|
|
|
if ! check_db "search" "$anime_id"; then
|
2022-02-03 00:34:50 -08:00
|
|
|
lg "$anime_id HAS BEEN SEARCHED BEFORE"
|
|
|
|
[ -z "$searched" ] && searched="$cnt" || searched="$searched, $cnt"
|
|
|
|
fi
|
|
|
|
((++cnt))
|
2022-01-02 09:53:16 -08:00
|
|
|
done <<- EOF
|
2021-12-30 21:20:40 -08:00
|
|
|
$search_results
|
|
|
|
EOF
|
2022-02-03 00:34:50 -08:00
|
|
|
menu+="$((++cnt)). Quit"
|
2022-01-06 23:29:45 -08:00
|
|
|
|
2022-02-03 00:34:50 -08:00
|
|
|
lg "searched indexes: $searched"
|
2021-12-30 21:20:40 -08:00
|
|
|
|
|
|
|
# get the anime from indexed list
|
2022-01-11 17:05:11 -08:00
|
|
|
msg="$(generate_span "Query: $query")"
|
2021-12-30 21:20:40 -08:00
|
|
|
user_input=$(printf "${menu[@]}" |
|
2022-01-11 17:05:11 -08:00
|
|
|
rofi -dpi "$DPI" -dmenu -config "$ROFI_CFG" \
|
2021-12-30 21:20:40 -08:00
|
|
|
-a "$searched" \
|
2022-01-01 19:19:15 -08:00
|
|
|
-l 12 -i -p "Enter selection:" \
|
2022-01-08 14:55:17 -08:00
|
|
|
-async-pre-read 33 \
|
2022-01-04 00:57:22 -08:00
|
|
|
-mesg "$msg" -only-match)
|
2021-12-30 21:20:40 -08:00
|
|
|
[ -z "$user_input" ] && return 1
|
2022-01-15 15:12:42 -08:00
|
|
|
if [ "$(awk '{ print $NF }' <<< "$user_input")" = "Quit" ]; then
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "QUITTING"
|
2022-01-06 23:29:45 -08:00
|
|
|
return 1
|
|
|
|
fi
|
2021-12-30 21:20:40 -08:00
|
|
|
|
|
|
|
choice=$(printf '%s\n' "$user_input" | awk '{print $1}')
|
2022-02-05 16:46:12 -08:00
|
|
|
choice="${choice::-1}" # Remove period after number
|
2021-12-30 21:20:40 -08:00
|
|
|
name=$(printf '%s\n' "$user_input" | awk '{print $NF}')
|
2022-01-02 09:53:16 -08:00
|
|
|
else
|
|
|
|
menu_format_string='[%d] %s\n'
|
|
|
|
menu_format_string_c1="$c_blue[$c_cyan%d$c_blue] $c_reset%s\n"
|
|
|
|
menu_format_string_c2="$c_blue[$c_cyan%d$c_blue] $c_yellow%s$c_reset\n"
|
|
|
|
count=1
|
2022-02-03 22:18:51 -08:00
|
|
|
while read -r anime_id; do
|
2022-01-02 09:53:16 -08:00
|
|
|
# alternating colors for menu
|
|
|
|
[ $((count % 2)) -eq 0 ] &&
|
|
|
|
menu_format_string=$menu_format_string_c1 ||
|
|
|
|
menu_format_string=$menu_format_string_c2
|
|
|
|
|
|
|
|
printf "$menu_format_string" "$count" "$anime_id"
|
|
|
|
count=$((count + 1))
|
|
|
|
done <<< "$search_results"
|
|
|
|
printf "$c_blue%s$c_green" "Enter number: "
|
|
|
|
read choice
|
|
|
|
printf "$c_reset"
|
|
|
|
name="$anime_id"
|
2021-11-04 18:37:16 -07:00
|
|
|
fi
|
2021-06-09 05:25:23 -07:00
|
|
|
|
2022-01-02 09:53:16 -08:00
|
|
|
# Check if input is a number
|
|
|
|
[ "$choice" -eq "$choice" ] 2> /dev/null || die "Invalid number entered"
|
2021-11-04 18:37:16 -07:00
|
|
|
|
2021-06-18 03:18:16 -07:00
|
|
|
count=1
|
2021-11-25 10:52:59 -08:00
|
|
|
while read -r anime_id; do
|
|
|
|
if [ "$count" -eq "$choice" ]; then
|
2021-06-18 03:18:16 -07:00
|
|
|
selection_id=$anime_id
|
|
|
|
break
|
|
|
|
fi
|
2021-10-29 22:49:52 -07:00
|
|
|
count=$((count + 1))
|
2022-01-02 09:53:16 -08:00
|
|
|
done <<- EOF
|
2021-10-29 22:49:52 -07:00
|
|
|
$search_results
|
2021-06-18 03:18:16 -07:00
|
|
|
EOF
|
|
|
|
|
2021-12-30 21:20:40 -08:00
|
|
|
printf "$c_reset"
|
2022-02-03 00:40:59 -08:00
|
|
|
[ -z "$name" ] && name="$anime_id"
|
2021-06-18 03:18:16 -07:00
|
|
|
[ -z "$selection_id" ] && die "Invalid number entered"
|
|
|
|
|
2022-02-03 15:18:04 -08:00
|
|
|
insert_history "search" "$name" &
|
2022-02-03 00:40:59 -08:00
|
|
|
|
2022-01-02 09:53:16 -08:00
|
|
|
read -r last_ep_number <<- EOF
|
2021-10-29 22:49:52 -07:00
|
|
|
$(search_eps "$selection_id")
|
2021-06-18 03:18:16 -07:00
|
|
|
EOF
|
|
|
|
}
|
2021-06-09 05:25:23 -07:00
|
|
|
|
2021-10-29 22:49:52 -07:00
|
|
|
episode_selection() {
|
2021-12-30 21:20:40 -08:00
|
|
|
ep_choice_start="1"
|
2022-01-31 22:50:33 -08:00
|
|
|
if [ "$IS_ROFI" -eq 1 ]; then
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "Anime ID: $anime_id"
|
2022-02-03 21:59:50 -08:00
|
|
|
stmt="SELECT DISTINCT episode_number FROM watch_history WHERE anime_name = '$anime_id';"
|
2022-01-02 09:53:16 -08:00
|
|
|
|
|
|
|
# Get Watch History for $anime_id as comma separated list
|
|
|
|
watch_history=""
|
2022-02-03 00:40:59 -08:00
|
|
|
while read -r i; do
|
2022-01-02 09:53:16 -08:00
|
|
|
if [[ "$watch_history" == "" ]]; then
|
|
|
|
watch_history="$((--i))"
|
|
|
|
else
|
|
|
|
watch_history="$watch_history, $((--i))"
|
|
|
|
fi
|
2022-02-03 00:40:59 -08:00
|
|
|
done < <(run_stmt "$stmt")
|
|
|
|
lg "Episode watch history -> $watch_history"
|
2022-01-02 09:53:16 -08:00
|
|
|
|
|
|
|
# get user choice and set the start and end
|
2022-02-03 22:18:51 -08:00
|
|
|
msg1="Anime Name: $anime_id"
|
|
|
|
msg2="Range of episodes can be provided as: START_EPISODE - END_EPISODE"
|
|
|
|
[ "$is_download" -eq 1 ] && msg=$(printf "%s\n%s" "$(generate_span "$msg1")" "$(generate_span "$msg2")") || msg=$(printf "%s\n" "$(generate_span "$msg1")")
|
2022-01-02 09:53:16 -08:00
|
|
|
choice=$(
|
|
|
|
seq 1 "$last_ep_number" |
|
2022-01-11 17:05:11 -08:00
|
|
|
rofi -dpi "$DPI" -dmenu -l 12 \
|
2022-02-05 14:24:09 -08:00
|
|
|
-theme-str 'window {width: 45%;}' \
|
2022-01-02 09:53:16 -08:00
|
|
|
-a "$watch_history" \
|
|
|
|
-p "Select Episode [1, $last_ep_number]:" \
|
|
|
|
-mesg "$msg" \
|
2022-01-06 02:00:37 -08:00
|
|
|
-config "$ROFI_CFG"
|
2022-01-02 09:53:16 -08:00
|
|
|
)
|
|
|
|
ep_choice_start=$(printf '%s\n' "${choice}" | awk '{print $1}')
|
|
|
|
ep_choice_end=$(printf '%s\n' "${choice}" | awk '{print $NF}')
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "START: $ep_choice_start | END: $ep_choice_end"
|
2022-01-02 09:53:16 -08:00
|
|
|
elif [ $last_ep_number -gt 1 ]; then
|
|
|
|
[ $is_download -eq 1 ] &&
|
|
|
|
printf "Range of episodes can be specified: start_number end_number\n"
|
|
|
|
|
|
|
|
printf "${c_blue}Choose episode $c_cyan[1-%d]$c_reset:$c_green " $last_ep_number
|
|
|
|
read ep_choice_start ep_choice_end
|
|
|
|
printf "$c_reset"
|
|
|
|
fi
|
2022-01-02 11:19:31 -08:00
|
|
|
if [ "$(echo "$ep_choice_start" | awk '{ printf substr($0, 1, 1) }')" = "h" ]; then
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "IS A HALF EPISODE"
|
2022-01-02 11:19:31 -08:00
|
|
|
half_ep=1
|
|
|
|
ep_choice_start=$(echo "$ep_choice_start" | awk '{ printf substr($0, 2) }')
|
|
|
|
ep_choice_end=$ep_choice_start
|
|
|
|
fi
|
2021-11-04 18:37:16 -07:00
|
|
|
if [[ -z "$ep_choice_start" ]] && [[ -z "$ep_choice_end" ]]; then
|
|
|
|
die "No episode range entered"
|
|
|
|
fi
|
2021-11-01 17:05:43 -07:00
|
|
|
# if only one episode was entered, set ep_choice_end to empty string so only selected episode plays
|
|
|
|
# otherwise plays from ep 1 - ep_choice_start
|
2021-11-01 19:48:19 -07:00
|
|
|
if [[ "$ep_choice_start" -eq "$ep_choice_end" ]]; then
|
|
|
|
ep_choice_end=""
|
|
|
|
fi
|
2021-06-18 03:18:16 -07:00
|
|
|
printf "$c_reset"
|
2021-06-13 04:34:16 -07:00
|
|
|
}
|
2021-06-09 05:25:23 -07:00
|
|
|
|
2021-10-29 22:49:52 -07:00
|
|
|
open_episode() {
|
2021-06-13 04:34:16 -07:00
|
|
|
anime_id=$1
|
|
|
|
episode=$2
|
2021-11-08 00:41:30 -08:00
|
|
|
ddir="$3"
|
2021-06-09 05:25:23 -07:00
|
|
|
|
2022-01-02 11:00:49 -08:00
|
|
|
if [ $half_ep -eq 1 ]; then
|
|
|
|
temp_ep=$episode
|
|
|
|
episode=$episode"-5"
|
|
|
|
fi
|
|
|
|
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "Getting data for episode $episode"
|
2021-06-09 05:25:23 -07:00
|
|
|
|
2021-12-30 16:47:08 -08:00
|
|
|
# Don't update watch history if downloading episode
|
|
|
|
if [ "$is_download" -eq 0 ]; then
|
2022-02-03 15:18:04 -08:00
|
|
|
insert_history "watch" "$anime_id" "$episode" &
|
2021-12-30 16:47:08 -08:00
|
|
|
fi
|
2021-10-29 22:49:52 -07:00
|
|
|
|
2022-01-03 22:12:24 -08:00
|
|
|
dpage_link=$(get_dpage_link "$anime_id" "$episode")
|
2022-01-07 09:24:13 -08:00
|
|
|
video_url=$(get_video_quality "$dpage_link")
|
2022-01-19 23:27:25 -08:00
|
|
|
lg "Download link: $dpage_link"
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "Video url: $video_url"
|
2021-06-09 05:25:23 -07:00
|
|
|
|
2022-01-02 11:00:49 -08:00
|
|
|
if [ $half_ep -eq 1 ]; then
|
|
|
|
episode=$temp_ep
|
|
|
|
half_ep=0
|
|
|
|
fi
|
|
|
|
|
2022-01-28 12:19:24 -08:00
|
|
|
if [ -z "$video_url" ]; then
|
|
|
|
die "Video URL not found"
|
|
|
|
fi
|
|
|
|
|
2021-11-25 10:52:59 -08:00
|
|
|
if [ "$is_download" -eq 0 ]; then
|
2022-01-04 11:38:13 -08:00
|
|
|
kill "$PID" > /dev/null 2>&1
|
2022-02-05 16:46:12 -08:00
|
|
|
case "$player_fn" in
|
|
|
|
mpv)
|
|
|
|
nohup "$player_fn" --referrer="$dpage_link" "$video_url" > /dev/null 2>&1 &
|
|
|
|
;;
|
|
|
|
mplayer)
|
|
|
|
nohup "$player_fn" -referrer "$dpage_link" "$video_url" > /dev/null 2>&1 &
|
|
|
|
;;
|
|
|
|
vlc)
|
|
|
|
nohup "$player_fn" --play-and-exit --http-referrer="$dpage_link" "$video_url" > /dev/null 2>&1 &
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
# try to open with just the video url
|
|
|
|
nohup "$player_fn" "$video_url" > /dev/null 2>&1 &
|
|
|
|
;;
|
|
|
|
esac
|
2022-01-03 22:12:24 -08:00
|
|
|
PID=$!
|
2022-01-08 14:55:17 -08:00
|
|
|
if command -v "notify-send" > /dev/null; then
|
2022-01-31 23:32:26 -08:00
|
|
|
((SILENT != 1)) && notify-send -i "$ANIWRAPPER_ICON_PATH" "Playing $anime_id - Episode $episode"
|
2022-01-08 14:55:17 -08:00
|
|
|
else
|
2022-01-29 01:01:37 -08:00
|
|
|
((SILENT != 1)) && printf "${c_green}\nVideo playing"
|
2022-01-08 14:55:17 -08:00
|
|
|
fi
|
2021-06-10 03:48:06 -07:00
|
|
|
else
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "Downloading episode $episode ..."
|
2022-01-04 11:38:13 -08:00
|
|
|
dl_dir="${ddir// /}/$anime_id"
|
2021-06-18 03:18:16 -07:00
|
|
|
# add 0 padding to the episode name
|
2021-11-25 10:52:59 -08:00
|
|
|
episode=$(printf "%03d" "$episode")
|
2021-06-10 03:48:06 -07:00
|
|
|
{
|
2022-01-04 11:38:13 -08:00
|
|
|
mkdir -p "$dl_dir" || die "Could not create directory"
|
2022-01-02 09:53:16 -08:00
|
|
|
if command -v "notify-send" > /dev/null; then
|
2022-01-31 03:18:08 -08:00
|
|
|
if aria2c -x 16 -s 16 --referer="$dpage_link" "$video_url" --dir="$dl_dir" -o "$episode.mp4" --download-result=hide; then
|
2022-01-31 23:32:26 -08:00
|
|
|
((SILENT != 1)) && notify-send -i "$ANIWRAPPER_ICON_PATH" "Download complete for ${anime_id//-/ } - Episode: $episode"
|
2022-01-28 12:19:24 -08:00
|
|
|
else
|
2022-01-31 23:32:26 -08:00
|
|
|
((SILENT != 1)) && notify-send -i "$MAISAN_ICON_PATH" "Download failed for ${anime_id//-/ } - Episode: $episode. Please retry or check your internet connection"
|
2022-01-28 12:19:24 -08:00
|
|
|
fi
|
2021-12-30 21:58:02 -08:00
|
|
|
else
|
2022-01-31 03:18:08 -08:00
|
|
|
if aria2c -x 16 -s 16 --referer="$dpage_link" "$video_url" --dir="$dl_dir" -o "$episode.mp4" --download-result=hide; then
|
2022-01-29 01:01:37 -08:00
|
|
|
((SILENT != 1)) && printf "${c_green}Downloaded complete for %s - Episode: %s${c_reset}\n" "${anime_id//-/ }" "$episode"
|
2022-01-28 12:19:24 -08:00
|
|
|
else
|
2022-01-29 01:01:37 -08:00
|
|
|
((SILENT != 1)) && printf "${c_red}Download failed for %s - Episode: %s, please retry or check your internet connection${c_reset}\n" "${anime_id//-/ }" "$episode"
|
2022-01-28 12:19:24 -08:00
|
|
|
fi
|
2021-12-30 21:58:02 -08:00
|
|
|
fi
|
2021-06-10 03:48:06 -07:00
|
|
|
}
|
|
|
|
fi
|
2021-06-13 04:34:16 -07:00
|
|
|
}
|
|
|
|
|
2022-01-02 15:14:39 -08:00
|
|
|
stream() {
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "Running stream()"
|
2022-02-04 17:58:08 -08:00
|
|
|
if [ "$#" -eq 0 ]; then
|
|
|
|
get_search_query
|
|
|
|
else
|
|
|
|
get_search_query "$*"
|
|
|
|
fi
|
2022-01-15 15:12:42 -08:00
|
|
|
anime_id="${query// /}"
|
|
|
|
[ -z "$anime_id" ] && die "No anime selected or queried"
|
2022-02-04 17:58:08 -08:00
|
|
|
searched=0
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "Checking if anime: $anime_id has been searched before..."
|
2022-02-04 17:58:08 -08:00
|
|
|
if check_db "search" "$anime_id"; then
|
|
|
|
lg "$anime_id has been searched before"
|
2022-01-22 00:55:29 -08:00
|
|
|
search_results=$(search_anime $query) # want word splitting to account for both input cases
|
2022-01-02 15:14:39 -08:00
|
|
|
[ -z "$search_results" ] && die "No search results found"
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "SEARCH RESULTS: $search_results"
|
2022-01-02 15:14:39 -08:00
|
|
|
if ! anime_selection "$search_results"; then
|
|
|
|
die "No anime selection found"
|
|
|
|
fi
|
|
|
|
else
|
2022-02-04 17:58:08 -08:00
|
|
|
# skip search_anime function and assign $query if previously searched
|
2022-01-02 15:14:39 -08:00
|
|
|
selection_id="$anime_id"
|
2022-02-03 15:18:04 -08:00
|
|
|
insert_history "search" "$anime_id" &
|
2022-02-04 17:58:08 -08:00
|
|
|
read -r last_ep_number < <(search_eps "$anime_id")
|
2022-01-02 15:14:39 -08:00
|
|
|
fi
|
|
|
|
episode_selection
|
|
|
|
}
|
|
|
|
|
2022-01-15 15:12:42 -08:00
|
|
|
parse_args() {
|
|
|
|
# to clear the colors when exited using SIGINT
|
|
|
|
trap "printf '$c_reset'" INT HUP
|
|
|
|
scrape=query
|
|
|
|
quality=best
|
|
|
|
is_download=0
|
|
|
|
download_dir="."
|
|
|
|
half_ep=0
|
2022-02-05 16:46:12 -08:00
|
|
|
while getopts 'd:Hsvq:cf:t:T:CQ:D:Sp:' OPT; do
|
2022-01-15 15:12:42 -08:00
|
|
|
case "$OPT" in
|
|
|
|
d)
|
|
|
|
is_download=1
|
|
|
|
download_dir="$OPTARG"
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "DOWNLOAD DIR: $download_dir"
|
2022-01-15 15:12:42 -08:00
|
|
|
;;
|
|
|
|
H)
|
|
|
|
scrape=history
|
|
|
|
;;
|
|
|
|
s)
|
|
|
|
scrape=sync
|
|
|
|
;;
|
|
|
|
v)
|
|
|
|
VERBOSE=1
|
|
|
|
;;
|
|
|
|
q)
|
|
|
|
quality="$OPTARG"
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "passed in quality: $quality"
|
2022-01-15 15:12:42 -08:00
|
|
|
;;
|
|
|
|
c)
|
2022-01-31 22:50:33 -08:00
|
|
|
IS_ROFI=0
|
2022-01-15 15:12:42 -08:00
|
|
|
;;
|
|
|
|
f)
|
|
|
|
scrape="file"
|
|
|
|
play_dir="$OPTARG"
|
|
|
|
[ "$play_dir" != "/" ] && play_dir="$(sed -E 's/\/$//' <<< "$play_dir")" # remove trailing slash... unless searching / for some reason
|
|
|
|
;;
|
|
|
|
t)
|
|
|
|
theme="$OPTARG"
|
|
|
|
case "$theme" in
|
|
|
|
aniwrapper)
|
|
|
|
ROFI_THEME=aniwrapper.rasi
|
|
|
|
;;
|
|
|
|
default)
|
|
|
|
ROFI_THEME=aniwrapper.rasi
|
|
|
|
;;
|
|
|
|
dracula)
|
|
|
|
ROFI_THEME=aniwrapper-dracula.rasi
|
|
|
|
;;
|
|
|
|
doomone | doom-one)
|
|
|
|
ROFI_THEME=aniwrapper-doomone.rasi
|
|
|
|
;;
|
|
|
|
fancy)
|
|
|
|
ROFI_THEME=aniwrapper-fancy.rasi
|
|
|
|
;;
|
|
|
|
flamingo)
|
|
|
|
ROFI_THEME=aniwrapper-flamingo.rasi
|
|
|
|
;;
|
|
|
|
material)
|
|
|
|
ROFI_THEME=aniwrapper-material.rasi
|
|
|
|
;;
|
|
|
|
nord)
|
|
|
|
ROFI_THEME=aniwrapper-nord.rasi
|
|
|
|
;;
|
|
|
|
onedark)
|
|
|
|
ROFI_THEME=aniwrapper-onedark.rasi
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
die "$theme not a valid theme file. Themes: [$THEMES]"
|
|
|
|
;;
|
|
|
|
esac
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "Setting theme for ani-cli -> $ROFI_THEME"
|
2022-01-15 15:12:42 -08:00
|
|
|
ROFI_CFG="$CFG_DIR/themes/$ROFI_THEME"
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "ROFI_CFG: $ROFI_CFG"
|
2022-01-15 15:12:42 -08:00
|
|
|
;;
|
|
|
|
T)
|
|
|
|
ROFI_CFG="$OPTARG"
|
|
|
|
[ ! -f "$ROFI_CFG" ] && die "$ROFI_CFG does not exist"
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "CUSTOM ROFI_CFG: $ROFI_CFG"
|
2022-01-15 15:12:42 -08:00
|
|
|
;;
|
|
|
|
C)
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "Connecting to history database -> $CFG_DIR/history.sqlite3"
|
2022-01-15 15:12:42 -08:00
|
|
|
sqlite3 "$CFG_DIR/history.sqlite3"
|
|
|
|
exit $?
|
|
|
|
;;
|
|
|
|
Q)
|
|
|
|
query="$OPTARG"
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "DATABASE QUERY: $query"
|
2022-01-15 15:12:42 -08:00
|
|
|
sqlite3 -line "$CFG_DIR/history.sqlite3" "$query"
|
|
|
|
exit $?
|
|
|
|
;;
|
|
|
|
D)
|
|
|
|
DPI="$OPTARG"
|
|
|
|
;;
|
2022-01-29 01:01:37 -08:00
|
|
|
S)
|
|
|
|
SILENT=1
|
|
|
|
;;
|
2022-02-05 16:46:12 -08:00
|
|
|
p)
|
|
|
|
player_fn="$OPTARG"
|
|
|
|
if ! command -v "$player_fn" > /dev/null; then
|
|
|
|
die "ERROR: $player_fn does not exist"
|
|
|
|
fi
|
|
|
|
;;
|
2022-01-15 15:12:42 -08:00
|
|
|
*)
|
|
|
|
printf "%s\n" "Invalid option"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|
2022-01-02 11:00:49 -08:00
|
|
|
|
2021-06-18 03:18:16 -07:00
|
|
|
########
|
|
|
|
# main #
|
|
|
|
########
|
2022-01-15 15:12:42 -08:00
|
|
|
main() {
|
|
|
|
case $scrape in
|
|
|
|
query)
|
2022-02-03 00:56:12 -08:00
|
|
|
BASE_URL="$(curl -s -L -o /dev/null -w "%{url_effective}\n" https://gogoanime.cm)"
|
2022-02-04 17:58:08 -08:00
|
|
|
stream "$@"
|
2022-01-15 15:12:42 -08:00
|
|
|
;;
|
|
|
|
history)
|
2022-02-03 00:56:12 -08:00
|
|
|
BASE_URL="$(curl -s -L -o /dev/null -w "%{url_effective}\n" https://gogoanime.cm)"
|
2022-01-15 15:12:42 -08:00
|
|
|
stmt="SELECT DISTINCT anime_name FROM watch_history ORDER BY watch_date DESC"
|
2022-02-03 00:56:12 -08:00
|
|
|
search_results="$(printf "%s\n" "$stmt" | sqlite3 -noheader "$HISTORY_DB")"
|
2022-01-15 15:12:42 -08:00
|
|
|
[ -z "$search_results" ] && die "History is empty"
|
|
|
|
if ! anime_selection "${search_results[@]}"; then
|
|
|
|
die "No anime selection found"
|
|
|
|
fi
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "SELECTION: $selection_id"
|
2021-06-18 03:18:16 -07:00
|
|
|
|
2022-02-03 21:59:50 -08:00
|
|
|
stmt="SELECT episode_number FROM watch_history WHERE anime_name = '$selection_id' ORDER BY watch_date DESC LIMIT 1;"
|
2022-01-15 15:12:42 -08:00
|
|
|
ep_choice_start=$(run_stmt "$stmt")
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "Most recently watched episode: $ep_choice_start"
|
2022-01-15 15:12:42 -08:00
|
|
|
;;
|
|
|
|
sync)
|
|
|
|
printf "%s" "Enter username for remote user: "
|
|
|
|
read -r username
|
|
|
|
printf "%s" "Enter host for remote user: "
|
|
|
|
read -r host
|
|
|
|
|
|
|
|
connection_str="$username@$host"
|
|
|
|
printf "%s" "Enter port to connect to remote host with or leave blank for default (22): "
|
|
|
|
read -r port
|
2022-02-05 16:46:12 -08:00
|
|
|
[ -z "$port" ] && PORT=22 || PORT="$port"
|
2021-11-04 23:22:34 -07:00
|
|
|
|
2022-01-15 15:12:42 -08:00
|
|
|
printf "%s" "Enter path to private key (leave blank if unsure or not needed): "
|
|
|
|
read -r key_path
|
2021-11-11 14:36:04 -08:00
|
|
|
|
2022-01-15 15:12:42 -08:00
|
|
|
printf "%s\n" "Syncing database with: $connection_str on port $PORT"
|
|
|
|
temp_db="/tmp/aniwrapper_tmp_history.sqlite3"
|
2021-10-29 22:49:52 -07:00
|
|
|
|
2022-01-15 15:12:42 -08:00
|
|
|
if [[ -z "$key_path" ]]; then
|
|
|
|
scp -P "$PORT" "$connection_str:$HISTORY_DB" "$temp_db"
|
|
|
|
else
|
|
|
|
scp -P "$PORT" -i "$key_path" "$connection_str:$HISTORY_DB" "$temp_db"
|
|
|
|
fi
|
|
|
|
if [[ "$?" -ne 0 ]]; then
|
|
|
|
die "Error getting database file from remote host"
|
|
|
|
fi
|
|
|
|
sync_search_history && sync_watch_history
|
|
|
|
exit $?
|
2022-01-02 09:53:16 -08:00
|
|
|
;;
|
2022-01-15 15:12:42 -08:00
|
|
|
file)
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "STARTING DIR: $play_dir"
|
2022-01-15 15:12:42 -08:00
|
|
|
[ ! -d "$play_dir" ] && die "$play_dir does not exist"
|
2022-01-21 00:27:39 -08:00
|
|
|
insert_history "directory" "$play_dir"
|
2022-02-03 00:56:12 -08:00
|
|
|
video_path="$(find_media "$play_dir")"
|
2022-01-15 15:12:42 -08:00
|
|
|
retcode="$?"
|
|
|
|
if [ "$retcode" -ne 0 ]; then
|
|
|
|
die "QUITTING"
|
|
|
|
elif [ -z "$video_path" ]; then
|
|
|
|
die "Something went wrong getting path... path is empty"
|
2022-01-02 11:00:49 -08:00
|
|
|
fi
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "VIDEO PATH: $video_path"
|
2022-01-15 15:12:42 -08:00
|
|
|
play_file "$video_path"
|
|
|
|
exit $?
|
2022-01-02 09:53:16 -08:00
|
|
|
;;
|
2022-01-15 15:12:42 -08:00
|
|
|
esac
|
2021-11-09 00:54:55 -08:00
|
|
|
|
2022-01-15 15:12:42 -08:00
|
|
|
check_input
|
2021-11-09 00:54:55 -08:00
|
|
|
|
2022-01-15 15:12:42 -08:00
|
|
|
for ep in $episodes; do
|
|
|
|
open_episode "$selection_id" "$ep" "$download_dir"
|
|
|
|
done
|
2021-11-29 13:08:41 -08:00
|
|
|
|
2022-01-15 15:12:42 -08:00
|
|
|
if [[ "$is_download" -eq 1 ]]; then
|
2022-01-15 19:32:06 -08:00
|
|
|
lg "Finished downloading episodes: $episodes for $selection_id... exiting"
|
2022-01-15 15:12:42 -08:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2022-01-29 01:01:37 -08:00
|
|
|
if ((SILENT != 1)); then
|
|
|
|
episode=${ep_choice_end:-$ep_choice_start}
|
|
|
|
choice=''
|
|
|
|
while :; do
|
|
|
|
printf "\n${c_green}Currently playing %s episode ${c_cyan}%d/%d\n" "$selection_id" $episode $last_ep_number
|
|
|
|
if [ "$episode" -ne "$last_ep_number" ]; then
|
|
|
|
printf "$c_blue[${c_cyan}%s$c_blue] $c_yellow%s$c_reset\n" "n" "next episode"
|
|
|
|
fi
|
|
|
|
if [ "$episode" -ne "1" ]; then
|
|
|
|
printf "$c_blue[${c_cyan}%s$c_blue] $c_magenta%s$c_reset\n" "p" "previous episode"
|
|
|
|
fi
|
|
|
|
if [ "$last_ep_number" -ne "1" ]; then
|
|
|
|
printf "$c_blue[${c_cyan}%s$c_blue] $c_yellow%s$c_reset\n" "s" "select episode"
|
|
|
|
fi
|
|
|
|
printf "$c_blue[${c_cyan}%s$c_blue] $c_magenta%s$c_reset\n" "r" "replay current episode"
|
|
|
|
printf "$c_blue[${c_cyan}%s$c_blue] $c_yellow%s$c_reset\n" "a" "search for another anime"
|
2022-02-03 15:10:07 -08:00
|
|
|
printf "$c_blue[${c_cyan}%s$c_blue] $c_magenta%s$c_reset\n" "Q" "change video quality (current: $quality)"
|
2022-01-29 01:01:37 -08:00
|
|
|
printf "$c_blue[${c_cyan}%s$c_blue] $c_red%s$c_reset\n" "q" "exit"
|
|
|
|
printf "${c_blue}Enter choice:${c_green} "
|
|
|
|
read -r choice
|
|
|
|
|
|
|
|
printf "$c_reset"
|
|
|
|
case $choice in
|
|
|
|
n)
|
|
|
|
episode=$((episode + 1))
|
|
|
|
;;
|
|
|
|
p)
|
|
|
|
episode=$((episode - 1))
|
|
|
|
;;
|
|
|
|
|
|
|
|
s)
|
2022-01-31 22:50:33 -08:00
|
|
|
episode_selection
|
|
|
|
episode=$ep_choice_start
|
2022-01-29 01:01:37 -08:00
|
|
|
;;
|
|
|
|
|
|
|
|
r)
|
|
|
|
episode=$((episode))
|
|
|
|
;;
|
|
|
|
a)
|
|
|
|
stream
|
|
|
|
episode=$ep_choice_start
|
|
|
|
lg "NEW EPISODE: $selection_id - $episode"
|
|
|
|
;;
|
2022-01-31 22:50:33 -08:00
|
|
|
Q)
|
|
|
|
if ((IS_ROFI == 1)); then
|
2022-02-03 15:10:07 -08:00
|
|
|
case "$quality" in
|
|
|
|
best)
|
|
|
|
cur_quality=0
|
|
|
|
;;
|
|
|
|
1080p)
|
|
|
|
cur_quality=1
|
|
|
|
;;
|
|
|
|
720p)
|
|
|
|
cur_quality=2
|
|
|
|
;;
|
|
|
|
360p)
|
|
|
|
cur_quality=3
|
|
|
|
;;
|
|
|
|
worst)
|
|
|
|
cur_quality=4
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
cur_quality=0
|
|
|
|
;;
|
|
|
|
esac
|
2022-01-31 22:59:55 -08:00
|
|
|
choice=$(rofi -dmenu -dpi "$DPI" -config "$ROFI_CFG" \
|
2022-02-05 14:27:29 -08:00
|
|
|
-theme-str 'listview {columns: 1;} window {width: 20%;}' \
|
2022-02-03 15:10:07 -08:00
|
|
|
-i -l 5 -only-match -sep '|' -a "$cur_quality" -mesg "$(generate_span "Current quality: $quality")" \
|
2022-02-03 15:25:15 -08:00
|
|
|
-p "Choose quality:" <<< "1. best|2. 1080p|3. 720p|4. 360p|5. worst")
|
2022-01-31 22:59:55 -08:00
|
|
|
quality=$(awk '{ print $2 }' <<< "$choice")
|
2022-01-31 22:50:33 -08:00
|
|
|
else
|
2022-02-03 15:10:07 -08:00
|
|
|
qualities="best|1080p|720p|480p|360p|worst"
|
2022-01-31 22:50:33 -08:00
|
|
|
printf "${c_blue}Choose quality: [$qualities]:$c_reset "
|
|
|
|
read -r quality
|
|
|
|
while [[ ! "$quality" =~ ($qualities) ]]; do
|
|
|
|
lg "$quality not a valid quality"
|
|
|
|
printf "${c_blue}Choose quality: [$qualities]:$c_reset "
|
|
|
|
read -r quality
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
episode=$((episode))
|
|
|
|
;;
|
2022-01-29 01:01:37 -08:00
|
|
|
|
|
|
|
q)
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
die "invalid choice"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
open_episode "$selection_id" "$episode" "$download_dir"
|
|
|
|
done
|
|
|
|
fi
|
2022-01-15 15:12:42 -08:00
|
|
|
}
|
|
|
|
|
2022-01-28 12:19:24 -08:00
|
|
|
dep_ch "$player_fn" "curl" "sed" "grep" "sqlite3" "rofi" "git" "aria2c"
|
2022-01-15 15:12:42 -08:00
|
|
|
parse_args "$@"
|
2022-02-04 17:58:08 -08:00
|
|
|
shift $((OPTIND - 1))
|
|
|
|
main "$@"
|