tbrehm
2013-09-04 f2a9b2faec10094514c16ea2c3539f910dc2bc62
server/cron_daily.php
@@ -33,6 +33,7 @@
require(SCRIPT_PATH."/lib/app.inc.php");
set_time_limit(0);
ini_set('error_reporting', E_ALL & ~E_NOTICE);
// make sure server_id is always an int
$conf['server_id'] = intval($conf['server_id']);
@@ -247,7 +248,7 @@
// Create webalizer statistics
#######################################################################################################
function setConfigVar( $filename, $varName, $varValue ) {
function setConfigVar( $filename, $varName, $varValue, $append = 0 ) {
   if($lines = @file($filename)) {
      $out = '';
      $found = 0;
@@ -648,7 +649,7 @@
    global $conf;
    
    if(!is_array($recipients) || count($recipients) < 1) return false;
    if(!is_array($replacements)) $replacements = array();
    if(!is_array($placeholders)) $placeholders = array();
    
    if(file_exists($conf['rootpath'].'/conf-custom/mail/' . $template . '_'.$conf['language'].'.txt')) {
        $lines = file($conf['rootpath'].'/conf-custom/mail/' . $template . '_'.$conf['language'].'.txt');
@@ -744,7 +745,7 @@
            if($rec['traffic_quota_lock'] != 'y' && ($web_config['overtraffic_notify_admin'] == 'y' || $web_config['overtraffic_notify_client'] == 'y')) {
                    
                    $placeholders = array('{domain}' => $rec['domain'],
                                          '{admin_mail}' => $global_config['admin_mail']);
                                          '{admin_mail}' => ($global_config['admin_mail'] != ''? $global_config['admin_mail'] : 'root'));
                    
               $recipients = array();
                    //* send email to admin
@@ -788,7 +789,7 @@
   $global_config = $app->getconf->get_global_config('mail');
   //* Check website disk quota
   $sql = "SELECT domain_id,sys_groupid,domain,system_user,last_quota_notification,DATEDIFF(CURDATE(), last_quota_notification) as `notified_before` FROM web_domain WHERE hd_quota > 0 and (type = 'vhost' OR type = 'vhostsubdomain')";
   $sql = "SELECT domain_id,sys_groupid,domain,system_user,last_quota_notification,DATEDIFF(CURDATE(), last_quota_notification) as `notified_before` FROM web_domain WHERE (type = 'vhost' OR type = 'vhostsubdomain')";
   $records = $app->db->queryAllRecords($sql);
   if(is_array($records) && !empty($records)) {
   
@@ -829,6 +830,30 @@
            $used_ratio = 0;
         }
         
         $rec['ratio'] = number_format($used_ratio * 100, 2, '.', '').'%';
         if($rec['used'] > 1024) {
            $rec['used'] = round($rec['used'] / 1024,2).' MB';
         } else {
            if ($rec['used'] != '') $rec['used'] .= ' KB';
         }
         if($rec['soft'] > 1024) {
            $rec['soft'] = round($rec['soft'] / 1024,2).' MB';
         } elseif($rec['soft'] == 0){
            $rec['soft'] = '----';
         } else {
            $rec['soft'] .= ' KB';
         }
         if($rec['hard'] > 1024) {
            $rec['hard'] = round($rec['hard'] / 1024,2).' MB';
         } elseif($rec['hard'] == 0){
            $rec['hard'] = '----';
         } else {
            $rec['hard'] .= ' KB';
         }
         // send notifications only if 90% or more of the quota are used
         if($used_ratio < 0.9) {
                // reset notification date
@@ -837,7 +862,7 @@
                // send notification - everything ok again
                if($rec['last_quota_notification'] && $web_config['overquota_notify_onok'] == 'y' && ($web_config['overquota_notify_admin'] == 'y' || $web_config['overquota_notify_client'] == 'y')) {
                    $placeholders = array('{domain}' => $rec['domain'],
                                          '{admin_mail}' => $global_config['admin_mail'],
                                          '{admin_mail}' => ($global_config['admin_mail'] != ''? $global_config['admin_mail'] : 'root'),
                                          '{used}' => $rec['used'],
                                          '{soft}' => $rec['soft'],
                                          '{hard}' => $rec['hard'],
@@ -863,25 +888,6 @@
                
                continue;
            }
         $rec['ratio'] = number_format($used_ratio * 100, 2, '.', '').'%';
         if($rec['used'] > 1024) {
            $rec['used'] = round($rec['used'] / 1024,2).' MB';
         } else {
            if ($rec['used'] != '') $rec['used'] .= ' KB';
         }
         if($rec['soft'] > 1024) {
            $rec['soft'] = round($rec['soft'] / 1024,2).' MB';
         } else {
            $rec['soft'] .= ' KB';
         }
         if($rec['hard'] > 1024) {
            $rec['hard'] = round($rec['hard'] / 1024,2).' MB';
         } else {
            $rec['hard'] .= ' KB';
         }
            
            // could a notification be sent?
            $send_notification = false;
@@ -893,7 +899,7 @@
            $app->dbmaster->datalogUpdate('web_domain', "last_quota_notification = CURDATE()", 'domain_id', $rec['domain_id']);
                
                $placeholders = array('{domain}' => $rec['domain'],
                                      '{admin_mail}' => $global_config['admin_mail'],
                                      '{admin_mail}' => ($global_config['admin_mail'] != ''? $global_config['admin_mail'] : 'root'),
                                      '{used}' => $rec['used'],
                                      '{soft}' => $rec['soft'],
                                      '{hard}' => $rec['hard'],
@@ -928,9 +934,10 @@
if ($app->dbmaster == $app->db) {
   $global_config = $app->getconf->get_global_config('mail');
   $mail_config = $app->getconf->get_server_config($conf['server_id'], 'mail');
   //* Check email quota
   $sql = "SELECT mailuser_id,sys_groupid,email,name,quota,last_quota_notification,DATEDIFF(CURDATE(), last_quota_notification) as `notified_before` FROM mail_user WHERE quota > 0";
   $sql = "SELECT mailuser_id,sys_groupid,email,name,quota,last_quota_notification,DATEDIFF(CURDATE(), last_quota_notification) as `notified_before` FROM mail_user";
   $records = $app->db->queryAllRecords($sql);
   if(is_array($records) && !empty($records)) {
   
@@ -957,7 +964,25 @@
         if (!is_numeric($rec['used'])) $rec['used']=$rec['used'][1];
            
         // used space ratio
         $used_ratio = $rec['used']/$rec['quota'];
         if($rec['quota'] > 0){
            $used_ratio = $rec['used']/$rec['quota'];
         } else {
            $used_ratio = 0;
         }
         $rec['ratio'] = number_format($used_ratio * 100, 2, '.', '').'%';
         if($rec['quota'] > 0){
            $rec['quota'] = round($rec['quota'] / 1048576,4).' MB';
         } else {
            $rec['quota'] = '----';
         }
         if($rec['used'] < 1544000) {
            $rec['used'] = round($rec['used'] / 1024,4).' KB';
         } else {
            $rec['used'] = round($rec['used'] / 1048576,4).' MB';
         }
         
         // send notifications only if 90% or more of the quota are used
         if($used_ratio < 0.9) {
@@ -967,7 +992,7 @@
                // send notification - everything ok again
                if($rec['last_quota_notification'] && $mail_config['overquota_notify_onok'] == 'y' && ($mail_config['overquota_notify_admin'] == 'y' || $mail_config['overquota_notify_client'] == 'y')) {
                    $placeholders = array('{email}' => $rec['email'],
                              '{admin_mail}' => $global_config['admin_mail'],
                              '{admin_mail}' => ($global_config['admin_mail'] != ''? $global_config['admin_mail'] : 'root'),
                              '{used}' => $rec['used'],
                              '{name}' => $rec['name'],
                              '{quota}' => $rec['quota'],
@@ -993,19 +1018,8 @@
                continue;
            }
         $rec['ratio'] = number_format($used_ratio * 100, 2, '.', '').'%';
         $rec['quota'] = round($rec['quota'] / 1048576,4).' MB';
         if($rec['used'] < 1544000) {
            $rec['used'] = round($rec['used'] / 1024,4).' KB';
         } else {
            $rec['used'] = round($rec['used'] / 1048576,4).' MB';
         }
            
         //* Send quota notifications
         $mail_config = $app->getconf->get_server_config($conf['server_id'], 'mail');
            // could a notification be sent?
            $send_notification = false;
            if(!$rec['last_quota_notification']) $send_notification = true; // not yet notified
@@ -1015,7 +1029,7 @@
            $app->dbmaster->datalogUpdate('mail_user', "last_quota_notification = CURDATE()", 'mailuser_id', $rec['mailuser_id']);
                
                $placeholders = array('{email}' => $rec['email'],
                          '{admin_mail}' => $global_config['admin_mail'],
                          '{admin_mail}' => ($global_config['admin_mail'] != ''? $global_config['admin_mail'] : 'root'),
                          '{used}' => $rec['used'],
                          '{name}' => $rec['name'],
                          '{quota}' => $rec['quota'],
@@ -1218,7 +1232,8 @@
            $db_id = $rec['database_id'];
            $db_name = $rec['database_name'];
            $db_backup_file = 'db_'.$db_name.'_'.date('Y-m-d_H-i').'.sql';
            $command = "mysqldump -h '".escapeshellcmd($clientdb_host)."' -u '".escapeshellcmd($clientdb_user)."' -p'".escapeshellcmd($clientdb_password)."' -c --add-drop-table --create-options --quick --result-file='".$db_backup_dir.'/'.$db_backup_file."' '".$db_name."'";
            //$command = "mysqldump -h '".escapeshellcmd($clientdb_host)."' -u '".escapeshellcmd($clientdb_user)."' -p'".escapeshellcmd($clientdb_password)."' -c --add-drop-table --create-options --quick --result-file='".$db_backup_dir.'/'.$db_backup_file."' '".$db_name."'";
            $command = "mysqldump -h ".escapeshellarg($clientdb_host)." -u ".escapeshellarg($clientdb_user)." -p".escapeshellarg($clientdb_password)." -c --add-drop-table --create-options --quick --result-file='".$db_backup_dir.'/'.$db_backup_file."' '".$db_name."'";
            exec($command, $tmp_output, $retval);
            //* Compress the backup with gzip