2007-05-25 01:32:29 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once 'HTMLPurifier/DefinitionCache.php';
|
|
|
|
|
2007-06-16 20:46:44 +00:00
|
|
|
HTMLPurifier_ConfigSchema::define(
|
|
|
|
'Cache', 'SerializerPath', null, 'string/null', '
|
|
|
|
<p>
|
|
|
|
Absolute path with no trailing slash to store serialized definitions in.
|
|
|
|
Default is within the
|
|
|
|
HTML Purifier library inside DefinitionCache/Serializer. This
|
|
|
|
path must be writable by the webserver. This directive has been
|
2007-06-20 03:00:36 +00:00
|
|
|
available since 2.0.0.
|
2007-06-16 20:46:44 +00:00
|
|
|
</p>
|
|
|
|
');
|
|
|
|
|
2007-05-25 01:32:29 +00:00
|
|
|
class HTMLPurifier_DefinitionCache_Serializer extends
|
|
|
|
HTMLPurifier_DefinitionCache
|
|
|
|
{
|
|
|
|
|
|
|
|
function add($def, $config) {
|
2007-05-27 13:25:54 +00:00
|
|
|
if (!$this->checkDefType($def)) return;
|
2007-05-25 01:32:29 +00:00
|
|
|
$file = $this->generateFilePath($config);
|
|
|
|
if (file_exists($file)) return false;
|
2007-06-23 14:38:16 +00:00
|
|
|
if (!$this->_prepareDir($config)) return false;
|
2007-05-25 01:32:29 +00:00
|
|
|
return $this->_write($file, serialize($def));
|
|
|
|
}
|
|
|
|
|
|
|
|
function set($def, $config) {
|
2007-05-27 13:25:54 +00:00
|
|
|
if (!$this->checkDefType($def)) return;
|
2007-05-25 01:32:29 +00:00
|
|
|
$file = $this->generateFilePath($config);
|
2007-06-23 14:38:16 +00:00
|
|
|
if (!$this->_prepareDir($config)) return false;
|
2007-05-25 01:32:29 +00:00
|
|
|
return $this->_write($file, serialize($def));
|
|
|
|
}
|
|
|
|
|
2007-05-27 13:25:54 +00:00
|
|
|
function replace($def, $config) {
|
|
|
|
if (!$this->checkDefType($def)) return;
|
|
|
|
$file = $this->generateFilePath($config);
|
|
|
|
if (!file_exists($file)) return false;
|
2007-06-23 14:38:16 +00:00
|
|
|
if (!$this->_prepareDir($config)) return false;
|
2007-05-27 13:25:54 +00:00
|
|
|
return $this->_write($file, serialize($def));
|
|
|
|
}
|
|
|
|
|
2007-05-25 01:32:29 +00:00
|
|
|
function get($config) {
|
|
|
|
$file = $this->generateFilePath($config);
|
|
|
|
if (!file_exists($file)) return false;
|
|
|
|
return unserialize(file_get_contents($file));
|
|
|
|
}
|
|
|
|
|
|
|
|
function remove($config) {
|
|
|
|
$file = $this->generateFilePath($config);
|
|
|
|
if (!file_exists($file)) return false;
|
|
|
|
return unlink($file);
|
|
|
|
}
|
|
|
|
|
2007-06-16 20:46:44 +00:00
|
|
|
function flush($config) {
|
2007-06-23 14:38:16 +00:00
|
|
|
if (!$this->_prepareDir($config)) return false;
|
2007-06-16 20:46:44 +00:00
|
|
|
$dir = $this->generateDirectoryPath($config);
|
2007-05-27 13:25:54 +00:00
|
|
|
$dh = opendir($dir);
|
|
|
|
while (false !== ($filename = readdir($dh))) {
|
|
|
|
if (empty($filename)) continue;
|
|
|
|
if ($filename[0] === '.') continue;
|
|
|
|
unlink($dir . '/' . $filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-29 18:19:42 +00:00
|
|
|
function cleanup($config) {
|
2007-06-23 14:38:16 +00:00
|
|
|
if (!$this->_prepareDir($config)) return false;
|
2007-06-16 20:46:44 +00:00
|
|
|
$dir = $this->generateDirectoryPath($config);
|
2007-05-29 18:19:42 +00:00
|
|
|
$dh = opendir($dir);
|
|
|
|
while (false !== ($filename = readdir($dh))) {
|
|
|
|
if (empty($filename)) continue;
|
|
|
|
if ($filename[0] === '.') continue;
|
|
|
|
$key = substr($filename, 0, strlen($filename) - 4);
|
|
|
|
if ($this->isOld($key, $config)) unlink($dir . '/' . $filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-25 01:32:29 +00:00
|
|
|
/**
|
|
|
|
* Generates the file path to the serial file corresponding to
|
|
|
|
* the configuration and definition name
|
|
|
|
*/
|
|
|
|
function generateFilePath($config) {
|
|
|
|
$key = $this->generateKey($config);
|
2007-06-16 20:46:44 +00:00
|
|
|
return $this->generateDirectoryPath($config) . '/' . $key . '.ser';
|
2007-05-27 13:25:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates the path to the directory contain this cache's serial files
|
|
|
|
* @note No trailing slash
|
|
|
|
*/
|
2007-06-16 20:46:44 +00:00
|
|
|
function generateDirectoryPath($config) {
|
2007-06-23 14:05:09 +00:00
|
|
|
$base = $this->generateBaseDirectoryPath($config);
|
|
|
|
return $base . '/' . $this->type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates path to base directory that contains all definition type
|
|
|
|
* serials
|
|
|
|
*/
|
|
|
|
function generateBaseDirectoryPath($config) {
|
2007-06-16 20:46:44 +00:00
|
|
|
$base = $config->get('Cache', 'SerializerPath');
|
|
|
|
$base = is_null($base) ? dirname(__FILE__) . '/Serializer' : $base;
|
2007-06-23 14:05:09 +00:00
|
|
|
return $base;
|
2007-05-25 01:32:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convenience wrapper function for file_put_contents
|
|
|
|
* @param $file File name to write to
|
|
|
|
* @param $data Data to write into file
|
|
|
|
* @return Number of bytes written if success, or false if failure.
|
|
|
|
*/
|
|
|
|
function _write($file, $data) {
|
|
|
|
static $file_put_contents;
|
|
|
|
if ($file_put_contents === null) {
|
|
|
|
$file_put_contents = function_exists('file_put_contents');
|
|
|
|
}
|
|
|
|
if ($file_put_contents) {
|
|
|
|
return file_put_contents($file, $data);
|
|
|
|
}
|
|
|
|
$fh = fopen($file, 'w');
|
|
|
|
if (!$fh) return false;
|
2007-05-25 01:44:01 +00:00
|
|
|
$status = fwrite($fh, $data);
|
2007-05-25 01:32:29 +00:00
|
|
|
fclose($fh);
|
|
|
|
return $status;
|
|
|
|
}
|
|
|
|
|
2007-06-16 20:46:44 +00:00
|
|
|
/**
|
|
|
|
* Prepares the directory that this type stores the serials in
|
2007-06-23 14:38:16 +00:00
|
|
|
* @return True if successful
|
2007-06-16 20:46:44 +00:00
|
|
|
*/
|
|
|
|
function _prepareDir($config) {
|
|
|
|
$directory = $this->generateDirectoryPath($config);
|
|
|
|
if (!is_dir($directory)) {
|
2007-06-23 14:38:16 +00:00
|
|
|
$base = $this->generateBaseDirectoryPath($config);
|
|
|
|
if (!is_dir($base)) {
|
|
|
|
trigger_error('Base directory '.$base.' does not exist,
|
|
|
|
please create or change using %Cache.SerializerPath',
|
|
|
|
E_USER_ERROR);
|
|
|
|
return false;
|
|
|
|
} elseif (!$this->_testPermissions($base)) {
|
|
|
|
return false;
|
|
|
|
}
|
2007-06-16 20:46:44 +00:00
|
|
|
mkdir($directory);
|
2007-06-23 14:38:16 +00:00
|
|
|
} elseif (!$this->_testPermissions($directory)) {
|
|
|
|
return false;
|
2007-06-16 20:46:44 +00:00
|
|
|
}
|
2007-06-23 14:38:16 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests permissions on a directory and throws out friendly
|
|
|
|
* error messages and attempts to chmod it itself if possible
|
|
|
|
*/
|
|
|
|
function _testPermissions($dir) {
|
|
|
|
// early abort, if it is writable, everything is hunky-dory
|
|
|
|
if (is_writable($dir)) return true;
|
|
|
|
if (!is_dir($dir)) {
|
|
|
|
// generally, you'll want to handle this beforehand
|
|
|
|
// so a more specific error message can be given
|
|
|
|
trigger_error('Directory '.$dir.' does not exist',
|
|
|
|
E_USER_ERROR);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (function_exists('posix_getuid')) {
|
|
|
|
// POSIX system, we can give more specific advice
|
|
|
|
if (fileowner($dir) === posix_getuid()) {
|
|
|
|
// we can chmod it ourselves
|
|
|
|
chmod($dir, 0755);
|
|
|
|
return true;
|
|
|
|
} elseif (filegroup($dir) === posix_getgid()) {
|
|
|
|
$chmod = '775';
|
|
|
|
} else {
|
|
|
|
// PHP's probably running as nobody, so we'll
|
|
|
|
// need to give global permissions
|
|
|
|
$chmod = '777';
|
|
|
|
}
|
|
|
|
trigger_error('Directory '.$dir.' not writable, '.
|
|
|
|
'please chmod to ' . $chmod,
|
|
|
|
E_USER_ERROR);
|
|
|
|
} else {
|
|
|
|
// generic error message
|
|
|
|
trigger_error('Directory '.$dir.' not writable, '.
|
|
|
|
'please alter file permissions',
|
|
|
|
E_USER_ERROR);
|
|
|
|
}
|
|
|
|
return false;
|
2007-06-16 20:46:44 +00:00
|
|
|
}
|
|
|
|
|
2007-05-25 01:32:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|