forked from mambaru/btp-webui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
graph_cache.php
88 lines (81 loc) · 2.3 KB
/
graph_cache.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
/**
* Файловый кэш графиков
*
* @package graph_cache
* @author fuse
* @since 14.05.12 15:01
*/
class Graph_Cache
{
/** Время жизни кэша в секундах @var int */
private $ttl;
/** Путь для хранения файлового кэша @var string */
private $cacheDir;
/** Название файла (генерируется) @var string */
private $filename;
/** Расширение файла. По нему определяется тип файла @var string */
private $ext;
public function __construct(array $cacheParams)
{
$this->ttl = 60;
$this->cacheDir = __DIR__ . '/cache/';
$this->filename = md5(serialize($cacheParams));
$this->ext = '.png';
}
/**
* Устанавливает время жизни кэша в секундах
* @param int $ttl
*/
public function setTTL($ttl)
{
$this->ttl = $ttl;
}
/**
* Устанавливает путь для хранения файлового кэша
* @param string $dir
*/
public function setCacheDir($dir)
{
$this->cacheDir = $dir;
}
/**
* Устанавливает расширение файла
* @param string $ext
*/
public function setFileExt($ext)
{
$this->ext = $ext;
}
/**
* Проверяет наличие и актуальность кэша
* @return bool
*/
public function check()
{
$cacheFile = $this->getFilename();
return file_exists($cacheFile) && filemtime($cacheFile) >= (time() - $this->ttl);
}
/**
* Возвращает путь к кэш-файлу
* @return string
*/
public function getFilename()
{
return $this->cacheDir . $this->filename . $this->ext;
}
/**
* output
*
*/
public function output()
{
$fh = fopen($this->getFilename(), "rb");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . "GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
header("Content-type: image/".ltrim($this->ext, '.'));
fpassthru($fh);
}
}