#!/bin/sh
# postinst script for vicar
#
# see: dh_installdeb(1)

set -e

# summary of how this script can be called:
#        * <postinst> `configure' <most-recently-configured-version>
#        * <old-postinst> `abort-upgrade' <new version>
#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
#          <new-version>
#        * <postinst> `abort-remove'
#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
#          <failed-install-package> <version> `removing'
#          <conflicting-package> <version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package


case "$1" in
    configure)

	eval $(dbus-launch --sh-syntax)
	export DBUS_SESSION_BUS_ADDRESS
	export DBUS_SESSION_BUS_PID

	# Kill any running instances of the daemon (only used on Linux based systems)
	killall -q vicar-daemon || true
	killall -q vicar-telepathy || true

	echo "Checking for log folder ..."
        [[ ! -d /var/log/vicar ]] && mkdir /var/log/vicar

	echo "Checking for log file ..."
        [[ ! -e /var/log/vicar/vicar.log ]] && touch /var/log/vicar/vicar.log && chown -R user:users /var/log/vicar

        echo "Starting Vicar daemon ..."
        [[ -x /opt/vicar/bin/vicar-daemon ]] && su - user -c "exec /opt/vicar/bin/vicar-daemon& >/dev/null"

        echo "Starting Vicar-Telepathy ..."
        [[ -x /opt/vicar/bin/vicar-telepathy ]] && su - user -c "exec /opt/vicar/bin/vicar-telepathy& >/dev/null"

        echo "Creating Vicar Telepathy account ..."
        [[ -x /opt/vicar/bin/vicar-utils ]] && su - user -c "exec /opt/vicar/bin/vicar-utils INSTALL"

        echo "Updating permissions on Vicar DB file ..."
        [[ -e /home/user/vicar.db.sqlite ]] && chown user:users /home/user/vicar.db.sqlite

        echo "Creating Vicar Profiles database ..."
        [[ -x /opt/vicar/bin/vicar-utils ]] && su - user -c "exec /opt/vicar/bin/vicar-utils CREATEDB"

    ;;

    abort-upgrade|abort-remove|abort-deconfigure)
    ;;

    *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0


