Compare commits

..

6 Commits

Author SHA1 Message Date
ksyasuda
e851b92289 add new themes to selection menu 2022-02-19 02:36:02 -08:00
ksyasuda
04cad2425b fix selecting new anime 2022-02-19 02:10:05 -08:00
ksyasuda
d390d0a683 update manpage 2022-02-19 01:36:37 -08:00
ksyasuda
3bfbaa7749 add anime lookup table for tracking start/end episodes for each anime/season 2022-02-19 01:35:41 -08:00
ksyasuda
6137deb26b consolidate sql scripts into one 2022-02-19 01:33:02 -08:00
ksyasuda
a56fe29a29 add anime table and consolidate into one script 2022-02-19 01:32:33 -08:00
9 changed files with 98 additions and 74 deletions

68
ani-cli
View File

@ -11,6 +11,7 @@ DPI=96
IS_ROFI=1
VERBOSE=0
SILENT=0
FIRST_EP_NUMBER=1
PLAYER_FN="mpv"
die() {
@ -185,6 +186,9 @@ check_db() {
watch | sync)
stmt="SELECT DISTINCT COUNT(*) FROM watch_history WHERE anime_name = '$2' AND episode_number = '$3';"
;;
anime)
stmt="SELECT DISTINCT COUNT(*) FROM anime WHERE anime_name = '$2';"
;;
esac
res=$(run_stmt "$stmt")
return "$res"
@ -229,8 +233,10 @@ update_date() {
watch)
stmt="UPDATE watch_history SET watch_date = '$datetime' WHERE anime_name = '$2' AND episode_number = $3;"
;;
anime)
return
;;
esac
wait # in case there's another insert/update still running in background?
lg "UPDATE STMT -> $stmt"
run_stmt "$stmt"
}
@ -264,9 +270,11 @@ insert_history() {
sync)
stmt="INSERT INTO watch_history(anime_name, episode_number, watch_date) VALUES('$2', '$3', '$4');"
;;
anime)
stmt="INSERT INTO anime(anime_name, start_episode, end_episode, data_date) VALUES('$2', $3, $4, '$datetime');"
;;
esac
lg "INSERT STATEMENT -> $stmt"
wait # in case there's another insert/update still running in background
run_stmt "$stmt"
res=$?
fi
@ -320,7 +328,7 @@ play_file() {
if [[ "$1" =~ (\.mp4|\.mkv|\.ts|\.webm)$ ]]; then
filename="${1##*/}"
directory="${1%/*}"
insert_history "file" "$directory" "$filename" &
insert_history "file" "$directory" "$filename"
notification "Playing $1"
case "$PLAYER_FN" in
mpv)
@ -468,13 +476,26 @@ search_anime() {
search_eps() {
anime_id=$1
curl -s "$BASE_URL/category/$anime_id" |
if ! check_db "anime" "$anime_id"; then
FIRST_EP_NUMBER="$(run_stmt "SELECT start_episode FROM anime WHERE anime_name = '$anime_id';")"
LAST_EP_NUMBER="$(run_stmt "SELECT end_episode FROM anime WHERE anime_name = '$anime_id';")"
else
result=$(get_dpage_link "$anime_id" 0)
FIRST_EP_NUMBER="${result:-1}"
LAST_EP_NUMBER=$(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
}
'
')
lg "Anime $anime_id not in anime database... inserting into database" > /dev/stderr
insert_history "anime" "$anime_id" "$FIRST_EP_NUMBER" "$LAST_EP_NUMBER"
fi
FIRST_EP_NUMBER="${FIRST_EP_NUMBER%% }"
LAST_EP_NUMBER="${LAST_EP_NUMBER%% }"
lg "FIRST EP NUMBER: $FIRST_EP_NUMBER"
lg "LAST EP NUMBER: $LAST_EP_NUMBER"
}
# Select anime from query results
@ -505,6 +526,7 @@ anime_selection() {
die "Quitting"
elif ((choice == --cnt)); then
stream
return $?
fi
else
count=1
@ -529,15 +551,14 @@ anime_selection() {
done <<< "$search_results"
[[ -z "$selection_id" ]] && die "Invalid number entered"
insert_history "search" "$selection_id" &
read -r last_ep_number < <(search_eps "$selection_id")
insert_history "search" "$selection_id"
lg "Selection: $selection_id"
search_eps "$anime_id"
return 0
}
episode_selection() {
ep_choice_start=1 first_ep_number=0
result=$(get_dpage_link "$anime_id" "$first_ep_number")
[[ -z "$result" ]] && first_ep_number=1
ep_choice_start=1
if ((IS_ROFI == 1)); then
lg "Anime ID: $anime_id"
stmt="SELECT DISTINCT episode_number FROM watch_history WHERE anime_name = '$anime_id';"
@ -554,21 +575,21 @@ episode_selection() {
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")")
choice=$(
seq "$first_ep_number" "$last_ep_number" |
seq "$FIRST_EP_NUMBER" "$LAST_EP_NUMBER" |
rofi -dpi "$DPI" -dmenu -l 12 \
-theme-str 'window {width: 45%;}' \
-a "$watch_history" \
-p "Select Episode [$first_ep_number, $last_ep_number]:" \
-p "Select Episode [$FIRST_EP_NUMBER, $LAST_EP_NUMBER]:" \
-mesg "$msg" -window-title 'aniwrapper' \
-config "$ROFI_CFG"
)
ep_choice_start=$(printf '%s\n' "${choice}" | awk '{print $1}')
ep_choice_end=$(printf '%s\n' "${choice}" | awk '{print $NF}')
lg "START: $ep_choice_start | END: $ep_choice_end"
elif ((last_ep_number > 1)); then
elif ((LAST_EP_NUMBER > 1)); then
[[ "$is_download" -eq 1 ]] &&
inf "Range of episodes can be specified: start_number end_number"
prompt "Choose episode" "[$first_ep_number-$last_ep_number]"
prompt "Choose episode" "[$FIRST_EP_NUMBER-$LAST_EP_NUMBER]"
read -r ep_choice_start ep_choice_end
[[ -z "$ep_choice_end" ]] && ep_choice_end="$ep_choice_start"
fi
@ -578,7 +599,7 @@ episode_selection() {
ep_choice_start=$(echo "$ep_choice_start" | awk '{ printf substr($0, 2) }')
ep_choice_end=$ep_choice_start
fi
if (((ep_choice_start <= 0 || ep_choice_start > last_ep_number) || ep_choice_end < ep_choice_start || ep_choice_end > last_ep_number)); then
if (((ep_choice_start <= 0 || ep_choice_start > LAST_EP_NUMBER) || ep_choice_end < ep_choice_start || ep_choice_end > LAST_EP_NUMBER)); then
die "Invalid episode/range entered: ep_start -> $ep_choice_start | ep_end -> $ep_choice_end"
fi
# if only one episode was entered, set ep_choice_end to empty string so only selected episode plays
@ -597,7 +618,7 @@ open_episode() {
fi
# Don't update watch history if downloading episode
(("$is_download" == 0)) && insert_history "watch" "$anime_id" "$episode" &
(("$is_download" == 0)) && insert_history "watch" "$anime_id" "$episode"
lg "Getting data for episode $episode"
dpage_link=$(get_dpage_link "$anime_id" "$episode")
@ -679,10 +700,9 @@ stream() {
fi
else
selection_id="$anime_id"
insert_history "search" "$anime_id" &
read -r last_ep_number < <(search_eps "$anime_id")
insert_history "search" "$anime_id"
search_eps "$anime_id"
fi
lg "LAST EP NUMBER -> $last_ep_number"
episode_selection
}
@ -858,14 +878,14 @@ main() {
episode=${ep_choice_end:-$ep_choice_start}
choice=''
while :; do
inf "Currently playing $selection_id episode" "${episode// /}/$last_ep_number"
if ((episode != last_ep_number)); then
inf "Currently playing $selection_id episode" "${episode// /}/$LAST_EP_NUMBER"
if ((episode != LAST_EP_NUMBER)); then
menu_line_alternate "next episode" "n"
fi
if ((episode != first_ep_number)); then
if ((episode != FIRST_EP_NUMBER)); then
menu_line_alternate "previous episode" "p"
fi
if ((first_ep_number != last_ep_number)); then
if ((FIRST_EP_NUMBER != LAST_EP_NUMBER)); then
menu_line_alternate "select episode" "s"
fi
menu_line_alternate "replay current episode" "r"

View File

@ -395,10 +395,11 @@ main() {
# -----------------------------------------------------------------
[ -z "$THEMES" ] && seppuku "No themes provided... exiting"
theme_idx="$(get_theme_idx)"
lg "Theme index: $theme_idx"
lg "NUM THEMES: $NUM_THEMES"
choice=$(rofi -dmenu -config "$CFG_FILE" -dpi "$DPI" -window-title 'aniwrapper' \
-theme-str 'listview {columns: 1;} window {width: 45%;}' \
-no-custom -l 4 -i -p "Choose theme: " -sep '|' \
-theme-str 'listview { columns: 2; }' \
-theme-str 'listview {columns: 2;} window {width: 45%;}' \
-no-custom -l 5 -i -p "Choose theme: " -sep '|' \
-a "$theme_idx" -selected-row "$theme_idx" <<< "$THEMES")
theme=$(awk '{ print $1 }' <<< "$choice")
set_theme "$theme"

View File

@ -72,7 +72,7 @@ Run a query on the history databse
Enable silent mode (suppress all output) [cannot be used with
\f[B]-v\f[R]]
.TP
\f[B]-t\f[R] \f[I]aniwrapper (default)|dracula|doomone|fancy|flamingo|material|nord|onedark\f[R]
\f[B]-t\f[R] \f[I]alter|aniwrapper (default)|dracula|doomone|fancy|flamingo|material|monokai|nord|onedark\f[R]
Choose theme from presets
.TP
\f[B]-T\f[R] \f[I]path_to_theme\f[R]

View File

@ -59,7 +59,7 @@ Defaults:
**-S**
: Enable silent mode (suppress all output) [cannot be used with **-v**]
**-t** _aniwrapper (default)|dracula|doomone|fancy|flamingo|material|nord|onedark_
**-t** _alter|aniwrapper (default)|dracula|doomone|fancy|flamingo|material|monokai|nord|onedark_
: Choose theme from presets
**-T** _path_to_theme_

View File

@ -43,13 +43,9 @@ run_setup() {
log "Directory created"
fi
if [[ ! -f "$DIR/$DB" ]]; then
log "CREATING HISTORY DATABASE"
sqlite3 "$DIR/$DB" < sql/search_history_tbl.sql
sqlite3 "$DIR/$DB" < sql/watch_history_tbl.sql
sqlite3 "$DIR/$DB" < sql/file_history.sql
log "CREATING HISTORY DATABASE IF NOT EXISTS"
sqlite3 "$DIR/$DB" < sql/history.sql
log "FINISHED CREATING DB"
fi
# log "themes directory does not exist in filesystem... Creating and moving themes"
mkdir -p "$DIR/themes"

View File

@ -1,12 +0,0 @@
CREATE TABLE IF NOT EXISTS file_history (
id integer PRIMARY KEY AUTOINCREMENT,
directory varchar(200) NOT NULL,
filename varchar(200) NOT NULL,
watch_date DATETIME NOT NULL,
CHECK (LENGTH(directory) > 0),
CHECK (LENGTH(filename) > 0),
UNIQUE (directory, filename)
);
CREATE UNIQUE INDEX IF NOT EXISTS dir_filename_idx ON file_history (directory, filename);

40
sql/history.sql Normal file
View File

@ -0,0 +1,40 @@
CREATE TABLE IF NOT EXISTS anime (
id INTEGER PRIMARY KEY AUTOINCREMENT,
anime_name VARCHAR(255) NOT NULL UNIQUE,
start_episode INTEGER NOT NULL,
end_episode INTEGER NOT NULL,
data_date DATETIME NOT NULL,
CHECK(start_episode <= end_episode),
CHECK(LENGTH(anime_name) > 0)
);
CREATE TABLE IF NOT EXISTS file_history (
id integer PRIMARY KEY AUTOINCREMENT,
directory varchar(200) NOT NULL,
filename varchar(200) NOT NULL,
watch_date DATETIME NOT NULL,
CHECK (LENGTH(directory) > 0),
CHECK (LENGTH(filename) > 0),
UNIQUE (directory, filename)
);
CREATE TABLE IF NOT EXISTS watch_history (
id integer PRIMARY KEY AUTOINCREMENT,
anime_name varchar(200) NOT NULL,
episode_number integer NOT NULL,
watch_date DATETIME NOT NULL,
CHECK (LENGTH(anime_name) > 0),
CHECK (episode_number > 0),
UNIQUE (anime_name, episode_number, watch_date)
);
CREATE TABLE IF NOT EXISTS search_history (
id integer PRIMARY KEY AUTOINCREMENT,
anime_name varchar(200) NOT NULL UNIQUE,
search_date DATETIME NOT NULL,
CHECK (LENGTH(anime_name) > 0)
);
CREATE UNIQUE INDEX IF NOT EXISTS anime_search_idx ON search_history (anime_name, search_date);
CREATE UNIQUE INDEX IF NOT EXISTS watch_anime_episode_idx ON watch_history (anime_name, episode_number);
CREATE UNIQUE INDEX IF NOT EXISTS dir_filename_idx ON file_history (directory, filename);

View File

@ -1,9 +0,0 @@
CREATE TABLE search_history (
id integer PRIMARY KEY AUTOINCREMENT,
anime_name varchar(200) NOT NULL UNIQUE,
search_date DATETIME NOT NULL,
CHECK (LENGTH(anime_name) > 0)
);
CREATE UNIQUE INDEX anime_search_idx ON search_history (anime_name, search_date);

View File

@ -1,12 +0,0 @@
CREATE TABLE watch_history (
id integer PRIMARY KEY AUTOINCREMENT,
anime_name varchar(200) NOT NULL,
episode_number integer NOT NULL,
watch_date DATETIME NOT NULL,
CHECK (LENGTH(anime_name) > 0),
CHECK (episode_number > 0),
UNIQUE (anime_name, episode_number, watch_date)
);
CREATE UNIQUE INDEX IF NOT EXISTS watch_anime_episode_idx ON watch_history (anime_name, episode_number);