forked from outroll/vesta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathv-update-web-domains-traff
executable file
·79 lines (57 loc) · 2.05 KB
/
v-update-web-domains-traff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/bin/bash
# info: update domains bandwidth usage
# options: USER
#
# The function recalculates bandwidth usage for all user webdomains.
#----------------------------------------------------------#
# Variable&Function #
#----------------------------------------------------------#
# Argument defenition
user=$1
# Includes
source $VESTA/func/main.sh
source $VESTA/func/domain.sh
source $VESTA/conf/vesta.conf
#----------------------------------------------------------#
# Verifications #
#----------------------------------------------------------#
check_args '1' "$#" 'USER'
validate_format 'user'
is_system_enabled "$WEB_SYSTEM" 'WEB_SYSTEM'
is_object_valid 'user' 'USER' "$user" "$user"
#----------------------------------------------------------#
# Action #
#----------------------------------------------------------#
for domain in $(search_objects 'web' 'SUSPENDED' "no" 'DOMAIN'); do
# Reset BW counter on the start of the month
if [ "$(date +%d)" = '01' ]; then
update_object_value 'web' 'DOMAIN' "$domain" '$U_BANDWIDTH' '0'
fi
log_file="/var/log/$WEB_SYSTEM/domains/$domain.bytes"
bytes=0
# Parsing log
while read line; do
if [[ "$line" =~ ^[0-9]+$ ]]; then
line=${line#0}
if [ ! -z "$line" ]; then
bytes=$(($bytes + $line))
fi
fi
done < $log_file
# Converting to Mb
mb=$(echo "$bytes / 1024 / 1024"|bc)
# Nulling log
echo > $log_file
get_domain_values 'web'
bandwidth=$((U_BANDWIDTH + mb))
# Updating bandwidth value in config
update_object_value 'web' 'DOMAIN' "$domain" '$U_BANDWIDTH' "$bandwidth"
done
#----------------------------------------------------------#
# Vesta #
#----------------------------------------------------------#
# Recalculating user bandwidth
recalc_user_bandwidth_usage
# No Logging
#log_event "$OK" "$EVENT"
exit