#!/bin/sh
#
# Copyright (c) 1996-2007, Adobe Systems Incorporated
# All Rights Reserved
#

#Used to specify the start directory for finding acroread

set_lang_ITA()
{
    ST_IBP_INFO_12="In presenza di problemi di funzionamento dell\'installazione del browser, copiare il seguente file nella cartella di plugin del browser: %s"
    ST_IBP_ERR_06="Impossibile creare la directory %s."
    ST_IBP_INFO_26="Esci"
    ST_IBP_INFO_01="Verr installato il plug-in del browser per acroread."
    ST_IBP_INFO_23="%s   stato aggiunto."
    ST_IBP_INFO_04="Immettere la scelta: "
    ST_IBP_ERR_03="Impossibile trovare la cartella del browser %s."
    ST_SMALL_N="n"
    ST_IBP_ERR_01="Impossibile trovare il file del plugin del browser %s."
    ST_IBP_INFO_28="verr installato il plug-in solo per l\'utente corrente."
    ST_IBP_INFO_07="Specificare la directory di installazione del browser"
    ST_IBP_INFO_25="Installazione non riuscita"
    ST_IBP_INFO_17="Quale operazione si desidera eseguire? "
    ST_IBP_INFO_11="Il plug-in verr abilitato per Mozilla, Firefox e Netscape."
    ST_IBP_INFO_09="Installazione annullata."
    ST_CAPS_N="N"
    ST_IBP_ERR_11="ERRORE INTERNO ..... Nessun nome di sistema operativo corrispondente."
    ST_IBP_ERR_05="Impossibile copiare il file del plugin %s in %s."
    ST_IBP_INFO_03="Esegui installazione specifica per l\'utente"
    ST_IBP_ERR_08="%s esiste gi come file speciale e non pu essere sovrascritto."
    ST_IBP_INFO_24="Tentativo di installare il plugin del browser in corso - %s."
    ST_IBP_INFO_16="Installazione del plugin in %s in corso."
    ST_IBP_INFO_15="In caso di problemi, consultare la documentazione fornita con il browser per l\'aggiunta di nuovi plug-in."
    ST_IBP_INFO_27="tenter di installare il plugin per Mozilla/Firefox, a seconda dell\'applicazione che rilever."
    ST_IBP_ERR_10="Impossibile trovare la cartella di installazione %s."
    ST_IBP_INFO_06="Specificare la directory di installazione per Adobe Reader 8.1 [%s]."
    ST_CAPS_Y="S"
    ST_IBP_INFO_18="Installazione automatica completata."
    ST_IBP_ERR_09="Impossibile interrogare la variabile HOME dall\'ambiente. Impossibile trovare la directory home."
    ST_IBP_ERR_02="Impossibile trovare la cartella dei plugin del browser %s."
    ST_IBP_INFO_08="Il plugin  gi stato installato. Si desidera sovrascriverlo? [%s/%s] "
    ST_SMALL_Y="s"
    ST_IBP_INFO_10="Installazione completata."
    ST_IBP_ERR_04="Impossibile rimuovere la precedente versione del plugin in %s."
    ST_IBP_INFO_02="Installazione globale (come root)"
}


