| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- #!/bin/bash
- # info: add log analyzer to generate domain statitics
- # options: USER DOMAIN TYPE
- #
- # The call is used for enabling log analyzer system to a domain. At this time
- # two types of these system is supported - awstats and webalizer. For viewing
- # the domain statistics use http://domain.tld/vstats/ link. Access this page
- # is not protected by default. If you want to secure it with passwords you
- # should use v-add-web-domain_stat_auth script.
- #----------------------------------------------------------#
- # Variable&Function #
- #----------------------------------------------------------#
- # Argument definition
- user=$1
- domain=$2
- type=$3
- # Includes
- source $VESTA/func/main.sh
- source $VESTA/func/domain.sh
- source $VESTA/conf/vesta.conf
- # Additional argument formatting
- format_domain
- format_domain_idn
- #----------------------------------------------------------#
- # Verifications #
- #----------------------------------------------------------#
- check_args '3' "$#" 'USER DOMAIN TYPE'
- is_format_valid 'user' 'domain'
- is_system_enabled "$WEB_SYSTEM" 'WEB_SYSTEM'
- is_type_valid "$STATS_SYSTEM" "$type"
- is_object_valid 'user' 'USER' "$user" "$user"
- is_object_unsuspended 'user' 'USER' "$user"
- is_object_valid 'web' 'DOMAIN' "$domain"
- is_object_unsuspended 'web' 'DOMAIN' "$domain"
- is_object_value_empty 'web' 'DOMAIN' "$domain" '$STATS'
- #----------------------------------------------------------#
- # Action #
- #----------------------------------------------------------#
- # Parse aliases
- get_domain_values 'web'
- # Adding statistic config
- prepare_web_domain_values
- cat $WEBTPL/$type/$type.tpl |\
- sed -e "s|%ip%|$ip|g" \
- -e "s|%web_port%|$WEB_PORT|g" \
- -e "s|%web_system%|$WEB_SYSTEM|g" \
- -e "s|%web_ssl_port%|$WEB_SSL_PORT|g" \
- -e "s|%rgroups%|$WEB_RGROUPs|g" \
- -e "s|%proxy_system%|$PROXY_SYSTEM|g" \
- -e "s|%proxy_port%|$PROXY_PORT|g" \
- -e "s|%proxy_ssl_port%|$PROXY_SSL_PORT|g" \
- -e "s|%domain_idn%|$domain_idn|g" \
- -e "s|%domain%|$domain|g" \
- -e "s|%user%|$user|g" \
- -e "s|%home%|$HOMEDIR|g" \
- -e "s|%alias%|${aliases//,/ }|g" \
- -e "s|%alias_idn%|${aliases_idn//,/ }|g" \
- > $HOMEDIR/$user/conf/web/$type.$domain.conf
- if [ "$type" == 'awstats' ]; then
- rm -f /etc/awstats/$type.$domain_idn.conf
- ln -s $HOMEDIR/$user/conf/web/$type.$domain.conf \
- /etc/awstats/$type.$domain_idn.conf
- else
- mkdir -p /var/lib/webalizer
- fi
- #----------------------------------------------------------#
- # Vesta #
- #----------------------------------------------------------#
- # Schedule statistic processing
- echo "$BIN/v-update-web-domain-stat $user $domain" >> \
- $VESTA/data/queue/webstats.pipe
- # Update config
- update_object_value 'web' 'DOMAIN' "$domain" '$STATS' "$type"
- # Logging
- log_history "enabled web log analyzer for $domain"
- log_event "$OK" "$ARGUMENTS"
- # Build stats
- exec $BIN/v-update-web-domain-stat $user $domain
- exit
|