-
Notifications
You must be signed in to change notification settings - Fork 1
/
readitlater.sh
executable file
·168 lines (137 loc) · 4.39 KB
/
readitlater.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#!/usr/bin/env bash
# -*- coding: UTF-8 -*-
ORG_FILEPATH="$ME"/Orgmode/ReadItLater.org
ORG_ARCHIVE_FILEPATH=("$ME/Orgmode/ReadItLater_archive.org" "$ME/Orgmode/Orgmode.org_archive")
command -v yt-dlp >/dev/null
if [ $? -ne 0 ]; then
$WARNING "yt-dlp is missing."
exit 0
fi
command -v notify-send >/dev/null
if [ $? -eq 0 ]; then
NOTIFY="notify-send --app-name ReadItLater -i dialog-information"
WARNING="notify-send --app-name ReadItLater -i dialog-warning"
else
NOTIFY="echo"
WARNING="echo [!]"
fi
get_tags() {
command -v kdialog >/dev/null
if [[ $? -eq 0 ]]; then
TAG=`kdialog --title ReadItLater --inputbox "Tags (separated by \":\")"`
echo "$TAG:"
return 0
fi
command -v termux-setup-storage
if [[ $? -eq 0 ]]; then
TAG=`termux-dialog text --title "ReadItLater" --hint "Tags separated by \":\""`
if [[ -z $TAG ]] || [[ $TAG == "" ]]; then
echo ""
else
echo "$TAG:"
fi
return 0
fi
echo ""
}
check_duplicate() {
local url=$1
grep "$url" ${ORG_FILEPATH} >/dev/null
if [ $? -eq 0 ]; then
$WARNING "Already in ReadItLater"
return 1
fi
for archive in ${ORG_ARCHIVE_FILEPATH[@]}; do
grep "$url" $archive >/dev/null
if [ $? -eq 0 ]; then
$WARNING "Already in ReadItLater Archive"
return 1
fi
done
return 0
}
# Function to estimate reading time and categorize it
calculate_reading_time() {
word_count=$(echo "$1" | wc -w)
reading_speed=200 # Average reading speed in words per minute
reading_time=$((word_count / reading_speed))
reading_time=$((reading_time + 1)) # Add 1 minute to round up
if [ "$reading_time" -le 10 ]; then
duration_tag="short"
elif [ "$reading_time" -le 20 ]; then
duration_tag="mid"
else
duration_tag="long"
fi
echo "$reading_time" "$duration_tag"
}
# Function to process a YouTube URL and categorize it
process_youtube() {
url=$1
check_duplicate "$url"
if [ $? -eq 1 ]; then
return 0
fi
custom_tags=`get_tags`
if [[ "$url" =~ "playlist" ]]; then
title=$(yt-dlp --skip-download --print playlist_title "$url" | uniq)
title="$title playlist"
else
info=$(yt-dlp --get-title --get-duration "$url")
title=$(echo "$info" | sed -n '1p')
duration=$(echo "$info" | sed -n '2p')
fi
if [[ -z $duration ]]; then
# right now only the playlists don't have duration, so the tag long is appropriate
duration="0"
duration_tag="long"
else
# Convert duration to seconds
duration_seconds=$(echo "$duration" | awk -F: '{ if (NF==3) { print ($1 * 3600) + ($2 * 60) + $3 } else if (NF==2) { print ($1 * 60) + $2 } else { print $1 } }')
duration_minutes=$((duration_seconds / 60))
if [ "$duration_minutes" -le 10 ]; then
duration_tag="short"
elif [ "$duration_minutes" -le 20 ]; then
duration_tag="mid"
else
duration_tag="long"
fi
fi
creation_date=`date +%F`
all_tags=":$duration_tag:video:$custom_tags"
echo -e "* $title $all_tags\n $url\n created: [${creation_date}]\n duration: $duration" >> ${ORG_FILEPATH}
$NOTIFY "[$duration] $title ($all_tags) saved"
}
# Function to process a web page URL and categorize it
process_webpage() {
url=$1
check_duplicate "$url"
if [ $? -eq 1 ]; then
return 0
fi
custom_tags=`get_tags`
title=$(wget -q -O - "$url" | tr "\n" " " | sed 's|.*<title>\([^<]*\).*</head>.*|\1|;s|^\s*||;s|\s*$||')
content=$(curl -sL "$url" | html2text)
reading_info=$(calculate_reading_time "$content")
reading_time=$(echo "$reading_info" | awk '{print $1}')
duration_tag=$(echo "$reading_info" | awk '{print $2}')
creation_date=`date +%F`
all_tags=":$duration_tag:reading:$custom_tags"
echo -e "* $title $all_tags\n $url\n created: [${creation_date}]\n duration: ${reading_time} min" >> ${ORG_FILEPATH}
$NOTIFY "[${duration}m] $title ($all_tags) saved"
}
# Main script logic
if [[ $# -eq 0 ]]; then
url=`wl-paste`
else
url=$1
fi
if [[ ! $url =~ "http" ]] && [[ ! $url =~ "www" ]]; then
exit 0
fi
# Check if the URL is a YouTube link
if [[ "$url" =~ "youtube.com" || "$url" =~ "youtu.be" ]]; then
process_youtube "$url"
else
process_webpage "$url"
fi