#!/bin/bash
# saturnin - Smart and ready desktop helper
# See LICENSE file for copyright and license details.

tmp=$(mktemp)
sed -e 's/ = /=/' < config.mk > $tmp
. $tmp
rm -f $tmp

bindir=${DESTDIR}${PREFIX}/bin
shrdir=${DESTDIR}${PREFIX}/share/saturnin/ffoo

list_of_bins() {
    echo bin/saturnin
    echo bin/saturnin-abrt
    echo bin/saturnin-czrates
    echo bin/saturnin-dmenu
    echo bin/saturnin-get
    echo bin/saturnin-iam
    echo bin/saturnin-ini
    echo bin/saturnin-ip
    echo bin/saturnin-ln
    echo bin/saturnin-push
    echo bin/saturnin-revert
    echo bin/saturnin-watch
    echo bin/saturnin-www
}

list_of_installed_bins() {
    list_of_bins | sed -e "s/bin/$(sed -e 's/\//\\\//g' <<<$bindir)/"
}

die() {
    for l in "$@"; do echo "$l" >&2; done
    exit 9
}

list_of_shrs() {
    echo ffoo/www.sh
    echo ffoo/xorg.sh
}

build1() {
    local srcpath dstpath
    srcpath=$1
    dstpath=${srcpath%.skel}
    case $dstpath in
        *.md)   cat $srcpath \
                  | expand_includes \
                  | expand_variables \
                > $dstpath ;;
        *)      cat $srcpath \
                  | expand_variables \
                > $dstpath ;;
    esac
    echo $dstpath >> built.list
}

build() {
    local srcpath
    find -type f -name '*.skel' \
     | while read srcpath;
       do
           build1 "$srcpath"
       done
}

clean() {
    test -f built.list && {
        cat built.list | xargs rm -f
        rm -f built.list
    } || :
}

dist() {
    local version=$(get_version)
    local dirname=saturnin-$version
    mkdir -p $dirname
    cp -R   bin \
            config.mk \
            ffoo
            Makefile \
            README \
            LICENSE \
            setup \
            utils \
            $dirname
    sed -ie "s/^VERSION = .*/VERSION = $version/" $dirname/config.mk
    tar -cf $dirname.tar $dirname
    gzip $dirname.tar
    rm -rf $dirname
}

expand_includes() {
    #
    # Expand include directives
    #
    # Expand e.g. `<!-- include4: foo.sh -->` to include code of foo.sh
    #
    perl -we '
        use strict;
        my $text;
        while (<>) {
            chomp;
            if (m/<!-- include4: (\S+) -->/) {
                open my $fh, $1 or warn "cannot find: $1";
                my $text = do { local($/); <$fh> };
                close $fh;
                $text =~ s/^(.)/    $1/gm;
                chomp $text;
                print "$text\n";
            } else {
                print "$_\n";
            }
        }
    '
}

expand_variables() {
    #
    # Expand variable values
    #
    perl -pe "
        s|__SATURNIN_INI_PATH__|$SATURNIN_INI_PATH_GLOBAL:\\\$HOME/$SATURNIN_INI_PATH_USER|;
        s|__SATURNIN_FFOO_PATH__|$shrdir|;
        s|__VERSION__|$(get_version)|;
    "
}
install() {
    mkdir -vp $bindir \
              $shrdir
    list_of_bins | xargs cp -vrt $bindir
    list_of_shrs | xargs cp -vrt $shrdir
    list_of_installed_bins | xargs chmod -v 755
    test -f .autoclean && clean || :
}

get_version() {
    local version=$VERSION
    local stage=$STAGE
    if git rev-parse HEAD >&/dev/null;
    then    # we are in git repo... so we can get smart
        local lasttag=$(git tag | grep ^v | sort -V | tail -n1)
        if ! git describe --tags --exact-match HEAD >&/dev/null;
        then    # we are not at later commit than the last tag
            local sha=g$(git describe --always HEAD)
        fi
        if test "$(git diff --shortstat 2>/dev/null)" != "";
        then    # thr tree is "dirty", i.e. has been edited
            local dirty=dirty
        fi
        version=${lasttag:1}
        local suffix=""
        case $stage:$sha:$dirty in
            ::)         suffix=""                    ;;
            ::dirty)    suffix="+$dirty"             ;;
            :g*:)       suffix="+$sha"               ;;
            :g*:dirty)  suffix="+$sha.dirty"         ;;
            *::)        suffix="-$stage"             ;;
            *::dirty)   suffix="-$stage+$dirty"      ;;
            *:g*:)      suffix="-$stage+$sha"        ;;
            *:g*:dirty) suffix="-$stage+$sha.$dirty" ;;
        esac
        version=$version$suffix
    fi
    echo $version
}

uninstall() {
    list_of_installed_bins | xargs rm -vf
    rm -vrf $shrdir
}

case $1 in
    build|clean|dist|install|install_manpages|manpages|uninstall)
        $1
        ;;
    *)
        echo "usage: $(basename $0) build|clean|dist|install|uninstall" >&2
esac