X-Git-Url: https://git.sommitrealweird.co.uk/bpgallery.git/blobdiff_plain/ef3db06c01a739556cee4183a8a66274459629fb..4e9ad17280e911da8026f21269285aed622de238:/bpgallery.sh diff --git a/bpgallery.sh b/bpgallery.sh index 6d38f0f..f6fdfed 100755 --- a/bpgallery.sh +++ b/bpgallery.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# makegallery.sh - builds a simple 'gallery' from a collection of images +# bpgallery.sh - builds a simple 'gallery' from a collection of images # Copyright (C) 2004 Brett Parker # # This program is free software; you can redistribute it and/or modify @@ -19,38 +19,183 @@ set -f -VERSION="0.9.2" +VERSION="1.0.2+arch" + +function bpgallery_default_head() { +cat < + + + + ${TITLE} + + + +END +} + +declare -rf bpgallery_default_head + +function bpgallery_default_description() { +cat <${TITLE} + ${DESCRIPTION} +END +} + +declare -rf bpgallery_default_description + +function bpgallery_default_thumbsline() { +if [[ -z $caption ]]; then + caption_alt=Unknown +else + caption_alt=$caption +fi +cat << END +
$caption_alt
$caption
+END +} + +declare -rf bpgallery_default_thumbsline + +function bpgallery_default_tail() { +cat << END + + +END +} + +declare -rf bpgallery_default_tail + +function bpgallery_default_stylesheet() { +cat </dev/null +fi + +if [[ -e /etc/bpgallery/config ]] ; then + . /etc/bpgallery/config 2>/dev/null +fi + +if [[ -e $HOME/.bpgallery.rc ]]; then + . $HOME/.bpgallery.rc 2>/dev/null +fi + +if [[ -e $1 && -d $1 && -e $1/.bpgallery.rc ]]; then + . $1/.bpgallery.rc 2>/dev/null +fi + +if [[ -z ${BPGALLERY_THEME} ]]; then + BPGALLERY_THEME=default +fi + +if [[ -e $HOME/.bpgallery.themes/${BPGALLERY_THEME} ]]; then + . $HOME/.bpgallery.themes/${BPGALLERY_THEME} 2>/dev/null +elif [[ -e /usr/local/etc/bpgallery/themes/${BPGALLERY_THEME} ]]; then + . /usr/local/etc/bpgallery/themes/${BPGALLERY_THEME} 2>/dev/null +elif [[ -e /etc/bpgallery/themes/${BPGALLERY_THEME} ]]; then + . /etc/bpgallery/themes/${BPGALLERY_THEME} 2>/dev/null +fi if [[ -z $TITLE ]]; then TITLE="Photo Gallery" fi if [[ -z $CONVERTTOOL ]]; then - CONVERTTOOL="/usr/bin/convert" + CONVERTTOOL=convert fi if [[ -z $FINDCOMMAND ]]; then - FINDCOMMAND=/usr/bin/find + FINDCOMMAND=find fi if [[ -z $XARGSCOMMAND ]]; then - XARGSCOMMAND=/usr/bin/xargs + XARGSCOMMAND=xargs fi if [[ -z $ECHOCOMMAND ]]; then - ECHOCOMMAND=/bin/echo + ECHOCOMMAND=echo fi if [[ -z $SORTCOMMAND ]]; then - SORTCOMMAND=/usr/bin/sort + SORTCOMMAND=sort fi if [[ -z $IDENTIFYCOMMAND ]]; then - IDENTIFYCOMMAND=/usr/bin/identify + IDENTIFYCOMMAND=identify fi if [[ -z $HEADCOMMAND ]]; then - HEADCOMMAND=/usr/bin/head + HEADCOMMAND=head +fi + +if [[ -z $GREPCOMMAND ]]; then + GREPCOMMAND=grep +fi + +if [[ -z $SEDCOMMAND ]]; then + SEDCOMMAND=sed fi if [[ -z $WIDTH ]]; then @@ -61,16 +206,55 @@ if [[ -z $IMAGEEXTENSIONS ]]; then IMAGEEXTENSIONS="jpeg jpg gif png"; fi +if [[ -z $WCCOMMAND ]]; then + WCCOMMAND="wc -l" +fi + +if [[ -z $CAPTIONHEIGHT ]]; then + CAPTIONHEIGHT=75 +fi + +if declare -F "bpgallery_${BPGALLERY_THEME}_head" > /dev/null ; then + BPGALLERY_HEAD_FUNCTION="bpgallery_${BPGALLERY_THEME}_head" +else + BPGALLERY_HEAD_FUNCTION="bpgallery_default_head" +fi + +if declare -F "bpgallery_${BPGALLERY_THEME}_description" > /dev/null ; then + BPGALLERY_DESCRIPTION_FUNCTION="bpgallery_${BPGALLERY_THEME}_description" +else + BPGALLERY_DESCRIPTION_FUNCTION="bpgallery_default_description" +fi + +if declare -F "bpgallery_${BPGALLERY_THEME}_thumbsline" > /dev/null ; then + BPGALLERY_THUMBSLINE_FUNCTION="bpgallery_${BPGALLERY_THEME}_thumbsline" +else + BPGALLERY_THUMBSLINE_FUNCTION="bpgallery_default_thumbsline" +fi + +if declare -F "bpgallery_${BPGALLERY_THEME}_tail" > /dev/null ; then + BPGALLERY_TAIL_FUNCTION="bpgallery_${BPGALLERY_THEME}_tail" +else + BPGALLERY_TAIL_FUNCTION="bpgallery_default_tail" +fi + +if declare -F "bpgallery_${BPGALLERY_THEME}_stylesheet" > /dev/null ; then + BPGALLERY_STYLESHEET_FUNCTION="bpgallery_${BPGALLERY_THEME}_stylesheet" +else + BPGALLERY_STYLESHEET_FUNCTION="bpgallery_default_stylesheet" +fi + FINDIMAGESOPTIONS="" for imageext in $IMAGEEXTENSIONS; do - FINDIMAGESOPTIONS=$FINDIMAGESOPTIONS' -o -type f -maxdepth 1 -iname '*.$imageext' -print0' + FINDIMAGESOPTIONS=$FINDIMAGESOPTIONS' -o -type f -iname '*.$imageext' -print0' done FINDIMAGESOPTIONS=${FINDIMAGESOPTIONS## -o } +FINDIMAGESOPTIONS='-maxdepth 1 '${FINDIMAGESOPTIONS} -usage() { - cat <] @@ -82,14 +266,34 @@ Usage: END } -version() { - cat <&1 | while read throwout; do $ECHOCOMMAND done: $currentimage/$imagestoupdate images; currentimage=$((currentimage+1)); done + $ECHOCOMMAND done: $imagestoupdate/$imagestoupdate images + $ECHOCOMMAND "Completed generating thumbs for $totalimages images" +} + if [[ -z $1 ]]; then - echo "No path given" + $ECHOCOMMAND "No path given" usage exit 1 fi @@ -105,7 +309,7 @@ if [[ "$1" == "--version" || "$1" == "-v" ]]; then fi if [[ ! -d $1 ]]; then - echo "$1 is not a directory" + $ECHOCOMMAND "$1 is not a directory" usage exit 2 fi @@ -113,75 +317,39 @@ fi cd "$1" if ( ! $FINDCOMMAND . $FINDIMAGESOPTIONS > /dev/null 2>/dev/null ); then - echo "$1 does not contain any images. Quitting." + $ECHOCOMMAND "$1 does not contain any images. Quitting." exit 4 fi if [ ! -d icons ]; then mkdir icons -else - echo "$1 already contains an icons folder, stopping" - exit 3 fi -$FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 --replace $CONVERTTOOL -resize $WIDTH '{}' 'icons/{}' +generate_thumbs -cat < index.html - - - - - ${TITLE} - - - -END +if [ -r description.txt ] ; then + DESCRIPTION=$($SEDCOMMAND -e '1 { s/^/

/; }; /^$/ { s,$,

,; }; $ { s,$,

, };' description.txt) +else + DESCRIPTION="" +fi -$FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 --replace $ECHOCOMMAND {} |$SORTCOMMAND -g | sed -e 's#^./\(.*\)$#
#' >> index.html +$BPGALLERY_HEAD_FUNCTION > index.html +$BPGALLERY_DESCRIPTION_FUNCTION >> index.html -cat <> index.html - - -END +$FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 --replace $ECHOCOMMAND {} |$SORTCOMMAND -g | while read filename; do filename=${filename#./}; if [ -r captions.txt ]; then caption=$($GREPCOMMAND -E "^$filename " captions.txt); caption=${caption#* }; else caption=""; fi; filename=$(bpgallery_escape_url "$filename"); $BPGALLERY_THUMBSLINE_FUNCTION; done >> index.html +$BPGALLERY_TAIL_FUNCTION >> index.html cd icons -for imageext in $IMAGEEXTENSIONS; do - if ( ls "*.$imageext" > /dev/null 2>/dev/null ); then - TEMPMAX=$($IDENTIFYCOMMAND *.$imageext | grep "Geometry:" | sed -r 's#^.*Geometry:.*?[0-9]+x([0-9]+)\+.*$#\1#' | $SORTCOMMAND -g -r | $HEADCOMMAND -n 1) - if [[ $TEMPMAX -gt $MAXHEIGHT ]]; then - MAXHEIGHT=$TEMPMAX - fi - fi -done +MAXHEIGHT=$($FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 $IDENTIFYCOMMAND -format "%h\n" | $GREPCOMMAND -v "^$" | $SORTCOMMAND -g -r | $HEADCOMMAND -n 1) +MAXWIDTH=$($FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 $IDENTIFYCOMMAND -format "%w\n" | $GREPCOMMAND -v "^$" | $SORTCOMMAND -g -r | $HEADCOMMAND -n 1) cd .. +# add a bit to the maxheight for the size of the caption +MAXHEIGHT=$((MAXHEIGHT+$CAPTIONHEIGHT)) -cat < style.css -body { - background: white; - color: black; - font-family: sans-serif; - font-size: 12pt; -} - -div.thumbnail { - float: left; - padding: 20px; - border: 0px; - width: ${WIDTH}px; - height: ${MAXHEIGHT}px; -} - -a { - border: 0px; -} - -img { - border: 0px; -} -END +$BPGALLERY_STYLESHEET_FUNCTION > style.css