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.
		
		
		
		
		
			
		
			
				
					
					
						
							96 lines
						
					
					
						
							3.4 KiB
						
					
					
				
			
		
		
	
	
							96 lines
						
					
					
						
							3.4 KiB
						
					
					
				#!/bin/bash
 | 
						|
# info: add composer (php dependency manager) for a user
 | 
						|
# options: USER
 | 
						|
#
 | 
						|
# example: v-add-user-composer user [version]
 | 
						|
#
 | 
						|
# This function adds support for composer (php dependency manager)
 | 
						|
# Homepage: <https://getcomposer.org/>
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                Variables & Functions                     #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Argument definition
 | 
						|
user=$1
 | 
						|
version=${2-2}
 | 
						|
 | 
						|
if [ -z "$HESTIA" ]; then
 | 
						|
	HESTIA="/usr/local/hestia"
 | 
						|
fi
 | 
						|
 | 
						|
# 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"
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                    Verifications                         #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
check_args '1' "$#" 'USER [VERSION]'
 | 
						|
is_format_valid 'user'
 | 
						|
is_number_format_valid "$version" "version"
 | 
						|
is_object_valid 'user' 'USER' "$user"
 | 
						|
is_object_unsuspended 'user' 'USER' "$user"
 | 
						|
 | 
						|
[ -z "$HOMEDIR" ] && check_result "$E_NOTEXIST" "Hestia environment vars not present"
 | 
						|
 | 
						|
# Perform verification if read-only mode is enabled
 | 
						|
check_hestia_demo_mode
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Action                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
COMPOSER_DIR="$HOMEDIR/$user/.composer"
 | 
						|
COMPOSER_BIN="$COMPOSER_DIR/composer"
 | 
						|
 | 
						|
if [ -f "$COMPOSER_BIN" ]; then
 | 
						|
	echo "Composer already available"
 | 
						|
	exit
 | 
						|
fi
 | 
						|
 | 
						|
[ -z "$(readlink -m "$COMPOSER_DIR" | egrep "^$HOMEDIR/$user/")" ] && check_result "$E_FORBIDEN" "Path outside of user homedir (Composer dir)"
 | 
						|
[ -z "$(readlink -m "$COMPOSER_BIN" | egrep "^$HOMEDIR/$user/")" ] && check_result "$E_FORBIDEN" "Path outside of user homedir (Composer bin)"
 | 
						|
[ -z "$(readlink -m "$HOMEDIR/$user/.config/" | egrep "^$HOMEDIR/$user/")" ] && check_result "$E_FORBIDEN" "Path outside of user homedir (.conf)"
 | 
						|
 | 
						|
mkdir -p "$COMPOSER_DIR"
 | 
						|
chown $user: "$COMPOSER_DIR"
 | 
						|
mkdir -p "$HOMEDIR/$user/.config"
 | 
						|
chown $user: "$HOMEDIR/$user/.config"
 | 
						|
echo "alias composer=/home/"$user"/.composer/composer" >> /home/$user/.bash_aliases
 | 
						|
 | 
						|
COMPOSER_SETUP_FILE=$(mktemp)
 | 
						|
check_result $? "Create temp file"
 | 
						|
chown $user: "$COMPOSER_SETUP_FILE"
 | 
						|
 | 
						|
signature="$(curl --silent --show-error https://composer.github.io/installer.sig)"
 | 
						|
check_result $? "Download signature"
 | 
						|
 | 
						|
user_exec wget --tries=3 --timeout=15 --read-timeout=15 --waitretry=3 --no-dns-cache https://getcomposer.org/installer --quiet -O "$COMPOSER_SETUP_FILE"
 | 
						|
check_result $? "Download composer installer"
 | 
						|
 | 
						|
if [[ "$signature" != $(sha384sum "$COMPOSER_SETUP_FILE" | cut -f 1 -d " ") ]]; then
 | 
						|
	rm -f "$COMPOSER_SETUP_FILE"
 | 
						|
	check_result "$E_INVALID" "Composer signature does not match"
 | 
						|
fi
 | 
						|
 | 
						|
COMPOSER_HOME="$HOMEDIR/$user/.config/composer" user_exec /usr/bin/php "$COMPOSER_SETUP_FILE" --quiet "--$version" --install-dir="$COMPOSER_DIR" --filename=composer
 | 
						|
check_result $? "Composer install failed"
 | 
						|
 | 
						|
[ -f "$COMPOSER_SETUP_FILE" ] && rm -f "$COMPOSER_SETUP_FILE"
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Hestia                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Logging
 | 
						|
$BIN/v-log-action "$user" "Info" "Plugins" "Composer support enabled."
 | 
						|
log_event "$OK" "$ARGUMENTS"
 | 
						|
 | 
						|
exit
 |