You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							120 lines
						
					
					
						
							4.6 KiB
						
					
					
				
			
		
		
	
	
							120 lines
						
					
					
						
							4.6 KiB
						
					
					
				#!/bin/bash
 | 
						|
# info: add file manager functionality to Hestia Control Panel
 | 
						|
# options: [MODE]
 | 
						|
#
 | 
						|
# This function installs the File Manager on the server
 | 
						|
# for access through the Web interface.
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                Variables & Functions                     #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Includes
 | 
						|
# shellcheck source=/etc/hestiacp/hestia.conf
 | 
						|
source /etc/hestiacp/hestia.conf
 | 
						|
# shellcheck source=/usr/local/hestia/func/main.sh
 | 
						|
source $HESTIA/func/main.sh
 | 
						|
# load config file
 | 
						|
source_conf "$HESTIA/conf/hestia.conf"
 | 
						|
# load config file
 | 
						|
source_conf "$HESTIA/install/upgrade/upgrade.conf"
 | 
						|
 | 
						|
MODE=$1
 | 
						|
user="admin"
 | 
						|
 | 
						|
FM_INSTALL_DIR="$HESTIA/web/fm"
 | 
						|
FM_FILE="filegator_latest"
 | 
						|
FM_URL="https://github.com/filegator/static/raw/master/builds/filegator_latest.zip"
 | 
						|
COMPOSER_BIN="$HOMEDIR/$user/.composer/composer"
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                    Verifications                         #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Checking root permissions
 | 
						|
if [ "x$(id -u)" != 'x0' ]; then
 | 
						|
	echo "ERROR: v-add-sys-filemanager can be run executed only by root user"
 | 
						|
	exit 10
 | 
						|
fi
 | 
						|
 | 
						|
# Ensure that $HESTIA (/usr/local/hestia/) and other variables are valid.
 | 
						|
if [ -z "$HESTIA" ]; then
 | 
						|
	HESTIA="/usr/local/hestia"
 | 
						|
fi
 | 
						|
 | 
						|
if [ -z "$HOMEDIR" ] || [ -z "$HESTIA_INSTALL_DIR" ]; then
 | 
						|
	echo "ERROR: Environment variables not present, installation aborted."
 | 
						|
	exit 2
 | 
						|
fi
 | 
						|
 | 
						|
# Ensure that Composer is installed for the user before continuing as it is a dependency of the File Manager.
 | 
						|
if [ ! -f "$COMPOSER_BIN" ]; then
 | 
						|
	$BIN/v-add-user-composer "$user"
 | 
						|
	if [ $? -ne 0 ]; then
 | 
						|
		$BIN/v-add-user-notification admin 'Composer installation failed!' '<p class="u-text-bold">The File Manager will not work without Composer.</p><p>Please try running the installer manually from a shell session:<br><code>v-add-sys-filemanager</code></p><p>If this continues, <a href="https://github.com/hestiacp/hestiacp/issues" target="_blank">open an issue on GitHub</a>.</p>'
 | 
						|
		exit 1
 | 
						|
	fi
 | 
						|
fi
 | 
						|
 | 
						|
# Perform verification if read-only mode is enabled
 | 
						|
check_hestia_demo_mode
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Action                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
openssl_installed=$(/usr/local/hestia/php/bin/php -m | grep openssl)
 | 
						|
 | 
						|
rm --recursive --force "$FM_INSTALL_DIR"
 | 
						|
mkdir -p "$FM_INSTALL_DIR"
 | 
						|
cd "$FM_INSTALL_DIR"
 | 
						|
 | 
						|
[ ! -f "${FM_INSTALL_DIR}/${FM_FILE}" ] && wget "$FM_URL" --quiet -O "${FM_INSTALL_DIR}/${FM_FILE}.zip"
 | 
						|
 | 
						|
unzip -qq "${FM_INSTALL_DIR}/${FM_FILE}.zip"
 | 
						|
mv --force ${FM_INSTALL_DIR}/filegator/* "${FM_INSTALL_DIR}"
 | 
						|
rm --recursive --force ${FM_INSTALL_DIR}/${FM_FILE}
 | 
						|
[[ -f "${FM_INSTALL_DIR}/${FM_FILE}" ]] && rm "${FM_INSTALL_DIR}/${FM_FILE}"
 | 
						|
 | 
						|
cp --recursive --force ${HESTIA_INSTALL_DIR}/filemanager/filegator/* "${FM_INSTALL_DIR}"
 | 
						|
 | 
						|
chown $user: -R "${FM_INSTALL_DIR}"
 | 
						|
 | 
						|
if [ -z "$openssl_installed" ]; then
 | 
						|
	COMPOSER_HOME="$HOMEDIR/$user/.config/composer" user_exec /usr/bin/php $COMPOSER_BIN --quiet --no-dev install
 | 
						|
else
 | 
						|
	COMPOSER_HOME="$HOMEDIR/$user/.config/composer" user_exec /usr/local/hestia/php/bin/php $COMPOSER_BIN --quiet --no-dev install
 | 
						|
fi
 | 
						|
 | 
						|
# Check if installation was successful, if not abort script and throw error message notification and clean-up
 | 
						|
if [ $? -ne 0 ]; then
 | 
						|
	echo "ERROR: File Manager installation failed!"
 | 
						|
	echo "Please report this to our development team:"
 | 
						|
	echo "https://github.com/hestiacp/hestiacp/issues"
 | 
						|
	$BIN/v-add-user-notification admin 'File Manager installation failed!' '<p>Please <a href="https://github.com/hestiacp/hestiacp/issues" target="_blank">open an issue on GitHub</a> to report this to our development team.</p>'
 | 
						|
	# Installation failed, clean up files
 | 
						|
	rm --recursive --force ${FM_INSTALL_DIR}
 | 
						|
	$BIN/v-change-sys-config-value 'FILE_MANAGER' 'false'
 | 
						|
	$BIN/v-log-action "system" "Error" "Plugins" "File Manager installation failed (Version: $fm_v)."
 | 
						|
	exit 1
 | 
						|
fi
 | 
						|
 | 
						|
# Add configuration file
 | 
						|
cp -f $HESTIA_INSTALL_DIR/filemanager/filegator/configuration.php $HESTIA/web/fm/configuration.php
 | 
						|
 | 
						|
echo "$fm_v" > "${FM_INSTALL_DIR}/version"
 | 
						|
# Set permissions
 | 
						|
chown root: -R "${FM_INSTALL_DIR}"
 | 
						|
chown $user: "${FM_INSTALL_DIR}/private"
 | 
						|
chown $user: "${FM_INSTALL_DIR}/private/logs"
 | 
						|
chown $user: "${FM_INSTALL_DIR}/repository"
 | 
						|
 | 
						|
$BIN/v-change-sys-config-value 'FILE_MANAGER' 'true'
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Logging                            #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
$BIN/v-log-action "system" "Info" "Plugins" "File Manager enabled (Version: $fm_v)."
 | 
						|
log_event "$OK" "$ARGUMENTS"
 |