blob: 45f39719b7ecced49dc58302b379b0ecae8cde98 (
plain) (
blame)
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
|
<?php
if (RemoteReport::isReportingEnabled()) {
$nextReporting = RemoteReport::getReportingTimestamp();
// It's time to generate a new report
if ($nextReporting <= time()) {
RemoteReport::writeNextReportingTimestamp();
$from = strtotime("-7 days", $nextReporting);
$to = $nextReporting;
$statisticsReport = json_encode(RemoteReport::generateReport($from, $to));
$params = array("action" => "statistics", "data" => $statisticsReport);
$result = Download::asStringPost(CONFIG_REPORTING_URL, $params, 30, $code);
if ($code != 200) {
EventLog::warning("Statistics Reporting failed: " . $code, $result);
} else {
EventLog::info('Statistics report sent to ' . CONFIG_REPORTING_URL);
}
}
}
|