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.
		
		
		
		
		
			
		
			
				
					
					
						
							89 lines
						
					
					
						
							1.8 KiB
						
					
					
				
			
		
		
	
	
							89 lines
						
					
					
						
							1.8 KiB
						
					
					
				#!/bin/bash
 | 
						|
# info: listing backend templates
 | 
						|
# options: [FORMAT]
 | 
						|
#
 | 
						|
# example: v-list-web-templates-backend
 | 
						|
#
 | 
						|
# This function for obtaining the list of available backend templates.
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                Variables & Functions                     #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Argument definition
 | 
						|
format=${1-shell}
 | 
						|
 | 
						|
# 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"
 | 
						|
 | 
						|
# JSON list function
 | 
						|
json_list() {
 | 
						|
	i=1
 | 
						|
	objects=$(echo "$templates" | wc -w)
 | 
						|
	echo '['
 | 
						|
	for template in $templates; do
 | 
						|
		if [ "$i" -lt "$objects" ]; then
 | 
						|
			echo -e "\t\"$template\","
 | 
						|
		else
 | 
						|
			echo -e "\t\"$template\""
 | 
						|
		fi
 | 
						|
		((++i))
 | 
						|
	done
 | 
						|
	echo "]"
 | 
						|
}
 | 
						|
 | 
						|
# SHELL list function
 | 
						|
shell_list() {
 | 
						|
	echo "TEMPLATE"
 | 
						|
	echo "--------"
 | 
						|
	for template in $templates; do
 | 
						|
		echo "$template"
 | 
						|
	done
 | 
						|
}
 | 
						|
 | 
						|
# PLAIN list function
 | 
						|
plain_list() {
 | 
						|
	for template in $templates; do
 | 
						|
		echo "$template"
 | 
						|
	done
 | 
						|
}
 | 
						|
 | 
						|
# CSV list function
 | 
						|
csv_list() {
 | 
						|
	echo "TEMPLATE"
 | 
						|
	for template in $templates; do
 | 
						|
		echo "$template"
 | 
						|
	done
 | 
						|
}
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Action                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Parsing backend templates
 | 
						|
if [ -n "$WEB_BACKEND" ]; then
 | 
						|
	templates=$(ls -t $WEBTPL/$WEB_BACKEND \
 | 
						|
		| cut -f1 -d . \
 | 
						|
		| grep -v proxy_ip \
 | 
						|
		| sort -u)
 | 
						|
fi
 | 
						|
 | 
						|
# Listing data
 | 
						|
case $format in
 | 
						|
	json) json_list ;;
 | 
						|
	plain) plain_list ;;
 | 
						|
	csv) csv_list ;;
 | 
						|
	shell) shell_list ;;
 | 
						|
esac
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Hestia                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
exit
 |