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

#Used to specify the start directory for finding acroread

set_lang_ESP_utf()
{
    ST_IBP_INFO_12="If you are facing any problem in getting the installation to work for your browser, please copy the following file to the plugin folder of the browser : %s"
    ST_IBP_ERR_06="Could not create the directory %s."
    ST_IBP_INFO_26="Salir"
    ST_IBP_INFO_01="Esto instalará el plug-in del explorador para acroread."
    ST_IBP_INFO_23="%s  has been added."
    ST_IBP_INFO_04="Introduzca su elección: "
    ST_IBP_ERR_03="Could not find the browser folder %s"
    ST_SMALL_N="n"
    ST_IBP_ERR_01="Could not find the browser plugin file  %s."
    ST_IBP_INFO_28="esto instalará el plugin únicamente para el usuario actual."
    ST_IBP_INFO_07="Escriba el directorio de instalación del explorador"
    ST_IBP_INFO_25="Error de instalación"
    ST_IBP_INFO_17="What do you want to perform ? "
    ST_IBP_INFO_11="Esto activará el plug-in para Mozilla, Firefox y Netscape."
    ST_IBP_INFO_09="Instalación cancelada."
    ST_CAPS_N="N"
    ST_IBP_ERR_11="ERROR INTERNO ..... No coincide el nombre de SO."
    ST_IBP_ERR_05="Could not copy the plugin file  %s  to %s"
    ST_IBP_INFO_03="Realizar instalación específica de usuario"
    ST_IBP_ERR_08="%s  already exists as a special file and cannot overwrite it."
    ST_IBP_INFO_24="Trying to install plugin for browser  -  %s"
    ST_IBP_INFO_16="Installing plugin in %s"
    ST_IBP_INFO_15="En caso de dificultades, consulte la documentación proporcionada junto con el explorador para la adición de nuevos plug-ins."
    ST_IBP_INFO_27="this will try to install the plugin for mozilla/firefox, whichever it is able to locate."
    ST_IBP_ERR_10="Could not find the installation folder  %s."
    ST_IBP_INFO_06="Enter the install directory for Adobe Reader 8.1 [%s] "
    ST_CAPS_Y="S"
    ST_IBP_INFO_18="Instalación automática finalizada."
    ST_IBP_ERR_09="No se puede consultar la variable HOME desde el entorno. No se puede encontrar el directorio principal."
    ST_IBP_ERR_02="Could not find the browser plugins folder %s"
    ST_IBP_INFO_08="The plugin seems to be already installed. Are you sure you want to overwrite ? [%s/%s] "
    ST_SMALL_Y="s"
    ST_IBP_INFO_10="Instalación correcta."
    ST_IBP_ERR_04="Could not remove previous version of the plugin in %s."
    ST_IBP_INFO_02="Global installation (as root)"
}


set_lang_ESP()
{
    ST_IBP_INFO_12="If you are facing any problem in getting the installation to work for your browser, please copy the following file to the plugin folder of the browser : %s"
    ST_IBP_ERR_06="Could not create the directory %s."
    ST_IBP_INFO_26="Salir"
    ST_IBP_INFO_01="Esto instalar el plug-in del explorador para acroread."
    ST_IBP_INFO_23="%s  has been added."
    ST_IBP_INFO_04="Introduzca su eleccin: "
    ST_IBP_ERR_03="Could not find the browser folder %s"
    ST_SMALL_N="n"
    ST_IBP_ERR_01="Could not find the browser plugin file  %s."
    ST_IBP_INFO_28="esto instalar el plugin nicamente para el usuario actual."
    ST_IBP_INFO_07="Escriba el directorio de instalacin del explorador"
    ST_IBP_INFO_25="Error de instalacin"
    ST_IBP_INFO_17="What do you want to perform ? "
    ST_IBP_INFO_11="Esto activar el plug-in para Mozilla, Firefox y Netscape."
    ST_IBP_INFO_09="Instalacin cancelada."
    ST_CAPS_N="N"
    ST_IBP_ERR_11="ERROR INTERNO ..... No coincide el nombre de SO."
    ST_IBP_ERR_05="Could not copy the plugin file  %s  to %s"
    ST_IBP_INFO_03="Realizar instalacin especfica de usuario"
    ST_IBP_ERR_08="%s  already exists as a special file and cannot overwrite it."
    ST_IBP_INFO_24="Trying to install plugin for browser  -  %s"
    ST_IBP_INFO_16="Installing plugin in %s"
    ST_IBP_INFO_15="En caso de dificultades, consulte la documentacin proporcionada junto con el explorador para la adicin de nuevos plug-ins."
    ST_IBP_INFO_27="this will try to install the plugin for mozilla/firefox, whichever it is able to locate."
    ST_IBP_ERR_10="Could not find the installation folder  %s."
    ST_IBP_INFO_06="Enter the install directory for Adobe Reader 8.1 [%s] "
    ST_CAPS_Y="S"
    ST_IBP_INFO_18="Instalacin automtica finalizada."
    ST_IBP_ERR_09="No se puede consultar la variable HOME desde el entorno. No se puede encontrar el directorio principal."
    ST_IBP_ERR_02="Could not find the browser plugins folder %s"
    ST_IBP_INFO_08="The plugin seems to be already installed. Are you sure you want to overwrite ? [%s/%s] "
    ST_IBP_INFO_10="Instalacin correcta."
    ST_SMALL_Y="s"
    ST_IBP_ERR_04="Could not remove previous version of the plugin in %s."
    ST_IBP_INFO_02="Global installation (as root)"
}

if echo $LANG | grep -i utf >/dev/null; then
    set_lang_ESP_utf
else
    set_lang_ESP
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

