forked from berwinter/uvr1611
-
Notifications
You must be signed in to change notification settings - Fork 2
/
latest.php
61 lines (53 loc) · 1.39 KB
/
latest.php
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
include_once("lib/backend/uvr1611.inc.php");
include_once("lib/error.inc.php");
include_once("lib/config.inc.php");
try {
header('Cache-Control: no-cache, must-revalidate');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Content-type: application/json; charset=utf-8');
$config = Config::getInstance();
$now = time();
$date = isset($_GET["date"]) ? $_GET["date"] : $now;
if($date < $now || !$config->app->latestcache) {
// connect to database
$database = Database::getInstance();
echo preg_replace('/"(-?\d+\.?\d*)"/', '$1', json_encode($database->queryLatest($date)));
}
else
{
$data = load_cache("uvr1611_latest", $config->app->latestcache);
if(!$data)
{
$uvr = Uvr1611::getInstance();
$latest = $uvr->getLatest();
$latest["info"]["cached"] = false;
$data = json_encode($latest);
save_cache($latest,"uvr1611_latest");
}
echo $data;
}
}
catch(Exception $e) {
sendAjaxError($e);
}
function save_cache($data, $key) {
$temp = sys_get_temp_dir();
$key = md5($key);
$data["info"]["cached"] = true;
$data = serialize(json_encode($data));
file_put_contents("$temp/$key", $data);
}
function load_cache($key, $expire) {
$temp = sys_get_temp_dir();
$key = md5($key);
$path = "$temp/$key";
if(file_exists($path))
{
if(time() < (filemtime($path) + $expire)) {
return unserialize(file_get_contents($path));
}
unlink($path);
}
return false;
}