added new script to list all book info from bookcodes.db
[project-aon.git] / common / scripts / copy-ebooks.sh
1 #!/usr/bin/env bash
2 #
3 # Copy ebook files for the specified book(s) to a directory structure that's
4 # ready to be pushed to the public website.
5 #
6 # Examples:
7 #
8 #     copy-ebooks.sh 05sots
9 #
10 #     list-bookcodes-by-series.sh gs | xargs copy-ebooks.sh
11
12 if [ ! -d "$AONDIR" ]; then
13     >&2 echo "Please set the AONDIR environment variable"
14     exit 1
15 fi
16 CURR_DIR=`pwd`
17
18 if [ "$AONDIR" -ef "$CURR_DIR" ]; then
19     >&2 echo "Current directory is the same as AONDIR: giving up"
20     exit 1
21 fi
22
23 BASE_DIR="$AONDIR/common/epub"
24
25 for book in $@
26 do
27     row=( $($AONDIR/common/scripts/list-book-info.sh $book) )
28
29     lang=${row[1]}
30     series=${row[2]}
31
32     source_dir="$BASE_DIR/$book"
33
34     for format in epub mobi fb2 pdb lrf
35     do
36         output_dir="$CURR_DIR/$lang/$format/$series"
37         mkdir -p "$output_dir"
38         cp -av "$source_dir/$book.$format" "$output_dir"
39     done
40 done