-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileCache.php
104 lines (83 loc) · 2.04 KB
/
FileCache.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?php namespace Netcarver;
class FileCache {
/**
*
*/
protected $cache_dir = null;
/**
*
*/
public function setCacheDirectory($dir = null) {
if (is_string($dir) && !empty($dir)) {
$this->cache_dir = realpath("$dir/");
} else {
$this->cache_dir = dirname(__FILE__) . "/cache";
}
//\TD::barDump("Cache Location Set [{$this->cache_dir}]");
}
/**
*
*/
public function urlToKey($url) {
$p = parse_url($url);
$key = $p['host'] . str_replace('/', '-', $p['path']);
return $key;
}
/**
*
*/
protected function keyToStorageLocation($key) {
$dir = $this->cache_dir;
if (!$dir || !is_readable($dir)) {
throw new \Exception("Cache directory is invalid or unreadable.");
}
$location = "{$this->cache_dir}/$key";
//\TD::barDump("Location $location");
return $location;
}
/**
*
*/
public function getEntryForKey($key) {
$file = $this->keyToStorageLocation($key);
$entry = @file_get_contents($file);
if ($entry) {
if (is_callable('gzinflate')) {
$entry = gzinflate($entry);
}
$entry = json_decode($entry, true);
return $entry;
}
return null;
}
/**
*
*/
public function setEntryForKey($key, $entry) {
$file = $this->keyToStorageLocation($key);
$entry = json_encode($entry);
if (is_callable('gzdeflate')) {
$entry = gzdeflate($entry);
}
file_put_contents($file, $entry);
}
/**
*
*/
public function getCachedFiles() {
return glob($this->cache_dir."/*");
}
/**
*
*/
public function clearCache() {
$files = $this->getCachedFiles();
if (count($files)) {
foreach($files as $file) {
if (is_file($file)) {
unlink($file);
}
}
}
}
}