X-Git-Url: https://git.sommitrealweird.co.uk/bpgallery.git/blobdiff_plain/8403b5c39a11ca27ca154ce2f9898a7dfe0dbae0..5da939c907eff9831f8a9140b8589f51b7bbf07a:/bpgallery.sh diff --git a/bpgallery.sh b/bpgallery.sh index 9e4b64c..4cc7450 100755 --- a/bpgallery.sh +++ b/bpgallery.sh @@ -19,7 +19,7 @@ set -f -VERSION="1.0.1+arch" +VERSION="1.1+arch" function bpgallery_default_head() { cat <$caption_alt
$caption
+
$caption_alt
$caption
END } @@ -70,18 +70,18 @@ declare -rf bpgallery_default_tail function bpgallery_default_stylesheet() { cat <${caption} + +
+ ${linkstart}${caption}${linkend} +
+END + $BPGALLERY_TAIL_FUNCTION +} + +declare -rf bpgallery_default_page + function bpgallery_escape_url() { temp=$1 temp=${temp//\%/%25} @@ -117,7 +173,7 @@ function bpgallery_escape_url() { temp=${temp//\?/%3F} temp=${temp//@/%40} temp=${temp//\"/%22} - echo $temp + $ECHOCOMMAND $temp } declare -rf bpgallery_escape_url @@ -142,11 +198,18 @@ 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 +if [[ ! -z ${BPGALLERY_THEME_DIR} ]] && \ + [[ -e ${BPGALLERY_THEME_DIR}/${BPGALLERY_THEME} ]]; then + . ${BPGALLERY_THEME_DIR}/${BPGALLERY_THEME} 2>/dev/null +elif [[ -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 @@ -210,6 +273,34 @@ if [[ -z $CAPTIONHEIGHT ]]; then CAPTIONHEIGHT=75 fi +if [[ -z $OUTPUTHTML ]]; then + OUTPUTHTML=0 +fi + +if [[ -z $GENERATEPAGESFORFULLSIZE ]]; then + GENERATEPAGESFORFULLSIZE=0 +fi + +if [[ -z $GENERATEPAGESFORMEDIUMSIZE ]]; then + GENERATEPAGESFORMEDIUMSIZE=1 +fi + +if [[ -z $MEDIUMWIDTH ]]; then + MEDIUMWIDTH=400 +fi + +if [[ -z $INDEXDOCUMENT ]]; then + INDEXDOCUMENT=index.html +fi + +if [[ $GENERATEPAGESFORFULLSIZE != 0 ]]; then + if declare -F "bpgallery_${BPGALLERY_THEME}_page" > /dev/null ; then + BPGALLERY_PAGE_FUNCTION="bpgallery_${BPGALLERY_THEME}_page" + else + BPGALLERY_PAGE_FUNCTION="bpgallery_default_page" + fi +fi + if declare -F "bpgallery_${BPGALLERY_THEME}_head" > /dev/null ; then BPGALLERY_HEAD_FUNCTION="bpgallery_${BPGALLERY_THEME}_head" else @@ -268,8 +359,166 @@ Version: $VERSION END } +function generate_resized_images() { + $ECHOCOMMAND "Generating $2" + currentimage=0 + totalimages=$($FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 -I {} $ECHOCOMMAND {} | $WCCOMMAND); + imagestoupdate=$($FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 -I {} $ECHOCOMMAND {} | while read filename; do filename=${filename//\"/\\\"}; if [ ! -r "$2/$filename" ] || [ "$filename" -nt "$2/$filename" ] || [ $($IDENTIFYCOMMAND -format "%w" "$2/$filename") -ne $1 ]; then $ECHOCOMMAND $filename; fi; done | $WCCOMMAND) + + if [ $totalimages -eq $imagestoupdate ]; then + $ECHOCOMMAND "Regenerating all $2" + elif [ $imagestoupdate -eq 0 ]; then + $ECHOCOMMAND "No Updated $2, not regenerating" + return + else + $ECHOCOMMAND "Generating $imagestoupdate of $totalimages $2" + fi + + $FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 -I {} $ECHOCOMMAND {} | while read filename; do tempfilename=${filename//\"/\\\"/}; if [ ! -r "$2/$tempfilename" ] || [ "$tempfilename" -nt "$2/$tempfilename" ] || [ $($IDENTIFYCOMMAND -format "%w" "$2/$filename") -ne $1 ]; then $ECHOCOMMAND -n $filename; $ECHOCOMMAND -n -e "\000"; fi; done | $XARGSCOMMAND -0 --verbose --max-procs=4 -I {} $CONVERTTOOL -resize $1 '{}' $2/'{}' 2>&1 | while read throwout; do $ECHOCOMMAND done: $currentimage/$imagestoupdate images; currentimage=$((currentimage+1)); done + $ECHOCOMMAND done: $imagestoupdate/$imagestoupdate images + $ECHOCOMMAND "Completed generating $2 for $totalimages images" +} + +function generate_thumbs() { + if [ ! -d icons ]; then + mkdir icons + fi + + if [ ! -w icons ]; then + $ECHOCOMMAND "Can't write to icons directory, exiting" + exit 16 + fi + + generate_resized_images $WIDTH icons +} + +function generate_medium() { + if [ ! -d medium ]; then + mkdir medium + fi + + if [ ! -w medium ]; then + $ECHOCOMMAND "Can't write to medium directory, exiting" + fi + + generate_resized_images $MEDIUMWIDTH medium +} + +function generate_pages() { + $ECHOCOMMAND "Generating Pages" + previouspage="" + currentpage="" + nextpage="" + previousimage="" + currentimage="" + nextimage="" + extra="" + extradir="" + addlinks=0 + + if [ ! -z $1 ]; then + extra=$1 + fi + + if [ ! -z $2 ]; then + extradir=$2/ + addlinks=1 + fi + + if [ -z $1 ] && [ -z $2 ] && [[ $GENERATEPAGESFORMEDIUMSIZE != 0 ]]; then + addlinks=2 + fi + + $FINDCOMMAND . $FINDIMAGESOPTIONS | \ + $XARGSCOMMAND -0 -I {} $ECHOCOMMAND {} | \ + $SORTCOMMAND -g | \ + while read imagefilename; do + previousimage=$currentimage + currentimage=$nextimage + nextimage=${imagefilename#./} + addlink="" + + if [[ $addlinks == 1 ]]; then + if [[ $GENERATEPAGESFORFULLSIZE != 0 ]]; then + addlink=${currentimage}.html + else + addlink=${currentimage} + fi + fi + + if [[ $addlinks == 2 ]]; then + addlink=${currentimage}__medium.html + fi + + previouspage=$currentpage + currentpage=$nextpage + nextpage=${imagefilename}${extra}.html + filename=${extradir}${currentimage} + generate_general_page "$previouspage" "$currentpage" "$nextpage" $addlink + echo $nextimage + done | tail -n 2 | ( + read previouspage + read currentpage + addlink="" + + if [[ $addlinks == 1 ]]; then + if [[ $GENERATEPAGESFORFULLSIZE ]]; then + addlink=${currentpage}.html + else + addlink=${currentpage} + fi + fi + + if [[ $addlinks == 2 ]]; then + addlink=${nextimage}__medium.html + fi + + filename=${extradir}${currentpage} + currentpage=${currentpage}${extra}.html + previouspage=${previouspage}${extra}.html + nextpage="" + generate_general_page "$previouspage" "$currentpage" "" $addlink + ) +} + +function generate_medium_pages() { + generate_pages __medium medium +} + +function generate_general_page() { + + if [[ -z $1 ]]; then + previouspage="" + fi + + if [[ -z $2 ]]; then + currentpage="" + return + fi + + if [[ -z $3 ]]; then + nextpage="" + fi + + if [[ ! -z $4 ]]; then + linklocation=$4 + fi + + if [ -r captions.txt ]; then + caption=$($GREPCOMMAND -E "^${filename} " captions.txt); caption=${caption#* } + else + caption="" + fi + + $BPGALLERY_PAGE_FUNCTION > "$currentpage" +} + +if [[ $OUTPUTHTML != 0 ]]; then + $ECHOCOMMAND "
"
+fi
+
 if [[ -z $1 ]]; then
-	echo "No path given"
+	$ECHOCOMMAND "No path given"
 	usage
 	exit 1
 fi
@@ -285,7 +534,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
@@ -293,31 +542,34 @@ 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
+if [ ! -w . ]; then
+	$ECHOCOMMAND "Can't write to images directory, exiting"
+	exit 8
+fi
 
-	totalimages=$($FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 --replace echo {} | $WCCOMMAND);
-	currentimage=0
-	
-	$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
-	
-	echo done: $totalimages/$totalimages images
-else
-	echo "$1 already contains an icons folder, updating."
+if [ -e ${INDEXDOCUMENT} ] && [ ! -w ${INDEXDOCUMENT} ]; then
+	$ECHOCOMMAND "Can't write ${INDEXDOCUMENT}, exiting"
+	exit 8
+fi
 
-	imagestoupdate=$($FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 --replace $ECHOCOMMAND {} | while read filename; do filename=${filename//\"/\\\"}; if [ ! -r "icons/$filename" ] || [ "$filename" -nt "icons/$filename" ] || [ $($IDENTIFYCOMMAND -format "%w" "icons/$filename") -ne $WIDTH ]; then $ECHOCOMMAND $filename; fi; done | $WCCOMMAND)
+if [ -e style.css ] && [ ! -w style.css ]; then
+	$ECHOCOMMAND "Can't write style.css, exiting"
+	exit 8
+fi
 
-	echo "images to update: $imagestoupdate"
-	
-	
-	currentimage=0
+generate_thumbs
+
+if [ $GENERATEPAGESFORMEDIUMSIZE != 0 ]; then
+	generate_medium
+	generate_medium_pages
+fi
 
-	$FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 --replace $ECHOCOMMAND {} | while read filename; do tempfilename=${filename//\"/\\\"/}; if [ ! -r "icons/$tempfilename" ] || [ "$tempfilename" -nt "icons/$tempfilename" ] || [ $($IDENTIFYCOMMAND -format "%w" "icons/$filename") -ne $WIDTH ]; then $ECHOCOMMAND -n $filename; $ECHOCOMMAND -n -e "\000"; fi; done | $XARGSCOMMAND -0 --verbose --max-procs=4 --replace $CONVERTTOOL -resize $WIDTH '{}' 'icons/{}' 2>&1 | while read throwout; do $ECHOCOMMAND done: $currentimage/$imagestoupdate images; currentimage=$((currentimage+1)); done
-	echo done: $imagestoupdate/$imagestoupdate images
+if [ $GENERATEPAGESFORFULLSIZE != 0 ]; then
+	generate_pages
 fi
 
 if [ -r description.txt ] ; then
@@ -327,13 +579,24 @@ else
 fi
 
 
-$BPGALLERY_HEAD_FUNCTION > index.html
-$BPGALLERY_DESCRIPTION_FUNCTION >> index.html
+$ECHOCOMMAND "Starting to generate page"
 
-$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_HEAD_FUNCTION > ${INDEXDOCUMENT}
+$BPGALLERY_DESCRIPTION_FUNCTION >> ${INDEXDOCUMENT}
 
-$BPGALLERY_TAIL_FUNCTION >> index.html
+$ECHOCOMMAND "Adding Captions"
+
+extra=""
+if [ $GENERATEPAGESFORMEDIUMSIZE != 0 ]; then
+	extra=__medium
+fi
 
+$FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 -I {} $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; if [ $GENERATEPAGESFORFULLSIZE != 0 ]; then link=$(bpgallery_escape_url "${filename}${extra}.html"); else link=$(bpgallery_escape_url "$filename"); fi; filename=$(bpgallery_escape_url "$filename"); $BPGALLERY_THUMBSLINE_FUNCTION; done >> ${INDEXDOCUMENT}
+
+$BPGALLERY_TAIL_FUNCTION >> ${INDEXDOCUMENT}
+
+$ECHOCOMMAND "Finished generating the page"
+$ECHOCOMMAND "Generating stylesheet"
 cd icons
 
 MAXHEIGHT=$($FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 $IDENTIFYCOMMAND -format "%h\n" | $GREPCOMMAND -v "^$" | $SORTCOMMAND -g -r | $HEADCOMMAND -n 1)
@@ -346,3 +609,8 @@ MAXHEIGHT=$((MAXHEIGHT+$CAPTIONHEIGHT))
 
 $BPGALLERY_STYLESHEET_FUNCTION > style.css
 
+$ECHOCOMMAND "All done"
+
+if [[ $OUTPUTHTML != 0 ]]; then
+	$ECHOCOMMAND "
" +fi