diff options
author | Joris | 2023-01-21 14:10:47 +0100 |
---|---|---|
committer | Joris | 2023-01-21 14:10:47 +0100 |
commit | 25abf9bc7fd3e6f5b5aabf745cef7d217cde4262 (patch) | |
tree | d3ef6f2be1b117cfe5c75f5cd22408b2f47088f0 /bin/get-data | |
parent | 424cabd49593b13470be1868cf75349b1830929c (diff) |
Setup initial view of covers
Diffstat (limited to 'bin/get-data')
-rwxr-xr-x | bin/get-data | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/bin/get-data b/bin/get-data new file mode 100755 index 0000000..0fbbd2f --- /dev/null +++ b/bin/get-data @@ -0,0 +1,23 @@ +#!/usr/bin/env bash +set -euo pipefail +cd $(dirname "$0")/.. + +if [ "$#" == 1 ]; then + BOOK_DIR="$1" +else + echo "usage: $0 path-to-book-directory" + exit 1 +fi + +echo "const books = [" + +for METADATA in $(find "$BOOK_DIR" -name 'metadata.json'); do + DIR=$(dirname "$METADATA") + COVER=$(ls $DIR/cover.*) + + cat "$METADATA" | head -n -1 + echo ", \"cover\": \"$COVER\"" + echo "}," +done + +echo "]" |