| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- #!/bin/bash
- # info: add dns domain or dns record based on web domain alias restart
- # options: user domain
- #
- # The function adds dns domain or dns record based on web domain alias.
- #----------------------------------------------------------#
- # Variable&Function #
- #----------------------------------------------------------#
- # Argument defenition
- user=$1
- domain=$(echo $2 | sed -e 's/\.*$//g' -e 's/^\.*//g')
- domain_idn=$(idn -t --quiet -a "$domain")
- dom_alias=$(idn -t --quiet -u "$3" )
- dom_alias=$(echo $dom_alias | sed -e 's/\.*$//g' -e 's/^\.*//g')
- dom_alias=$(echo $dom_alias | tr '[:upper:]' '[:lower:]')
- dom_alias_idn=$(idn -t --quiet -a "$dom_alias" )
- restart="$4"
- # Includes
- source $VESTA/conf/vesta.conf
- source $VESTA/func/main.sh
- source $VESTA/func/domain.sh
- #----------------------------------------------------------#
- # Verifications #
- #----------------------------------------------------------#
- check_args '3' "$#" 'user domain alias'
- validate_format 'user' 'domain'
- is_system_enabled "$WEB_SYSTEM"
- is_system_enabled "$DNS_SYSTEM"
- is_object_valid 'user' 'USER' "$user"
- is_object_unsuspended 'user' 'USER' "$user"
- is_object_valid 'web' 'DOMAIN' "$domain"
- is_object_unsuspended 'web' 'DOMAIN' "$domain"
- #----------------------------------------------------------#
- # Action #
- #----------------------------------------------------------#
- # Parsing domain values
- get_domain_values 'web'
- # Check if it a simple domain
- if [ $(echo -e "${dom_alias//\./\n}" | wc -l) -le 2 ]; then
- if [ ! -e "$USER_DATA/dns/$dom_alias.conf" ]; then
- $BIN/v-add-dns-domain $user $dom_alias $IP '' '' '' '' '' $restart
- fi
- else
- # Check subdomain
- sub=$(echo "$dom_alias" | cut -f1 -d . -s)
- dom=$(echo "$dom_alias" | sed -e "s/^$sub.//" )
- if [ ! -e "$USER_DATA/dns/$dom.conf" ]; then
- $BIN/v-add-dns-domain $user $dom $IP '' '' '' '' '' $restart
- $BIN/v-add-dns-domain-record $user $dom "$sub" A $IP '' '' $restart
- else
- if [ "$sub" == '*' ]; then
- rec=$(grep -w "RECORD='\*'" $USER_DATA/dns/$dom.conf)
- else
- rec=$(grep -w "RECORD='$sub'" $USER_DATA/dns/$dom.conf)
- fi
- if [ -z "$rec" ]; then
- $BIN/v-add-dns-domain-record $user $dom "$sub" A $IP '' '' $restart
- fi
- fi
- fi
- #----------------------------------------------------------#
- # Vesta #
- #----------------------------------------------------------#
- # No Logging
- exit
|