3 # bpgallery.sh - builds a simple 'gallery' from a collection of images
4 # Copyright (C) 2004 Brett Parker <iDunno@sommitrealweird.co.uk>
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 function bpgallery_default_head() {
27 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "xhtml11.dtd">
28 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
30 <title>${TITLE}</title>
31 <link rel="stylesheet" href="style.css" type="text/css" />
37 function bpgallery_default_description() {
44 function bpgallery_default_thumbsline() {
46 <div class="thumbnail"><a href="$filename"><img src="icons/$filename" /></a><div class="caption">$caption</div></div>
50 function bpgallery_default_tail() {
57 function bpgallery_default_stylesheet() {
62 font-family: sans-serif;
71 height: ${MAXHEIGHT}px;
90 if [[ -e /usr/local/etc/bpgallery/config ]] ; then
91 . /usr/local/etc/bpgallery/config
94 if [[ -e /etc/bpgallery/config ]] ; then
95 . /etc/bpgallery/config
98 if [[ -e $HOME/.bpgallery.rc ]]; then
102 if [[ -z ${BPGALLERY_THEME} ]]; then
103 BPGALLERY_THEME=default
106 if [[ -e $HOME/.bpgallery.themes/${BPGALLERY_THEME} ]]; then
107 . $HOME/.bpgallery.themes/${BPGALLERY_THEME}
108 elif [[ -e /usr/local/etc/bpgallery/themes/${BPGALLERY_THEME} ]]; then
109 . /usr/local/etc/bpgallery/themes/${BPGALLERY_THEME}
110 elif [[ -e /etc/bpgallery/themes/${BPGALLERY_THEME} ]]; then
111 . /etc/bpgallery/themes/${BPGALLERY_THEME}
114 if [[ -z $TITLE ]]; then
115 TITLE="Photo Gallery"
118 if [[ -z $CONVERTTOOL ]]; then
122 if [[ -z $FINDCOMMAND ]]; then
126 if [[ -z $XARGSCOMMAND ]]; then
130 if [[ -z $ECHOCOMMAND ]]; then
134 if [[ -z $SORTCOMMAND ]]; then
138 if [[ -z $IDENTIFYCOMMAND ]]; then
139 IDENTIFYCOMMAND=identify
142 if [[ -z $HEADCOMMAND ]]; then
146 if [[ -z $GREPCOMMAND ]]; then
150 if [[ -z $SEDCOMMAND ]]; then
154 if [[ -z $WIDTH ]]; then
158 if [[ -z $IMAGEEXTENSIONS ]]; then
159 IMAGEEXTENSIONS="jpeg jpg gif png";
162 if [[ -z $WCCOMMAND ]]; then
166 if [[ -z $CAPTIONHEIGHT ]]; then
170 if [[ -z $DESCRIPTION ]]; then
174 if declare -F "bpgallery_${BPGALLERY_THEME}_head" > /dev/null ; then
175 BPGALLERY_HEAD_FUNCTION="bpgallery_${BPGALLERY_THEME}_head"
177 BPGALLERY_HEAD_FUNCTION="bpgallery_default_head"
180 if declare -F "bpgallery_${BPGALLERY_THEME}_description" > /dev/null ; then
181 BPGALLERY_DESCRIPTION_FUNCTION="bpgallery_${BPGALLERY_THEME}_description"
183 BPGALLERY_DESCRIPTION_FUNCTION="bpgallery_default_description"
186 if declare -F "bpgallery_${BPGALLERY_THEME}_thumbsline" > /dev/null ; then
187 BPGALLERY_THUMBSLINE_FUNCTION="bpgallery_${BPGALLERY_THEME}_thumbsline"
189 BPGALLERY_THUMBSLINE_FUNCTION="bpgallery_default_thumbsline"
192 if declare -F "bpgallery_${BPGALLERY_THEME}_tail" > /dev/null ; then
193 BPGALLERY_TAIL_FUNCTION="bpgallery_${BPGALLERY_THEME}_tail"
195 BPGALLERY_TAIL_FUNCTION="bpgallery_default_tail"
198 if declare -F "bpgallery_${BPGALLERY_THEME}_stylesheet" > /dev/null ; then
199 BPGALLERY_STYLESHEET_FUNCTION="bpgallery_${BPGALLERY_THEME}_stylesheet"
201 BPGALLERY_STYLESHEET_FUNCTION="bpgallery_default_stylesheet"
206 for imageext in $IMAGEEXTENSIONS; do
207 FINDIMAGESOPTIONS=$FINDIMAGESOPTIONS' -o -type f -maxdepth 1 -iname '*.$imageext' -print0'
210 FINDIMAGESOPTIONS=${FINDIMAGESOPTIONS## -o }
215 $0 [--help|--version|<path to images>]
218 displays this help screen
220 displays the version and exits
237 if [[ "$1" == "--help" || "$1" == "-h" ]]; then
242 if [[ "$1" == "--version" || "$1" == "-v" ]]; then
247 if [[ ! -d $1 ]]; then
248 echo "$1 is not a directory"
255 if ( ! $FINDCOMMAND . $FINDIMAGESOPTIONS > /dev/null 2>/dev/null ); then
256 echo "$1 does not contain any images. Quitting."
260 if [ ! -d icons ]; then
263 totalimages=$($FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 --replace echo {} | $WCCOMMAND);
266 $FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 --verbose --max-procs=4 --replace $CONVERTTOOL -resize $WIDTH '{}' 'icons/{}' 2>&1 | while read throwout; do $ECHOCOMMAND done: $currentimage/$totalimages images; currentimage=$((currentimage+1)); done
268 echo done: $totalimages/$totalimages images
270 echo "$1 already contains an icons folder, updating."
272 imagestoupdate=$($FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 --replace $ECHOCOMMAND {} | while read filename; do if [ ! -r "icons/$filename" ] || [ "$filename" -nt "icons/$filename" ]; then $ECHOCOMMAND $filename; fi; done | $WCCOMMAND)
274 echo "images to update: $imagestoupdate"
279 $FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 --replace $ECHOCOMMAND {} | while read filename; do if [ ! -r "icons/$filename" ] || [ "$filename" -nt "icons/$filename" ] ; then $ECHOCOMMAND $filename; fi; done | $XARGSCOMMAND --verbose --max-procs=4 --replace $CONVERTTOOL -resize $WIDTH '{}' 'icons/{}' 2>&1 | while read throwout; do $ECHOCOMMAND done: $currentimage/$imagestoupdate images; currentimage=$((currentimage+1)); done
280 echo done: $imagestoupdate/$imagestoupdate images
283 if [ -r description.txt ] ; then
284 DESCRIPTION=$($SEDCOMMAND -e '1 { s/^/<p>/; }; /^$/ { s,$,</p><p>,; }; $ { s,$,</p>, };' description.txt)
290 $BPGALLERY_HEAD_FUNCTION > index.html
291 $BPGALLERY_DESCRIPTION_FUNCTION >> index.html
293 $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; $BPGALLERY_THUMBSLINE_FUNCTION; done >> index.html
295 $BPGALLERY_TAIL_FUNCTION >> index.html
299 MAXHEIGHT=$($FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 $IDENTIFYCOMMAND -format "%h\n" | $GREPCOMMAND -v "^$" | $SORTCOMMAND -g -r | $HEADCOMMAND -n 1)
300 MAXWIDTH=$($FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 $IDENTIFYCOMMAND -format "%w\n" | $GREPCOMMAND -v "^$" | $SORTCOMMAND -g -r | $HEADCOMMAND -n 1)
304 # add a bit to the maxheight for the size of the caption
305 MAXHEIGHT=$((MAXHEIGHT+$CAPTIONHEIGHT))
307 $BPGALLERY_STYLESHEET_FUNCTION > style.css