-
Notifications
You must be signed in to change notification settings - Fork 66
/
overdrive.sh
executable file
·410 lines (375 loc) · 13.7 KB
/
overdrive.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
#!/usr/bin/env bash
set -e # exit immediately on first error
set -o pipefail # propagate intermediate pipeline errors
# should match `git describe --tags` with clean working tree
VERSION=2.4.0
OMC=1.2.0
OS=10.11.6
# use same user agent as mobile app
UserAgent='OverDrive Media Console'
usage() {
>&2 cat <<HELP
Usage: $(basename "$0") [-h|--help]
$(basename "$0") --version
$(basename "$0") command [command2 ...] book.odm [book2.odm ...]
Commands:
download Download the mp3s for an OverDrive book loan.
return Process an early return for an OverDrive book loan.
info Print the author, title, and total duration (in seconds) for each OverDrive loan file.
metadata Print all metadata from each OverDrive loan file.
Options:
-v|--verbose Print shell calls to stderr and un-silent curl.
-o|--output DIR_FORMAT Specify the name of the directory to download to.
All instances of '@AUTHOR' and '@TITLE' are replaced with
the corresponding values extracted from the metadata.
Default: '@AUTHOR - @TITLE'.
HELP
}
MEDIA=()
COMMANDS=()
CURLOPTS=(-s -L -A "$UserAgent" --compressed --retry 3)
DIR_FORMAT='@AUTHOR - @TITLE'
while [[ $# -gt 0 ]]; do
case $1 in
-h|--help)
usage
exit 0
;;
--version)
>&2 printf '%s\n' "$VERSION"
exit 0
;;
-v|--verbose)
>&2 printf 'Entering debug (verbose) mode\n'
set -x
CURLOPTS=("${CURLOPTS[@]:1}") # slice off the '-s'
;;
--insecure)
CURLOPTS+=("$1")
;;
-o|--output)
shift
DIR_FORMAT=$1
;;
*.odm)
if [[ ! -e $1 ]]; then
>&2 printf 'Specified media file does not exist: %s\n' "$1"
exit 2 # ENOENT 2 No such file or directory
fi
MEDIA+=("$1")
;;
download|return|info|metadata)
COMMANDS+=("$1")
;;
*)
>&2 printf 'Unrecognized argument: %s\n' "$1"
exit 1
;;
esac
shift
done
if [[ ${#MEDIA[@]} -eq 0 || ${#COMMANDS[@]} -eq 0 ]]; then
usage
>&2 printf '\n'
[[ ${#COMMANDS[@]} -eq 0 ]] && >&2 printf 'You must supply at least one command.\n'
[[ ${#MEDIA[@]} -eq 0 ]] && >&2 printf 'You must supply at least one media file (the .odm extension is required).\n'
exit 1
fi
for PREREQ in curl uuidgen xmllint iconv openssl base64; do
if ! command -v $PREREQ >/dev/null 2>&1; then
>&2 printf 'Cannot locate required executable "%s". ' $PREREQ
>&2 printf 'This will likely result in an error later on, '
>&2 printf 'which might leave you in an inconsistent failure state, '
>&2 printf 'but continuing anyway.\n'
fi
done
_sanitize() {
# Usage: printf 'Hello, world!\n' | _sanitize
#
# Replace filename-unfriendly characters with a hyphen and trim leading/trailing hyphens/spaces
tr -Cs '[:alnum:] ._-' - | sed -e 's/^[- ]*//' -e 's/[- ]*$//'
}
_xmllint_iter_xpath() {
# Usage: _xmllint_iter_xpath /xpath/to/list file.xml [/path/to/value]
#
# Iterate over each XPath match, ensuring each ends with exactly one newline.
count=$(xmllint --xpath "count($1)" "$2")
if [[ $count -gt 0 ]]; then
for i in $(seq 1 "$count"); do
# xmllint does not reliably emit newlines, so we use command substitution to
# trim trailing newlines, if there are any, and printf to add exactly one.
printf '%s\n' "$(xmllint --xpath "string($1[position()=$i]$3)" "$2")"
done
fi
}
acquire_license() {
# Usage: acquire_license book.odm book.license
#
# Read the license signature from book.license if it exists; if it doesn't,
# acquire a license from the OverDrive server and write it to book.license.
# We store the license in a file because OverDrive will only grant one license per `.odm` file,
# so that if something goes wrong later on, like your internet cuts out mid-download,
# it's easy to resume/recover where you left off.
if [[ -s $2 ]]; then
>&2 printf 'License already acquired: %s\n' "$2"
else
# generate random Client (GU)ID
ClientID=$(uuidgen | tr '[:lower:]' '[:upper:]')
>&2 printf 'Generating random ClientID=%s\n' "$ClientID"
# first extract the "AcquisitionUrl"
AcquisitionUrl=$(xmllint --xpath '/OverDriveMedia/License/AcquisitionUrl/text()' "$1")
>&2 printf 'Using AcquisitionUrl=%s\n' "$AcquisitionUrl"
# along with the only other important (for getting the license) field, "MediaID"
MediaID=$(xmllint --xpath 'string(/OverDriveMedia/@id)' "$1")
>&2 printf 'Using MediaID=%s\n' "$MediaID"
# Compute the Base64-encoded SHA-1 hash from a few `|`-separated values
# and a suffix of `OVERDRIVE*MEDIA*CONSOLE`, but backwards.
# Thanks to https://github.com/jvolkening/gloc/blob/v0.601/gloc#L1523-L1531
# for somehow figuring out how to construct that hash!
RawHash="$ClientID|$OMC|$OS|ELOSNOC*AIDEM*EVIRDREVO"
>&2 printf 'Using RawHash=%s\n' "$RawHash"
Hash=$(echo -n "$RawHash" | iconv -f ASCII -t UTF-16LE | openssl dgst -binary -sha1 | base64)
>&2 printf 'Using Hash=%s\n' "$Hash"
# Submit a request to the OverDrive server to get the full license for this book,
# which is a small XML file with a root element <License>,
# which contains a long Base64-encoded <Signature>,
# which is subsequently used to retrieve the content files.
http_code=$(curl "${CURLOPTS[@]}" -o "$2" -w '%{http_code}' \
"$AcquisitionUrl?MediaID=$MediaID&ClientID=$ClientID&OMC=$OMC&OS=$OS&Hash=$Hash")
# if server responded with something besides an HTTP 200 OK (or other 2** success code),
# print the failure response to stderr and delete the (invalid) file
if [[ $http_code != 2?? ]]; then
>&2 cat "$2"
rm "$2"
exit 22 # curl's exit code for "HTTP page not retrieved"
fi
fi
}
extract_metadata() {
# Usage: extract_metadata book.odm book.metadata
#
# The Metadata XML is nested as CDATA inside the the root OverDriveMedia element;
# luckily, it's the only text content at that level
# sed: delete CDATA prefix from beginning of first line and suffix from end of last line,
# replace unescaped & characters with & entities,
# and convert a selection of named HTML entities to their decimal code points
if [[ -s $2 ]]; then
: # >&2 printf 'Metadata already extracted: %s\n' "$2"
else
xmllint --noblanks --xpath '/OverDriveMedia/text()' "$1" \
| sed -e '1s/^<!\[CDATA\[//' -e '$s/]]>$//' \
-e 's/ & / \& /g' \
-e 's/ /\ /g' \
-e 's/¡/\¡/g' \
-e 's/¢/\¢/g' \
-e 's/£/\£/g' \
-e 's/¥/\¥/g' \
-e 's/§/\§/g' \
-e 's/©/\©/g' \
-e 's/ª/\ª/g' \
-e 's/«/\«/g' \
-e 's/®/\®/g' \
-e 's/°/\°/g' \
-e 's/²/\²/g' \
-e 's/³/\³/g' \
-e 's/¶/\¶/g' \
-e 's/º/\º/g' \
-e 's/»/\»/g' \
-e 's/¿/\¿/g' \
-e 's/À/\À/g' \
-e 's/Á/\Á/g' \
-e 's/Å/\Å/g' \
-e 's/Æ/\Æ/g' \
-e 's/Ç/\Ç/g' \
-e 's/È/\È/g' \
-e 's/É/\É/g' \
-e 's/Ì/\Ì/g' \
-e 's/Í/\Í/g' \
-e 's/Ò/\Ò/g' \
-e 's/Ó/\Ó/g' \
-e 's/Ö/\Ö/g' \
-e 's/×/\×/g' \
-e 's/Ø/\Ø/g' \
-e 's/Ù/\Ù/g' \
-e 's/Ú/\Ú/g' \
-e 's/Ü/\Ü/g' \
-e 's/Ý/\Ý/g' \
-e 's/à/\à/g' \
-e 's/á/\á/g' \
-e 's/è/\è/g' \
-e 's/é/\é/g' \
-e 's/ì/\ì/g' \
-e 's/í/\í/g' \
-e 's/ò/\ò/g' \
-e 's/ó/\ó/g' \
-e 's/ö/\ö/g' \
-e 's/ù/\ù/g' \
-e 's/ú/\ú/g' \
-e 's/ü/\ü/g' \
-e 's/ý/\ý/g' \
-e 's/þ/\þ/g' \
-e 's/Š/\Š/g' \
-e 's/š/\š/g' \
-e 's/–/\–/g' \
-e 's/—/\—/g' \
-e 's/‘/\‘/g' \
-e 's/’/\’/g' \
-e 's/“/\“/g' \
-e 's/”/\”/g' \
-e 's/•/\•/g' \
-e 's/…/\…/g' \
-e 's/€/\€/g' \
> "$2"
fi
}
extract_author() {
# Usage: extract_author book.odm.metadata
# Most Creator/@role values for authors are simply "Author" but some are "Author and narrator"
xmllint --xpath "string(//Creator[starts-with(@role, 'Author')])" "$1"
}
extract_title() {
# Usage: extract_title book.odm.metadata
xmllint --xpath '//Title/text()' "$1" \
| _sanitize
}
extract_duration() {
# Usage: extract_duration book.odm
#
# awk: `-F :` split on colons; for MM:SS, MM=>$1, SS=>$2
# `$1*60 + $2` converts MM:SS into seconds
# `{sum += ...} END {print sum}` output total sum (seconds)
_xmllint_iter_xpath '//Part' "$1" '/@duration' \
| awk -F : '{sum += $1*60 + $2} END {print sum}'
}
extract_filenames() {
# Usage: extract_filenames book.odm
_xmllint_iter_xpath '//Part' "$1" '/@filename' \
| sed -e "s/{/%7B/" -e "s/}/%7D/"
}
extract_coverUrl() {
# Usage: extract_coverUrl book.odm.metadata
_xmllint_iter_xpath '//CoverUrl' "$1" '/text()' \
| sed -e "s/{/%7B/" -e "s/}/%7D/"
}
download() {
# Usage: download book.odm
#
license_path=$1.license
acquire_license "$1" "$license_path"
>&2 printf 'Using License=%s\n' "$(cat "$license_path")"
# the license XML specifies a default namespace, so the XPath is a bit awkward
ClientID=$(xmllint --xpath '//*[local-name()="ClientID"]/text()' "$license_path")
>&2 printf 'Using ClientID=%s from License\n' "$ClientID"
# extract metadata
metadata_path=$1.metadata
extract_metadata "$1" "$metadata_path"
# extract the author and title from the metadata
Author=$(extract_author "$metadata_path")
>&2 printf 'Using Author=%s\n' "$Author"
Title=$(extract_title "$metadata_path")
>&2 printf 'Using Title=%s\n' "$Title"
# prepare to download the parts
baseurl=$(xmllint --xpath 'string(//Protocol[@method="download"]/@baseurl)' "$1")
# process substitutions in output directory pattern
dir="${DIR_FORMAT//@AUTHOR/$Author}"
dir="${dir//@TITLE/$Title}"
>&2 printf 'Creating directory %s\n' "$dir"
mkdir -p "$dir"
# For each of the parts of the book listed in `Novel.odm`, make a request to another OverDrive endpoint,
# which will validate the request and redirect to the actual MP3 file on their CDN,
# and save the result into a folder in the current directory, named like `dir/Part0N.mp3`.
for path in $(extract_filenames "$1"); do
# delete from path up until the last hyphen to the get Part0N.mp3 suffix
suffix=${path##*-}
output="$dir/$suffix"
if [[ -e $output ]]; then
>&2 printf 'Output already exists: %s\n' "$output"
else
>&2 printf 'Downloading %s\n' "$output"
if curl "${CURLOPTS[@]}" \
-H "License: $(cat "$license_path")" \
-H "ClientID: $ClientID" \
-o "$output" \
"$baseurl/$path"; then
>&2 printf 'Downloaded %s successfully\n' "$output"
else
STATUS=$?
>&2 printf 'Failed trying to download %s\n' "$output"
rm -f "$output"
return $STATUS
fi
fi
done
# Loop over CoverUrl(s), since there may be none
for CoverUrl in $(extract_coverUrl "$metadata_path" | head -1); do
>&2 printf 'Using CoverUrl=%s\n' "$CoverUrl"
if [[ -n "$CoverUrl" ]]; then
cover_output=$dir/folder.jpg
>&2 printf 'Downloading %s\n' "$cover_output"
if curl "${CURLOPTS[@]}" \
-o "$cover_output" \
"$CoverUrl"; then
>&2 printf 'Downloaded cover image successfully\n'
else
STATUS=$?
>&2 printf 'Failed trying to download cover image\n'
rm -f "$cover_output"
return $STATUS
fi
else
>&2 printf 'Cover image not available\n'
fi
done
}
early_return() {
# Usage: early_return book.odm
#
# return is a bash keyword, so we can't use that as the name of the function :(
# Read the EarlyReturnURL tag from the input odm file
EarlyReturnURL=$(xmllint --xpath '/OverDriveMedia/EarlyReturnURL/text()' "$1")
>&2 printf 'Using EarlyReturnURL=%s\n' "$EarlyReturnURL"
# now all we have to do is hit that URL
curl "${CURLOPTS[@]}" "$EarlyReturnURL"
# that response doesn't have a newline, so one more superfluous log to clean up:
>&2 printf '\nFinished returning book\n'
}
HEADER_PRINTED=
info() {
# Usage: info book.odm
if [[ -z $HEADER_PRINTED ]]; then
printf '%s\t%s\t%s\n' author title duration
HEADER_PRINTED=1
fi
metadata_path=$1.metadata
extract_metadata "$1" "$metadata_path"
printf '%s\t%s\t%d\n' "$(extract_author "$metadata_path")" "$(extract_title "$metadata_path")" "$(extract_duration "$1")"
}
metadata() {
# Usage: metadata book.odm
metadata_path=$1.metadata
extract_metadata "$1" "$metadata_path"
xmllint --format "$metadata_path" | sed 1d
}
# now actually loop over the media files and commands
for ODM in "${MEDIA[@]}"; do
for COMMAND in "${COMMANDS[@]}"; do
case $COMMAND in
download)
download "$ODM"
;;
return)
early_return "$ODM"
;;
info)
info "$ODM"
;;
metadata)
metadata "$ODM"
;;
*)
>&2 printf 'Unrecognized command: %s\n' "$COMMAND"
exit 1
;;
esac
done
done