summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics_reporting/hooks/cron.inc.php
blob: a48f74c2536289aa3f8f77197f2107b1777bd699 (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
<?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);
		}
	}
}