diff --git a/scripts/OpenSIPS/quotaCheck.php b/scripts/OpenSIPS/quotaCheck.php index e4aac54..72c8711 100755 --- a/scripts/OpenSIPS/quotaCheck.php +++ b/scripts/OpenSIPS/quotaCheck.php @@ -1,72 +1,80 @@ #!/usr/bin/env php withName('quotaCheck'); +$handler = $logger->popHandler(); +$formatter = new LineFormatter("%channel%: %message% %extra%", null, false, true); +$handler->setFormatter($formatter); +$logger->pushHandler($handler); $b = time(); $lockFile = sprintf("/var/lock/CDRTool_QuotaCheck.lock"); $abort_text = "Another check is in progress. Try again later.\n"; $f = fopen($lockFile, "w"); if (flock($f, LOCK_EX + LOCK_NB, $w)) { if ($w) { print $abort_text; critical($abort_text); exit(2); } } else { print $abort_text; critical($abort_text); exit(1); } foreach ($DATASOURCES as $k => $v) { if (strlen($v["UserQuotaClass"])) { unset($CDRS); $class_name = $v["class"]; $CDRS = new $class_name($k); $Quota_class = $v["UserQuotaClass"]; $log=sprintf("Checking user quotas for data source %s\n", $v['name']); logger($log); //print $log; $Quota = new $Quota_class($CDRS); $Quota->checkQuota($v['UserQuotaNotify']); $d = time() - $b; if ($d > 5) { $log = sprintf("Runtime: %d s", $d); logger($log); } } } function deleteQuotaCheckLockfile($lockFile) { if (!unlink($lockFile)) { errorAndPrint("Error: cannot delete lock file $lockFile"); } }