set_lang_ITA_utf()
{
    ST_IBP_INFO_12="In presenza di problemi di funzionamento dell\'installazione del browser, copiare il seguente file nella cartella di plugin del browser: %s"
    ST_IBP_ERR_06="Impossibile creare la directory %s."
    ST_IBP_INFO_26="Esci"
    ST_IBP_INFO_01="Verrà installato il plug-in del browser per acroread."
    ST_IBP_INFO_23="%s  è stato aggiunto."
    ST_IBP_INFO_04="Immettere la scelta: "
    ST_IBP_ERR_03="Impossibile trovare la cartella del browser %s."
    ST_SMALL_N="n"
    ST_IBP_ERR_01="Impossibile trovare il file del plugin del browser %s."
    ST_IBP_INFO_28="verrà installato il plug-in solo per l\'utente corrente."
    ST_IBP_INFO_07="Specificare la directory di installazione del browser"
    ST_IBP_INFO_25="Installazione non riuscita"
    ST_IBP_INFO_17="Quale operazione si desidera eseguire? "
    ST_IBP_INFO_11="Il plug-in verrà abilitato per Mozilla, Firefox e Netscape."
    ST_IBP_INFO_09="Installazione annullata."
    ST_CAPS_N="N"
    ST_IBP_ERR_11="ERRORE INTERNO ..... Nessun nome di sistema operativo corrispondente."
    ST_IBP_ERR_05="Impossibile copiare il file del plugin %s in %s."
    ST_IBP_INFO_03="Esegui installazione specifica per l\'utente"
    ST_IBP_ERR_08="%s esiste già come file speciale e non può essere sovrascritto."
    ST_IBP_INFO_24="Tentativo di installare il plugin del browser in corso - %s."
    ST_IBP_INFO_16="Installazione del plugin in %s in corso."
    ST_IBP_INFO_15="In caso di problemi, consultare la documentazione fornita con il browser per l\'aggiunta di nuovi plug-in."
    ST_IBP_INFO_27="tenterà di installare il plugin per Mozilla/Firefox, a seconda dell\'applicazione che rileverà."
    ST_IBP_ERR_10="Impossibile trovare la cartella di installazione %s."
    ST_IBP_INFO_06="Specificare la directory di installazione per Adobe Reader 8.1 [%s]."
    ST_CAPS_Y="S"
    ST_IBP_INFO_18="Installazione automatica completata."
    ST_IBP_ERR_09="Impossibile interrogare la variabile HOME dall\'ambiente. Impossibile trovare la directory home."
    ST_IBP_ERR_02="Impossibile trovare la cartella dei plugin del browser %s."
    ST_IBP_INFO_08="Il plugin è già stato installato. Si desidera sovrascriverlo? [%s/%s] "
    ST_IBP_INFO_10="Installazione completata."
    ST_SMALL_Y="s"
    ST_IBP_ERR_04="Impossibile rimuovere la precedente versione del plugin in %s."
    ST_IBP_INFO_02="Installazione globale (come root)"
}

if echo $LANG | grep -i utf >/dev/null; then
    set_lang_ITA_utf
else
    set_lang_ITA
fi

INSTALL_PATH=

#Contains the install directory path for acroread
ACROREAD_DIR=

#Contains the complete path of the browser plugin
NPPDF_FILE=

#Maintains whether we need to continue with the installation and repeat it for more browsers
INSTALL_MORE="y"


#This function gets the complete path of Adobe Reader according to this script.
GetInstallPath()
{
	CURRENT_PATH=`pwd`
	INSTALL_PATH=`dirname "$0"`
	#This would give us <actual_install_path>/Adobe/Reader8/Browser.
	#We need to strip it of Adobe/Reader8/Browser.
	COMPLETE_PATH="${INSTALL_PATH}/../../.."
	cd "$COMPLETE_PATH"
	INSTALL_PATH=`pwd`
	cd "$CURRENT_PATH"
}


