You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

156 lines
3.1 KiB

#!/bin/sh
# Execute Hugo webiste generation and log all output into log file
# In error case, existing blog content will not be touched
# If this script ist not stored in ~/hugogentmp/ change $DIR
# Path to hugo executable
HUGO=~/bin/hugo
# HUGO=~/kred/hugo/hugo
# Path to output destination. Folder must exists
PUBLIC_WWW=/var/www/virtual/$USER/html/kollegenrunde
#PUBLIC_WWW=~/hugotest/public
# Working dir: here is the script and git's working dirs
TMPDIR=~/hugogentmp
TMPPUBLIC=$TMPDIR/public
# Path to persisted log file, e.g. in web folder
LOG=$TMPDIR/log.txt
# Path to a temp log file for hugo's stdout
TMPLOG=$TMPDIR/tmplog.txt
# Path to a temp log file for hugo's errout
TMPERR=$TMPDIR/tmperr.txt
# Tmp file with timestamp string
TMPDATE=$TMPDIR/tmpdate.txt
# Paths to the local gits
TMPGIT_HUGO=$TMPDIR/kollegen-hugo
TMPGIT_POSTS=$TMPDIR/kollegen-posts
# Path to our repositories
GIT_HUGO=https://kollegen.uber.space/gitea/kollegenrunde/kollegen-hugo.git
GIT_POSTS=https://kollegen.uber.space/gitea/kollegenrunde/kollegen-posts.git
# Log a text file content
log_file () {
cat $1
cat $1 >> $LOG
}
# log a string argument
log () {
echo $1
echo $1 >> $LOG
}
# Always produce a log file in the destination folder
finish () {
date > $TMPDATE
log_file $TMPDATE
if [ -f $LOG ]
then
echo "Moving log file to $LOG $PUBLIC_WWW"
mv -v $LOG $PUBLIC_WWW
fi
if [ -f $TMPLOG ]
then
rm -v $TMPLOG
fi
if [ -f $TMPERR ]
then
rm -v $TMPERR
fi
if [ -f $TMPDATE ]
then
rm -v $TMPDATE
fi
exit $1
}
### MAIN ###############################################
if [ -d $TMPPUBLIC ]
then
rm -r -f $TMPPUBLIC
fi
if [ -f $LOG ]
then
rm -v $LOG
touch $LOG
fi
# Document actual time into log file
date > $TMPDATE
log_file $TMPDATE
log "Using tmp dir $TMPDIR"
if [ ! -d $TMPGIT_POSTS ]
then
# jetzt clonen wir das Repository in den temporären Ordner
mkdir -v $TMPGIT_POSTS 2>&1 | tee -a $LOG
git clone $GIT_POSTS $TMPGIT_POSTS 2>&1 | tee -a $LOG
else
cd $TMPGIT_POSTS && git pull $GIT_POSTS 2>&1 | tee -a $LOG
fi
if [ ! -d $TMPGIT_HUGO ]
then
# jetzt clonen wir das Repository in den temporären Ordner
mkdir -v $TMPGIT_HUGO 2>&1 | tee -a $LOG
git clone $GIT_POSTS $TMPGIT_HUGO 2>&1 | tee -a $LOG
else
cd $TMPGIT_HUGO && git pull $GIT_HUGO 2>&1 | tee -a $LOG
fi
# Hugo anschmeißen
log "Starting hugo"
cd $TMPGIT_HUGO && $HUGO --destination $TMPPUBLIC > $TMPLOG 2> $TMPERR
if [ -f $TMPLOG ]
then
log_file $TMPLOG
fi
if [ -f $TMPERR ]
then
if grep -Fq "Error" $TMPERR
then
log "Hugo failed"
log_file $TMPERR
log "Generation canceled. Check the error and try to fix it. Then push again."
finish 1
fi
fi
if [ -d $PUBLIC_WWW ]
then
log "Remove $PUBLIC_WWW"
rm -r -f $PUBLIC_WWW 2>&1 | tee -a $LOG
fi
# Publish now
log "Copy $TMPPUBLIC to $PUBLIC_WWW"
mv -v $TMPPUBLIC $PUBLIC_WWW 2>&1 | tee -a $LOG
log "Ready, Blog created in $PUBLIC_WWW!"
finish 0