nnn/plugins/gutenread

50 lines
1.6 KiB
Plaintext
Raw Permalink Normal View History

#!/usr/bin/env sh
# Description: Browse Project Gutenberg catalogue by popularity, then download
# and read a book of your choice.
#
# Details: Set the variable EBOOK_ID to download in html format and read in w3m.
# Clear EBOOK_ID to browse available ebooks by popularity and set it to
# the ID once you find an interesting one.
2021-01-18 12:55:28 +00:00
# To download and read in epub format set READER to an epub reader like
2019-10-13 05:41:39 +00:00
# epr: https://github.com/wustho/epr
#
2019-10-13 05:41:39 +00:00
# More on EBOOK_ID:
# Wuthering Heights by Emily Brontë is at https://www.gutenberg.org/ebooks/768
# So EBOOK_ID would be 768
#
2019-10-13 05:41:39 +00:00
# Downloaded ebooks are at ${XDG_CACHE_HOME:-$HOME/.cache}/nnn/gutenbooks/
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana
2022-07-16 17:47:32 +00:00
EBOOK_ID="${EBOOK_ID:-""}"
DIR="${XDG_CACHE_HOME:-$HOME/.cache}/nnn/gutenbooks/$EBOOK_ID"
BROWSE_LINK="https://www.gutenberg.org/ebooks/search/?sort_order=downloads"
BROWSER="${BROWSER:-w3m}"
2022-07-16 17:47:32 +00:00
READER="${READER:-""}"
if [ -n "$EBOOK_ID" ]; then
2019-11-21 20:44:25 +00:00
if [ ! -e "$DIR" ]; then
mkdir -p "$DIR"
cd "$DIR" || exit 1
2019-10-13 05:41:39 +00:00
if [ -z "$READER" ]; then
curl -L -O "https://www.gutenberg.org/files/$EBOOK_ID/$EBOOK_ID-h.zip"
2019-10-13 05:41:39 +00:00
unzip "$EBOOK_ID"-h.zip
else
curl -L -o "$EBOOK_ID".epub "https://www.gutenberg.org/ebooks/$EBOOK_ID.epub.noimages"
2019-10-13 05:41:39 +00:00
fi
fi
2019-11-21 20:44:25 +00:00
if [ -d "$DIR" ]; then
2019-10-13 05:41:39 +00:00
if [ -z "$READER" ]; then
"$BROWSER" "$DIR/$EBOOK_ID-h/$EBOOK_ID-h.htm"
2019-10-13 05:41:39 +00:00
else
"$READER" "$DIR/$EBOOK_ID.epub"
2019-10-13 05:41:39 +00:00
fi
fi
else
2019-11-21 20:44:25 +00:00
"$BROWSER" "$BROWSE_LINK"
fi