aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/gutenread
blob: 029cccf314cde1a45bbb0c81a4d6fdff34d80b69 (plain) (blame)
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
#!/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.
#          To dowload and read in epub format set READER to an epub reader like
#          epr: https://github.com/wustho/epr
#
#          More on EBOOK_ID:
#          Wuthering Heights by Emily Brontë is at https://www.gutenberg.org/ebooks/768
#          So EBOOK_ID would be 768
#
#          Downloaded ebooks are at ${XDG_CACHE_HOME:-$HOME/.cache}/nnn/gutenbooks/
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana

EBOOK_ID=
DIR="${XDG_CACHE_HOME:-$HOME/.cache}/nnn/gutenbooks/$EBOOK_ID"
BROWSE_LINK="http://www.gutenberg.org/ebooks/search/?sort_order=downloads"
BROWSER=w3m
READER=

if [ -n "$EBOOK_ID" ]; then
    if [ ! -e "$DIR" ]; then
        mkdir -p "$DIR"
        cd "$DIR" || exit 1

        if [ -z "$READER" ]; then
            curl -L -O "https://www.gutenberg.org/files/$EBOOK_ID/$EBOOK_ID-h.zip"
            unzip "$EBOOK_ID"-h.zip
        else
            curl -L -o "$EBOOK_ID".epub "http://www.gutenberg.org/ebooks/$EBOOK_ID.epub.noimages"
        fi
    fi

    if [ -d "$DIR" ]; then
        if [ -z "$READER" ]; then
            "$BROWSER" "$DIR/$EBOOK_ID-h/$EBOOK_ID-h.htm"
        else
            "$READER" "$DIR/$EBOOK_ID.epub"
        fi
    fi
else
    "$BROWSER" "$BROWSE_LINK"
fi