forked from BoldGrid/w3-total-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cache_File_Cleaner_Generic.php
149 lines (127 loc) · 3.16 KB
/
Cache_File_Cleaner_Generic.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<?php
namespace W3TC;
/**
* Generic file cache cleaner class
*/
class Cache_File_Cleaner_Generic extends Cache_File_Cleaner {
/**
* Number of items processed
*
* @var integer
*/
private $processed_count = 0;
/**
* Cache expire time
*
* @var int
*/
private $_expire = 0;
/**
* ???
*
* @var int
*/
private $time_min_valid = -1;
/**
* ???
*
* @var int
*/
private $old_file_time_min_valid = -1;
/**
* PHP5-style constructor
*
* @param array $config
*/
function __construct( $config = array() ) {
parent::__construct( $config );
$this->_expire = ( isset( $config['expire'] ) ? (int) $config['expire'] : 0 );
if ( ! $this->_expire ) {
$this->_expire = 0;
} elseif ( $this->_expire > W3TC_CACHE_FILE_EXPIRE_MAX ) {
$this->_expire = W3TC_CACHE_FILE_EXPIRE_MAX;
}
if ( ! empty( $config['time_min_valid'] ) ) {
$this->time_min_valid = $config['time_min_valid'];
$this->old_file_time_min_valid = $config['time_min_valid'];
} elseif ( $this->_expire > 0 ) {
$this->time_min_valid = time() - $this->_expire;
$this->old_file_time_min_valid = time() - $this->_expire * 5;
}
}
function _clean( $path, $remove = false ) {
$dir = false;
if ( is_dir( $path ) ) {
$dir = @opendir( $path );
}
if ( $dir ) {
while ( ( $entry = @readdir( $dir ) ) !== false ) {
if ( $entry == '.' || $entry == '..' ) {
continue;
}
$full_path = $path . DIRECTORY_SEPARATOR . $entry;
foreach ( $this->_exclude as $mask ) {
if ( fnmatch( $mask, basename( $entry ) ) ) {
continue 2;
}
}
if ( @is_dir( $full_path ) ) {
$this->_clean( $full_path );
} else {
$this->_clean_file( $entry, $full_path );
}
}
@closedir( $dir );
if ( $this->is_empty_dir( $path ) )
@rmdir( $path );
}
}
function _clean_file( $entry, $full_path ) {
if ( substr( $entry, -4 ) === '_old' ) {
if ( ! $this->is_old_file_valid( $full_path ) ) {
$this->processed_count++;
@unlink( $full_path ); //phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
}
} elseif ( !$this->is_valid( $full_path ) ) {
$old_entry_path = $full_path . '_old';
$this->processed_count++;
if ( !@rename( $full_path, $old_entry_path ) ) {
// if we can delete old entry -
// do second attempt to store in old-entry file
if ( @unlink( $old_entry_path ) ) {
if ( !@rename( $full_path, $old_entry_path ) ) {
// last attempt - just remove entry
@unlink( $full_path );
}
}
}
}
}
/**
* Checks if file is valid
*
* @param string $file
* @return bool
*/
function is_valid( $file ) {
if ( $this->time_min_valid > 0 && file_exists( $file ) ) {
$ftime = @filemtime( $file );
if ( $ftime && $ftime >= $this->time_min_valid ) {
return true;
}
}
return false;
}
public function is_old_file_valid( $file ) {
if ( $this->old_file_time_min_valid > 0 && file_exists( $file ) ) {
$ftime = @filemtime( $file );
if ( $ftime && $ftime >= $this->old_file_time_min_valid ) {
return true;
}
}
return false;
}
function is_empty_dir( $dir ) {
return ( $files = @scandir( $dir ) ) && count( $files ) <= 2;
}
}