#!/bin/bash
#===============================================================================
#
# DIRECTORY:
#   /home/*/.local/share/nautilus/scripts/01-verify/
# OR
#   /home/*/.gnome2/nautilus-sctipts/01-verify/ (deprecated)
#
# FILE:
#   01-ewfverify
#
# USAGE:
#   Right klick on the first file of an EWF image and
#   choose this nautilus script from the context menu.
#
# OPTIONS:
#   none
#
# DESCRIPTION:
#   Verifies media data stored in EWF files.
#   Show the progress and store the result in a file.
#
# REQUIREMENTS:
#   bash, zenity, ewf-tools, gnome-terminal, progps and coreutils
#
# BUGS:
#   ---
#
# NOTES:
#   Tested on
#   - Debian 8+
#   - Arch Linux
#
# AUTHOR:
#   Patrick Neumann, patrick@neumannsland.de
#
# COMPANY:
#   (privately)
#
# VERSION:
#   0.9 (beta)
#
# LINK TO THE MOST CURRENT VERSIONS:
#   https://...
#
# CREATED:
#   09.09.2020
#
# COPYRIGHT (C):
#   2015-2020 - Patrick Neumann
#
# LICENSE:
#   This program is free software: you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation, either version 3 of the License, or
#   (at your option) any later version.
#
# WARRANTY:
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# TODO:
#   ---
#
# HISTORY:
#   0.9 - Patrick Neumann - Initial (public) release
#
#===============================================================================

#-------------------------------------------------------------------------------
# Additional supported Distribution(s) (add before Library!).
#-------------------------------------------------------------------------------
SUPPORTED_OSR="arch"

#-------------------------------------------------------------------------------
# Check for library (casualscripter_nautilus-scripts_functions.sh).
#-------------------------------------------------------------------------------
readonly LIBRARY="${0%/*/*}/.casualscripter_nautilus-scripts_functions.sh"
if [ ! -f "${LIBRARY}" ] ; then
  zenity --error \
         --text \
         "ERROR: casualscripter_nautilus-scripts_functions.sh MISSING!"
  exit 1
fi

source "${LIBRARY}"

#-------------------------------------------------------------------------------
# Checks (see library "casualscripter_nautilus-scripts_functions.sh").
#-------------------------------------------------------------------------------
check_dep "${GTERMINAL_BIN}" "gnome-terminal"
check_dep "${EWFVERIFY_BIN}" "ewf-tools"
check_dep "${SLEEP_BIN}" "coreutils"
check_dep "${PGREP_BIN}" "procps"

check_ext "${SOURCE}" "[eE]01"

check_tmp

#-------------------------------------------------------------------------------
# Generate ewfverify file, if necessary.
#-------------------------------------------------------------------------------
readonly EWFVERIFY="${TMP}/ewfverify-$( basename "${SOURCE}" ).txt"

if [ ! -f "${EWFVERIFY}" ] ; then
  ${GTERMINAL_BIN} --hide-menubar -- \
    ${EWFVERIFY_BIN} -d sha1 -l "${EWFVERIFY}" "${SOURCE}"

  ${SLEEP_BIN} 3

  # We have to wait until ewfverify has finished...
  while ${PGREP_BIN} --full "${EWFVERIFY_BIN}" > /dev/null 2>&1; do
    ${SLEEP_BIN} 1
  done
fi

#-------------------------------------------------------------------------------
# Display content of the resultfile "ewfverify.txt".
#-------------------------------------------------------------------------------
display_resultfile "${EWFVERIFY}"

exit 0