Newer
Older

Pascal Dreissen
committed
class dashlet_limits
{
public function show($limit_to_client_id = 0)

Pascal Dreissen
committed
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
{
global $app, $conf;
$limits = array();
/* Limits to be shown*/
$limits[] = array('field' => 'limit_mailquota',
'db_table' => 'mail_user',
'db_where' => 'quota > 0', /* Count only posive value of quota, negative value -1 is unlimited */
'q_type' => 'quota');
$limits[] = array('field' => 'limit_maildomain',
'db_table' => 'mail_domain',
'db_where' => '');
$limits[] = array('field' => 'limit_mailmailinglist',
'db_table' => 'mail_mailinglist',
'db_where' => '');
$limits[] = array('field' => 'limit_mailbox',
'db_table' => 'mail_user',
'db_where' => '');
$limits[] = array('field' => 'limit_mailalias',
'db_table' => 'mail_forwarding',
'db_where' => "type = 'alias'");
$limits[] = array('field' => 'limit_mailaliasdomain',
'db_table' => 'mail_forwarding',
'db_where' => "type = 'aliasdomain'");
$limits[] = array('field' => 'limit_mailforward',
'db_table' => 'mail_forwarding',
'db_where' => "type = 'forward'");
$limits[] = array('field' => 'limit_mailcatchall',
'db_table' => 'mail_forwarding',
'db_where' => "type = 'catchall'");
$limits[] = array('field' => 'limit_mailrouting',
'db_table' => 'mail_transport',
'db_where' => "");
$limits[] = array('field' => 'limit_mail_wblist',
'db_table' => 'mail_access',
'db_where' => "");

Pascal Dreissen
committed
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
$limits[] = array('field' => 'limit_mailfilter',
'db_table' => 'mail_user_filter',
'db_where' => "");
$limits[] = array('field' => 'limit_fetchmail',
'db_table' => 'mail_get',
'db_where' => "");
$limits[] = array('field' => 'limit_spamfilter_wblist',
'db_table' => 'spamfilter_wblist',
'db_where' => "");
$limits[] = array('field' => 'limit_spamfilter_user',
'db_table' => 'spamfilter_users',
'db_where' => "");
$limits[] = array('field' => 'limit_spamfilter_policy',
'db_table' => 'spamfilter_policy',
'db_where' => "");
$limits[] = array('field' => 'limit_web_quota',
'db_table' => 'web_domain',
'db_where' => 'hd_quota > 0', /* Count only posive value of quota, negative value -1 is unlimited */
'q_type' => 'hd_quota');
$limits[] = array('field' => 'limit_web_domain',
'db_table' => 'web_domain',
'db_where' => "type = 'vhost'");
$limits[] = array('field' => 'limit_web_subdomain',
'db_table' => 'web_domain',
'db_where' => "(type = 'subdomain' OR type = 'vhostsubdomain')");
$limits[] = array('field' => 'limit_web_aliasdomain',
'db_table' => 'web_domain',
'db_where' => "(type = 'alias' OR type = 'vhostalias')");
$limits[] = array('field' => 'limit_ftp_user',
'db_table' => 'ftp_user',
'db_where' => "");
$limits[] = array('field' => 'limit_shell_user',
'db_table' => 'shell_user',
'db_where' => "");
$limits[] = array('field' => 'limit_dns_zone',
'db_table' => 'dns_soa',
'db_where' => "");
$limits[] = array('field' => 'limit_dns_slave_zone',
'db_table' => 'dns_slave',
'db_where' => "");
$limits[] = array('field' => 'limit_dns_record',
'db_table' => 'dns_rr',
'db_where' => "");
$limits[] = array('field' => 'limit_database_quota',
'db_table' => 'web_database',
'db_where' => 'database_quota > 0', /* Count only posive value of quota, negative value -1 is unlimited */
'q_type' => 'database_quota');
$limits[] = array('field' => 'limit_database',
'db_table' => 'web_database',
'db_where' => "");
$limits[] = array('field' => 'limit_cron',
'db_table' => 'cron',
'db_where' => "");
$limits[] = array('field' => 'limit_client',
'db_table' => 'client',
'db_where' => "");
$limits[] = array('field' => 'limit_domain',
'db_table' => 'domain',
'db_where' => "");
//* Loading Template
$app->uses('tpl,tform');
$tpl = new tpl;
$tpl->newTemplate("dashlets/templates/limits.htm");
$wb = array();
$lng_file = 'lib/lang/'.$_SESSION['s']['language'].'_dashlet_limits.lng';
if (is_file($lng_file)) {
include $lng_file;
}
$lng_file = ISPC_ROOT_PATH . '/lib/lang/'.$_SESSION['s']['language'].'.lng';
if (is_file($lng_file)) {
include $lng_file;
}

Pascal Dreissen
committed
$tpl->setVar($wb);
$client_id = $_SESSION['s']['user']['client_id'];
} else {
$client_id = $limit_to_client_id;
$client_group_id = $app->functions->intval($_SESSION["s"]["user"]["default_group"]);
$client = $app->db->queryOneRecord("SELECT * FROM client WHERE client_id = ?", $client_id);

Pascal Dreissen
committed
$rows = array();
foreach ($limits as $limit) {
$field = $limit['field'];
if ($user_is_admin) {
$value = $wb['unlimited_txt'];
} else {
$value = $client[$field];
}

Pascal Dreissen
committed
if ($value != 0 || $value == $wb['unlimited_txt']) {
$value_formatted = ($value == '-1')?$wb['unlimited_txt']:$value;
if (isset($limit['q_type']) && $limit['q_type'] != '') {
$usage = $this->_get_assigned_quota($limit, $client_id) . " MB";

Pascal Dreissen
committed
$value_formatted = ($value == '-1')?$wb['unlimited_txt']:$value . " MB";
} else {
$usage = $this->_get_limit_usage($limit, $client_id);

Pascal Dreissen
committed
}
$percentage = ($value == '-1' || intval($value) == 0 || trim($value) == '' ? -1 : round(100 * (int)$usage / (int)$value));

Pascal Dreissen
committed
$progressbar = $percentage > 100 ? 100 : $percentage;
$rows[] = array('field' => $field,
'field_txt' => $wb[$field.'_txt'],
'value' => $value_formatted,
'value_raw' => $value,
'usage' => $usage,
'usage_raw' => $usage,
'percentage' => $percentage,
'progressbar' => $progressbar
);
}
}
$rows = $app->functions->htmlentities($rows);
$tpl->setLoop('rows', $rows);
return $tpl->grab();
}
public function _get_limit_usage($limit, $limit_to_client_id)

Pascal Dreissen
committed
{
global $app;
$sql = "SELECT count(sys_userid) as number FROM ?? WHERE ";
if ($limit['db_where'] != '') {
$sql .= $limit['db_where']." AND ";
}
$sql .= $app->tform->getAuthSQL('r', '', $limit_to_client_id);
// TEST to show reseller data.
//$sql .= $app->tform->getAuthSQL('r', '', 0, '3,28,39');
//echo $sql;

Pascal Dreissen
committed
$rec = $app->db->queryOneRecord($sql, $limit['db_table']);
return $rec['number'];
}
public function _get_assigned_quota($limit, $limit_to_client_id)

Pascal Dreissen
committed
{
global $app;
$sql = "SELECT sum(??) as number FROM ?? WHERE ";
if ($limit['db_where'] != '') {
$sql .= $limit['db_where']." AND ";
}
$sql .= $app->tform->getAuthSQL('r', '', $limit_to_client_id);

Pascal Dreissen
committed
$rec = $app->db->queryOneRecord($sql, $limit['q_type'], $limit['db_table']);
if ($limit['db_table']=='mail_user') {
$quotaMB = $rec['number'] / 1048576;
} // Mail quota is in bytes, must be converted to MB
else {
$quotaMB = $rec['number'];
}
return $quotaMB;
}