#!/bin/sh
#
# @package      hubzero-submit-monitors
# @file         postinst
# @author       Nicholas J. Kisseberth <nkissebe@purdue.edu>
# @copyright    Copyright (c) 2010-2018 HUBzero Foundation, LLC.
# @license      http://opensource.org/licenses/MIT MIT
#
# Copyright (c) 2010-2018 HUBzero Foundation, LLC.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
# HUBzero is a registered trademark of HUBzero Foundation, LLC.
#

# postinst script for hubzero-submit-monitors
#
# 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

SUBMITDIR=/opt/submit
VARLOG=/var/log
MONITORTUNNEL=monitorTunnel.py
MONITORPROBE=monitorProbe.py
HUBHOSTNAME=`hostname --fqdn`
MANAGEIDENTITIES=manageIdentities.py

case "$1" in
    configure)
        # install-user-gridman
        if id gridman > /dev/null 2>&1; then
            IUID=`id --user gridman`
            IGID=`id --group gridman`
        else
            IUID="NONE"
            IGID="NONE"
        fi
        # adduser --quiet gridman tunneler || true
        if [ "$IUID" = "NONE" ]; then
            adduser --system --disabled-password  \
                    --home /var/gridman           \
                    --force-badname --group --shell /bin/bash --gecos Gridman gridman
        fi
        # install-monitor-job
        chown gridman ${SUBMITDIR}/monitorJob.py
        chown gridman ${SUBMITDIR}/monitorJobSite.py
        # install-monitor-tunnel
        chown gridman ${SUBMITDIR}/${MONITORTUNNEL}
        # install-monitor-tunnel
        chown gridman ${SUBMITDIR}/${MONITORPROBE}
	# install-manage-identities
	chown gridman ${SUBMITDIR}/${MANAGEIDENTITIES}
        # initialize-monitor-job:
	mkdir -p ${SUBMITDIR}/DB
	chown gridman:root ${SUBMITDIR}/DB
	cd ${SUBMITDIR}/DB
	rm -f ${SUBMITDIR}/DB/monitorJob.db
        python ${SUBMITDIR}/monitorJobInitialize.py
	chown gridman:root ${SUBMITDIR}/DB/monitorJob.db
	chmod 0640 ${SUBMITDIR}/DB/monitorJob.db
	rm -f ${SUBMITDIR}/DB/monitorJob.sql
	touch ${SUBMITDIR}/DB/monitorJob.sql
	chown gridman:root ${SUBMITDIR}/DB/monitorJob.sql
	chmod 0640 ${SUBMITDIR}/DB/monitorJob.sql

	mkdir -p ${VARLOG}/submit
	chmod 0755 ${VARLOG}/submit
	mkdir -p ${VARLOG}/submit/monitors
	chmod 0755 ${VARLOG}/submit/monitors
	chown gridman ${VARLOG}/submit/monitors

        if [ ! -f ${VARLOG}/submit/monitors/monitorJob.log ]
        then
                touch ${VARLOG}/submit/monitors/monitorJob.log
        fi

        chmod 0644 ${VARLOG}/submit/monitors/monitorJob.log
        chown gridman:gridman ${VARLOG}/submit/monitors/monitorJob.log

        if [ ! -f ${VARLOG}/submit/monitors/monitorTunnel.log ]
        then
                touch ${VARLOG}/submit/monitors/monitorTunnel.log
        fi

        chmod 0644 ${VARLOG}/submit/monitors/monitorTunnel.log
        chown gridman:gridman ${VARLOG}/submit/monitors/monitorTunnel.log
    ;;

    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
