Files
VestaCP/bin/v-delete-web-domain-alias

117 lines
3.2 KiB
Plaintext
Raw Normal View History

2013-01-19 23:07:26 +02:00
#!/bin/bash
# info: delete web domain alias
# options: USER DOMAIN ALIAS [RESTART]
#
# The function of deleting the alias domain (parked domain). By this call
# default www aliase can be removed as well.
#----------------------------------------------------------#
# Variable&Function #
#----------------------------------------------------------#
2015-11-06 17:38:58 +02:00
# Argument definition
2013-01-19 23:07:26 +02:00
user=$1
domain=$(idn -t --quiet -u "$2" )
domain_idn=$(idn -t --quiet -a "$domain" )
dom_alias=$(idn -t --quiet -u "$3" )
dom_alias_idn=$(idn -t --quiet -a "$dom_alias" )
restart="$4"
# Includes
source $VESTA/func/main.sh
source $VESTA/func/domain.sh
2013-02-17 12:22:46 +02:00
source $VESTA/func/ip.sh
source $VESTA/conf/vesta.conf
2013-01-19 23:07:26 +02:00
#----------------------------------------------------------#
# Verifications #
#----------------------------------------------------------#
check_args '3' "$#" 'USER DOMAIN DOM_ALIAS [RESTART]'
validate_format 'user' 'domain' 'dom_alias'
2013-05-29 13:16:09 +03:00
is_system_enabled "$WEB_SYSTEM" 'WEB_SYSTEM'
2013-01-19 23:07:26 +02:00
is_object_valid 'user' 'USER' "$user"
is_object_unsuspended 'user' 'USER' "$user"
is_object_valid 'web' 'DOMAIN' "$domain"
is_object_unsuspended 'web' 'DOMAIN' "$domain"
get_domain_values 'web'
2013-02-05 22:58:40 +02:00
ip=$(get_real_ip $IP)
2013-01-19 23:07:26 +02:00
if [ -z "$(echo $ALIAS | tr ',' '\n' | grep ^$dom_alias$)" ]; then
2013-05-24 11:02:58 +03:00
echo "Error: alias $dom_alias doesn't exist"
2013-01-19 23:07:26 +02:00
log_event "$E_NOTEXIST" "$EVENT"
exit $E_NOTEXIST
fi
#----------------------------------------------------------#
# Action #
#----------------------------------------------------------#
# Defining new alias string
ALIAS=$(echo "$ALIAS" |\
sed -e "s/,/\n/g"|\
sed -e "s/^$dom_alias$//g"|\
sed -e "/^$/d"|\
sed -e ':a;N;$!ba;s/\n/,/g')
2015-04-16 02:43:31 +03:00
tpl_file="$WEBTPL/$WEB_SYSTEM/$WEB_BACKEND/$TPL.tpl"
2013-05-10 11:04:40 +03:00
conf="$HOMEDIR/$user/conf/web/$WEB_SYSTEM.conf"
2013-01-19 23:07:26 +02:00
# Preparing domain values for the template substitution
upd_web_domain_values
# Recreating vhost
del_web_config
add_web_config
if [ "$SSL" = 'yes' ]; then
2015-04-16 02:43:31 +03:00
tpl_file="$WEBTPL/$WEB_SYSTEM/$WEB_BACKEND/$TPL.stpl"
2013-05-10 11:04:40 +03:00
conf="$HOMEDIR/$user/conf/web/s$WEB_SYSTEM.conf"
2013-01-19 23:07:26 +02:00
del_web_config
add_web_config
fi
2013-05-10 11:04:40 +03:00
# Checking proxy
2015-10-28 16:34:41 +02:00
if [ ! -z "$PROXY_SYSTEM" ] && [ ! -z "$PROXY" ]; then
2013-05-10 11:04:40 +03:00
tpl_file="$WEBTPL/$PROXY_SYSTEM/$PROXY.tpl"
conf="$HOMEDIR/$user/conf/web/$PROXY_SYSTEM.conf"
2013-01-19 23:07:26 +02:00
del_web_config
add_web_config
if [ "$SSL" = 'yes' ]; then
2013-05-10 11:04:40 +03:00
tpl_file="$WEBTPL/$PROXY_SYSTEM/$PROXY.stpl"
conf="$HOMEDIR/$user/conf/web/s$PROXY_SYSTEM.conf"
2013-01-19 23:07:26 +02:00
del_web_config
add_web_config
fi
fi
#----------------------------------------------------------#
# Vesta #
#----------------------------------------------------------#
# Update config
update_object_value 'web' 'DOMAIN' "$domain" '$ALIAS' "$ALIAS"
# Update counters
decrease_user_value "$user" '$U_WEB_ALIASES'
2015-10-28 16:34:41 +02:00
# Restarting web server
2013-01-19 23:07:26 +02:00
if [ "$restart" != 'no' ]; then
2013-05-10 11:04:40 +03:00
$BIN/v-restart-web
2015-10-28 16:34:41 +02:00
check_result $? "Web restart failed" >/dev/null
2014-02-06 11:11:45 +02:00
2015-10-28 16:34:41 +02:00
if [ ! -z "$PROXY_SYSTEM" ]; then
$BIN/v-restart-proxy
check_result $? "Proxy restart failed" >/dev/null
2014-02-06 11:11:45 +02:00
fi
2013-01-19 23:07:26 +02:00
fi
# Logging
log_history "deleted alias $dom_alias on $domain"
log_event "$OK" "$EVENT"
exit