#This function installs the plugin for a specific installation of the browser.
#If the installation is successful, then whenever the browser (specified in the browser install path) is run, for any user, it will have the plugin enabled.
#The way to achieve this is to look for the 'plugins' folder in the browser install path (specified by the user), and copy our plugin file to this location.
#If the plugin already exists, we prompt the user whether to overwrite or not, and proceed accordingly.
#This mechanism has been tested for Mozilla and Firefox. In both these browsers, the app searches for extensions/plugins in the 'plugins' folder.
InstallBrowserGlobal()
{
    if [ -z "$NPPDF_FILE" ]
	then
	return 1
    fi

    #Fetch the browser location
    if [ $# -eq 0 ]
	then
	BROWSER_DIR=""
	while [ -z "$BROWSER_DIR" ]
	  do
	  printf "$ST_IBP_INFO_07 - \n"
	  read BROWSER_DIR
	done
    else
	BROWSER_DIR=$1
    fi
	
    #Check existence of browser folder
    if [ ! -d "$BROWSER_DIR" ]
	then
	printf "$ST_IBP_ERR_03\n" "${BROWSER_DIR}"
    printf "%s\n" "$ST_IBP_INFO_09"
	return 1
    fi

    #Check existence of 'plugin' folder in the browser folder
    BROWSER_PLUGIN_DIR="${BROWSER_DIR}/plugins"
    if [ ! -d "$BROWSER_PLUGIN_DIR" ]
	then
	printf "$ST_IBP_ERR_02\n" "${BROWSER_PLUGIN_DIR}"
	return 1
    fi

    #Check whether plugin already exists
    if [ "$OSNAME" = "HP-UX" ]
        then
	BROWSER_PLUGIN_FILE="${BROWSER_PLUGIN_DIR}/nppdf.sl"
    else
	BROWSER_PLUGIN_FILE="${BROWSER_PLUGIN_DIR}/nppdf.so"
    fi

    if [ -f "$BROWSER_PLUGIN_FILE" ] || [ -h "$BROWSER_PLUGIN_FILE" ]
	then
	while :
	  do
	  printf "$ST_IBP_INFO_08" "$ST_SMALL_Y" "$ST_SMALL_N"
	  read USER_CHOICE
	  
	  if [ "$USER_CHOICE" = "$ST_SMALL_Y" ] || [ "$USER_CHOICE" = "$ST_CAPS_Y" ]
	      then
	      rm -f "$BROWSER_PLUGIN_FILE"
	      if [ $? -ne 0 ]
		  then
		  printf "$ST_IBP_ERR_04\n" "${BROWSER_PLUGIN_DIR}"
		  return 1
	      fi
	      break
	  elif [ "$USER_CHOICE" = "$ST_SMALL_N" ] || [ "$USER_CHOICE" = "$ST_CAPS_N" ]
	      then
	      printf "%s\n" "$ST_IBP_INFO_09"
	      return 0
	      break
	  fi
	done
    elif [ -b "$BROWSER_PLUGIN_FILE" ] || [ -c "$BROWSER_PLUGIN_FILE" ] || [ -d "$BROWSER_PLUGIN_FILE" ]
	then
	printf "$ST_IBP_ERR_08\n" "$BROWSER_PLUGIN_FILE"
	return 1
    fi
    
    #Copy the browser plugin file to the correct location
    cp -f "$NPPDF_FILE" "$BROWSER_PLUGIN_FILE"
    if [ $? -ne 0 ]
	then
	printf "$ST_IBP_ERR_05\n" "${NPPDF_FILE}" "${BROWSER_PLUGIN_FILE}"
	return 1
    else
	printf "$ST_IBP_INFO_10\n" "${BROWSER_PLUGIN_FILE}"
	return 0
    fi
}


#This function installs the plugin for the current user only.
#If the installation is successful, then whenever Mozilla or Firefox is run, from anywhere, it will have the plugin enabled.
#The way to achieve this is to copy our plugin file in the .mozilla/plugins folder in the users' home directory.
#If the folder does not exist, we create it, and if the plugin already exists, we prompt the user whether to overwrite or not, and proceed accordingly.
#This mechanism has been tested for Mozilla and Firefox. In both these browsers, the app searches for extensions/plugins in ~/.mozilla/plugins folder.
InstallBrowserUser()
{
    if [ -z "$NPPDF_FILE" ]
	then
	return 1
    fi
    
    if [ -d "$HOME" ]
	then
	USER_DIR="$HOME"
    else
	printf "%s\n" "$ST_IBP_ERR_09"
	return 1
    fi

    #Create the .mozilla & plugins folders if required
    BROWSER_DIR="$USER_DIR/.mozilla"
    if [ ! -d "$BROWSER_DIR" ]
	then
	mkdir "$BROWSER_DIR"
	if [ $? -ne 0 ]
	    then
	    printf "$ST_IBP_ERR_06\n" "${BROWSER_DIR}"
	    return 1
	fi
    fi
    
    BROWSER_PLUGIN_DIR="${BROWSER_DIR}/plugins"
    if [ ! -d "$BROWSER_PLUGIN_DIR" ]
	then
	mkdir "$BROWSER_PLUGIN_DIR"
	if [ $? -ne 0 ]
	    then
	    printf "$ST_IBP_ERR_06\n" "${BROWSER_PLUGIN_DIR}"
	    return 1
	fi
    fi
    
    #Check whether the plugin already exists
    if [ "$OSNAME" = "HP-UX" ]
        then
	BROWSER_PLUGIN_FILE="${BROWSER_PLUGIN_DIR}/nppdf.sl"
    else
	BROWSER_PLUGIN_FILE="${BROWSER_PLUGIN_DIR}/nppdf.so"
    fi

    if [ -f "$BROWSER_PLUGIN_FILE" ] || [ -h "$BROWSER_PLUGIN_FILE" ]
	then
	while :
	  do
	  printf "$ST_IBP_INFO_08" "$ST_SMALL_Y" "$ST_SMALL_N"
	  read USER_CHOICE
	  
	  if [ "$USER_CHOICE" = "$ST_SMALL_Y" ] || [ "$USER_CHOICE" = "$ST_CAPS_Y" ]
	      then
	      rm -f "$BROWSER_PLUGIN_FILE"
	      if [ $? -ne 0 ]
		  then
		  printf "$ST_IBP_ERR_04\n" "${BROWSER_PLUGIN_DIR}"
		  return 1
	      fi
	      break
	  elif [ "$USER_CHOICE" = "$ST_SMALL_N" ] || [ "$USER_CHOICE" = "$ST_CAPS_N" ]
	      then
	      printf "%s\n" "$ST_IBP_INFO_09"
	      return 0
	      break
	  fi
	done
    elif [ -b "$BROWSER_PLUGIN_FILE" ] || [ -c "$BROWSER_PLUGIN_FILE" ] || [ -d "$BROWSER_PLUGIN_FILE" ]
	then
	printf "$ST_IBP_ERR_08\n" "$BROWSER_PLUGIN_FILE"
	return 1
    fi
    
    #Copy the browser plugin file to the correct location
    cp "$NPPDF_FILE" "$BROWSER_PLUGIN_FILE"
    if [ $? -ne 0 ]
	then
	printf "$ST_IBP_ERR_05\n" "${NPPDF_FILE}" "${BROWSER_PLUGIN_FILE}"
	return 1
    fi
    
    printf "%s\n" "$ST_IBP_INFO_10"
    printf "$ST_IBP_INFO_23\n" "${BROWSER_PLUGIN_FILE}"
    printf "%s\n" "$ST_IBP_INFO_11"
}


#
# Check a given file in given path
# 1 imples file exists and 0 implies file does not exist
#
check_file_in_named_path()
{
    if [ -x "$2/$1" ]
	then
 	return 1
    fi
    
    return 0
}


#
# Check a given file in $PATH
# 1 imples file exists and 0 implies file does not exist
#
check_file_in_path()
{
    OLD_IFS=$IFS
    IFS=":"
    FOUND_PATH=""

    if [ -n "$PATH" ]
	then
 	for i in $PATH
	  do
	  if [ -d "$i" ]
	      then
	      check_file_in_named_path "$1" "$i"
	      if [ $? -eq 1 ]
		  then
		  FOUND_PATH="${i}/$1"
		  IFS=$OLD_IFS
		  return 1
	      fi
	  fi
 	done
    fi
    
    IFS=$OLD_IFS
    return 0
}


GetAbsoluteFile()
{
    if [ -h "$1" ]
	then
	CURRENT_PATH=`pwd`
	cd `dirname $1`
	COMPLETE_PATH=`ls -l $1 | awk '{ print $NF }'`
	COMPLETE_PATH_DIR=`dirname $COMPLETE_PATH`
	COMPLETE_PATH_FILE=`basename $COMPLETE_PATH`
	cd $COMPLETE_PATH_DIR
	COMPLETE_PATH_DIR=`pwd`
	cd "$CURRENT_PATH"
	GetAbsoluteFile ${COMPLETE_PATH_DIR}/${COMPLETE_PATH_FILE}
    else
	echo "$1"
	return 0
    fi
}


AutoInstallSystemPath()
{
    browser_dirs="$@"
    status=0

    for i in $browser_dirs
    do
        if [ -d "$i" ]; then
            printf "\n$ST_IBP_INFO_16\n" "$i"
            InstallBrowserGlobal "$i"
            status=`expr $status \| $?`
        fi
    done

    return $status
}


AutoInstallBrowser()
{
    printf "$ST_IBP_INFO_24\n" "$1"
    check_file_in_path $1
    if [ $? -eq 1 ]
	then
	FOUND_PATH=`GetAbsoluteFile $FOUND_PATH`
	printf "$ST_IBP_INFO_16\n" "$FOUND_PATH"
	InstallBrowserGlobal `dirname $FOUND_PATH`
	if [ $? -eq 0 ]
	    then
	    return 0
	else
	    printf "%s\n" "$ST_IBP_INFO_25"
	    return 1
	fi
    else
	printf "%s\n" "$ST_IBP_INFO_25"
	return 1
    fi
}


AutoInstall()
{
    AUTO_INSTALL_SUCCESS=0

    AutoInstallBrowser "firefox"
    if [ $? -eq 0 ]
	then
	   AUTO_INSTALL_SUCCESS=1
    fi

    AutoInstallSystemPath /usr/lib/firefox*
    if [ $? -eq 0 ]
    then
	   AUTO_INSTALL_SUCCESS=1
    fi

    AutoInstallBrowser "mozilla"
    if [ $? -eq 0 ]
	then
	   AUTO_INSTALL_SUCCESS=1
    fi

    AutoInstallSystemPath /usr/lib/mozilla*
    if [ $? -eq 0 ]
    then
	   AUTO_INSTALL_SUCCESS=1
    fi

    if [ $AUTO_INSTALL_SUCCESS -eq 1 ]
	then
	   printf "%s\n" "$ST_IBP_INFO_18"
	   return 0
    else
	   return 1
    fi
}


#This function fetches the installation path if not specified and validates the existance of the plugin file.
GetAcroreadInfo()
{
    #Prompt the user for acroread's installation path if not specified on the command prompt
    if [ -z "$1" ]
	then
	GetInstallPath
	printf "$ST_IBP_INFO_06" "${INSTALL_PATH}"
	read ACROREAD_DIR

	if [ -z "$ACROREAD_DIR" ]
	    then
	    ACROREAD_DIR="$INSTALL_PATH"
	fi
    else
	ACROREAD_DIR="$1"
    fi

    OSNAME=`uname -s`
    if [ "$OSNAME" = "Linux" ]
	then
	CONFIG_FOLDER="intellinux"
    elif [ "$OSNAME" = "SunOS" ]
	then
	CONFIG_FOLDER="sparcsolaris"
    elif [ "$OSNAME" = "AIX" ]
        then
	CONFIG_FOLDER="rs6000aix"
    elif [ "$OSNAME" = "HP-UX" ]
        then
	CONFIG_FOLDER="hppahpux"
    else
	printf "%s\n" "$ST_IBP_ERR_11"
	return 1
    fi

    #Check for the plugin file
    if [ "$OSNAME" = "HP-UX" ]
        then
	NPPDF_FILE="${ACROREAD_DIR}/Adobe/Reader8/Browser/${CONFIG_FOLDER}/nppdf.sl"
    else
	NPPDF_FILE="${ACROREAD_DIR}/Adobe/Reader8/Browser/${CONFIG_FOLDER}/nppdf.so"
    fi

    if [ ! -f "$NPPDF_FILE" ]
	then
	printf "$ST_IBP_ERR_01\n" "${NPPDF_FILE}"
	return 1
    fi
}


Init()
{
    clear
    printf "%s\n\n" "$ST_IBP_INFO_01"
    GetAcroreadInfo "$1"
    if [ $? -ne 0 ]
	then
	return 1
    fi

    if [ ! -d "$ACROREAD_DIR" ]
	then
	printf "$ST_IBP_ERR_10\n" "$ACROREAD_DIR"
	return 1
    fi

    while :
    do
        printf "\n\n%s\n\n" "$ST_IBP_INFO_17"
        printf "%d. %s - %s\n" 1 "$ST_IBP_INFO_02" "$ST_IBP_INFO_27"
        printf "%d. %s - %s\n" 2 "$ST_IBP_INFO_03" "$ST_IBP_INFO_28"
        printf "%d. %s\n" 3 "$ST_IBP_INFO_26"
        printf "\n%s" "$ST_IBP_INFO_04"
        read answer

        case "$answer" in
            1)  AutoInstall || InstallBrowserGlobal ;;
            2)  InstallBrowserUser ;;
            3)  break ;;
        esac
    done

    return 0
}

