diff options
author | VirtualTam <virtualtam@flibidi.net> | 2015-08-13 21:39:51 +0200 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2015-08-13 23:51:31 +0200 |
commit | aedd62e2b84b4ea0d3c03f5c23ec594f4ebb1c17 (patch) | |
tree | 003ac85fc10d2b9b5051f299fda083a9ced69972 /application/Cache.php | |
parent | 01e48f269df59e02798dad4a698c125d76b0ed70 (diff) | |
download | Shaarli-aedd62e2b84b4ea0d3c03f5c23ec594f4ebb1c17.tar.gz Shaarli-aedd62e2b84b4ea0d3c03f5c23ec594f4ebb1c17.tar.zst Shaarli-aedd62e2b84b4ea0d3c03f5c23ec594f4ebb1c17.zip |
Cache: simplify cached content cleanup, improve tests
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'application/Cache.php')
-rw-r--r-- | application/Cache.php | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/application/Cache.php b/application/Cache.php index 9c7e818f..5d050165 100644 --- a/application/Cache.php +++ b/application/Cache.php | |||
@@ -7,26 +7,18 @@ | |||
7 | * Purges all cached pages | 7 | * Purges all cached pages |
8 | * | 8 | * |
9 | * @param string $pageCacheDir page cache directory | 9 | * @param string $pageCacheDir page cache directory |
10 | * | ||
11 | * @return mixed an error string if the directory is missing | ||
10 | */ | 12 | */ |
11 | function purgeCachedPages($pageCacheDir) | 13 | function purgeCachedPages($pageCacheDir) |
12 | { | 14 | { |
13 | if (! is_dir($pageCacheDir)) { | 15 | if (! is_dir($pageCacheDir)) { |
14 | return; | 16 | $error = 'Cannot purge '.$pageCacheDir.': no directory'; |
17 | error_log($error); | ||
18 | return $error; | ||
15 | } | 19 | } |
16 | 20 | ||
17 | // TODO: check write access to the cache directory | 21 | array_map('unlink', glob($pageCacheDir.'/*.cache')); |
18 | |||
19 | $handler = opendir($pageCacheDir); | ||
20 | if ($handler == false) { | ||
21 | return; | ||
22 | } | ||
23 | |||
24 | while (($filename = readdir($handler)) !== false) { | ||
25 | if (endsWith($filename, '.cache')) { | ||
26 | unlink($pageCacheDir.'/'.$filename); | ||
27 | } | ||
28 | } | ||
29 | closedir($handler); | ||
30 | } | 22 | } |
31 | 23 | ||
32 | /** | 24 | /** |