EndingMessage()
{
    if [ -n "${NPPDF_FILE}" ]
	then
	printf "\n\n$ST_IBP_INFO_12\n\n" "${NPPDF_FILE}"
    fi

    printf "%s\n" "$ST_IBP_INFO_15"
}


ProcessCmdLineOpts()
{
    install_silent=0
    install_global=0
    install_user=0
    install_path=""

    for i in $@
    do
        case "$i" in
            "-silent") install_silent=1 ;;
            "-global") install_global=1 ;;
            "-user")   install_user=1 ;;
            *)         install_path="$i" ;;
        esac
    done
}


ProcessCmdLineOpts "$@"

if [ "$install_silent" = 1 ]
then
    if [ -n "$install_path" ]
    then
        GetAcroreadInfo "$install_path"
        yes "$ST_SMALL_Y" | head -10 | \
        (
            if [ "$install_global" = 1 ]; then
                AutoInstall
            fi

            if [ "$install_user" = 1 ]; then
                InstallBrowserUser
            fi
        ) >/dev/null 2>&1
    else
        exit 1
    fi
else
    trap 'EndingMessage; exit 0' 2
    if [ "$install_global" = 1 ]
    then
        GetAcroreadInfo
        AutoInstall || InstallBrowserGlobal
    fi

    if [ "$install_user" = 1 ]
    then
        GetAcroreadInfo
        InstallBrowserUser
    fi

    if [ "$install_user" = 0 -a "$install_global" = 0 ]
    then
        Init "$1"
    fi

    EndingMessage
fi

