2006-08-04 01:47:48 +00:00
|
|
|
<?php
|
|
|
|
|
2006-08-17 20:29:34 +00:00
|
|
|
/**
|
2006-08-19 23:06:59 +00:00
|
|
|
* Configuration object that triggers customizable behavior.
|
|
|
|
*
|
|
|
|
* @warning This class is strongly defined: that means that the class
|
|
|
|
* will fail if an undefined directive is retrieved or set.
|
2006-08-17 20:29:34 +00:00
|
|
|
*
|
|
|
|
* @note Many classes that could (although many times don't) use the
|
|
|
|
* configuration object make it a mandatory parameter. This is
|
|
|
|
* because a configuration object should always be forwarded,
|
|
|
|
* otherwise, you run the risk of missing a parameter and then
|
|
|
|
* being stumped when a configuration directive doesn't work.
|
|
|
|
*/
|
2006-08-04 01:47:48 +00:00
|
|
|
class HTMLPurifier_Config
|
|
|
|
{
|
|
|
|
|
2006-08-19 23:06:59 +00:00
|
|
|
/**
|
|
|
|
* Two-level associative array of configuration directives
|
|
|
|
*/
|
2006-08-11 20:23:41 +00:00
|
|
|
var $conf;
|
2006-08-04 01:47:48 +00:00
|
|
|
|
2006-08-27 18:49:16 +00:00
|
|
|
/**
|
2006-09-16 22:36:58 +00:00
|
|
|
* Reference HTMLPurifier_ConfigSchema for value checking
|
2006-08-27 18:49:16 +00:00
|
|
|
*/
|
|
|
|
var $def;
|
|
|
|
|
2006-08-31 20:33:07 +00:00
|
|
|
/**
|
2006-09-30 18:55:17 +00:00
|
|
|
* Cached instance of HTMLPurifier_HTMLDefinition
|
2006-08-31 20:33:07 +00:00
|
|
|
*/
|
|
|
|
var $html_definition;
|
|
|
|
|
|
|
|
/**
|
2006-09-30 18:55:17 +00:00
|
|
|
* Cached instance of HTMLPurifier_CSSDefinition
|
2006-08-31 20:33:07 +00:00
|
|
|
*/
|
|
|
|
var $css_definition;
|
|
|
|
|
2006-08-19 23:06:59 +00:00
|
|
|
/**
|
2006-09-16 22:36:58 +00:00
|
|
|
* @param $definition HTMLPurifier_ConfigSchema that defines what directives
|
2006-08-19 23:06:59 +00:00
|
|
|
* are allowed.
|
|
|
|
*/
|
2006-08-11 20:23:41 +00:00
|
|
|
function HTMLPurifier_Config(&$definition) {
|
2006-08-27 18:49:16 +00:00
|
|
|
$this->conf = $definition->defaults; // set up, copy in defaults
|
|
|
|
$this->def = $definition; // keep a copy around for checking
|
2006-08-11 20:23:41 +00:00
|
|
|
}
|
2006-08-06 20:41:50 +00:00
|
|
|
|
2006-12-15 02:12:03 +00:00
|
|
|
/**
|
|
|
|
* Convenience constructor that creates a config object based on a mixed var
|
2007-01-16 22:22:08 +00:00
|
|
|
* @static
|
2006-12-15 02:12:03 +00:00
|
|
|
* @param mixed $config Variable that defines the state of the config
|
2007-01-21 14:29:46 +00:00
|
|
|
* object. Can be: a HTMLPurifier_Config() object,
|
|
|
|
* an array of directives based on loadArray(),
|
|
|
|
* or a string filename of an ini file.
|
2006-12-15 02:12:03 +00:00
|
|
|
* @return Configured HTMLPurifier_Config object
|
|
|
|
*/
|
|
|
|
function create($config) {
|
|
|
|
if (is_a($config, 'HTMLPurifier_Config')) return $config;
|
|
|
|
$ret = HTMLPurifier_Config::createDefault();
|
2007-01-21 14:29:46 +00:00
|
|
|
if (is_string($config)) $ret->loadIni($config);
|
|
|
|
elseif (is_array($config)) $ret->loadArray($config);
|
2006-12-15 02:12:03 +00:00
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
|
2006-08-19 23:06:59 +00:00
|
|
|
/**
|
|
|
|
* Convenience constructor that creates a default configuration object.
|
2007-01-16 22:22:08 +00:00
|
|
|
* @static
|
2006-08-19 23:06:59 +00:00
|
|
|
* @return Default HTMLPurifier_Config object.
|
|
|
|
*/
|
2006-08-04 01:47:48 +00:00
|
|
|
function createDefault() {
|
2006-09-16 22:36:58 +00:00
|
|
|
$definition =& HTMLPurifier_ConfigSchema::instance();
|
2006-08-11 20:23:41 +00:00
|
|
|
$config = new HTMLPurifier_Config($definition);
|
2006-08-04 01:47:48 +00:00
|
|
|
return $config;
|
|
|
|
}
|
|
|
|
|
2006-08-19 23:06:59 +00:00
|
|
|
/**
|
|
|
|
* Retreives a value from the configuration.
|
|
|
|
* @param $namespace String namespace
|
|
|
|
* @param $key String key
|
|
|
|
*/
|
2007-01-20 18:43:58 +00:00
|
|
|
function get($namespace, $key, $from_alias = false) {
|
2006-11-12 03:35:41 +00:00
|
|
|
if (!isset($this->def->info[$namespace][$key])) {
|
2006-08-11 20:23:41 +00:00
|
|
|
trigger_error('Cannot retrieve value of undefined directive',
|
2006-08-27 18:49:16 +00:00
|
|
|
E_USER_WARNING);
|
2006-08-11 20:23:41 +00:00
|
|
|
return;
|
|
|
|
}
|
2007-01-20 18:43:58 +00:00
|
|
|
if ($this->def->info[$namespace][$key]->class == 'alias') {
|
|
|
|
trigger_error('Cannot get value from aliased directive, use real name',
|
|
|
|
E_USER_ERROR);
|
|
|
|
return;
|
|
|
|
}
|
2006-08-11 20:23:41 +00:00
|
|
|
return $this->conf[$namespace][$key];
|
|
|
|
}
|
|
|
|
|
2006-11-24 06:26:02 +00:00
|
|
|
/**
|
|
|
|
* Retreives an array of directives to values from a given namespace
|
|
|
|
* @param $namespace String namespace
|
|
|
|
*/
|
|
|
|
function getBatch($namespace) {
|
|
|
|
if (!isset($this->def->info[$namespace])) {
|
|
|
|
trigger_error('Cannot retrieve undefined namespace',
|
|
|
|
E_USER_WARNING);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
return $this->conf[$namespace];
|
|
|
|
}
|
|
|
|
|
2006-08-19 23:06:59 +00:00
|
|
|
/**
|
|
|
|
* Sets a value to configuration.
|
|
|
|
* @param $namespace String namespace
|
|
|
|
* @param $key String key
|
|
|
|
* @param $value Mixed value
|
|
|
|
*/
|
2007-01-20 18:43:58 +00:00
|
|
|
function set($namespace, $key, $value, $from_alias = false) {
|
2006-11-12 03:35:41 +00:00
|
|
|
if (!isset($this->def->info[$namespace][$key])) {
|
2006-08-11 20:23:41 +00:00
|
|
|
trigger_error('Cannot set undefined directive to value',
|
2006-08-27 18:49:16 +00:00
|
|
|
E_USER_WARNING);
|
|
|
|
return;
|
|
|
|
}
|
2007-01-20 18:43:58 +00:00
|
|
|
if ($this->def->info[$namespace][$key]->class == 'alias') {
|
|
|
|
if ($from_alias) {
|
|
|
|
trigger_error('Double-aliases not allowed, please fix '.
|
|
|
|
'ConfigSchema bug');
|
|
|
|
}
|
|
|
|
$this->set($this->def->info[$namespace][$key]->namespace,
|
|
|
|
$this->def->info[$namespace][$key]->name,
|
|
|
|
$value, true);
|
|
|
|
return;
|
|
|
|
}
|
2006-11-12 02:59:36 +00:00
|
|
|
$value = $this->def->validate(
|
|
|
|
$value,
|
|
|
|
$this->def->info[$namespace][$key]->type,
|
|
|
|
$this->def->info[$namespace][$key]->allow_null
|
|
|
|
);
|
2006-08-27 18:49:16 +00:00
|
|
|
if (is_string($value)) {
|
|
|
|
// resolve value alias if defined
|
|
|
|
if (isset($this->def->info[$namespace][$key]->aliases[$value])) {
|
|
|
|
$value = $this->def->info[$namespace][$key]->aliases[$value];
|
|
|
|
}
|
|
|
|
if ($this->def->info[$namespace][$key]->allowed !== true) {
|
|
|
|
// check to see if the value is allowed
|
|
|
|
if (!isset($this->def->info[$namespace][$key]->allowed[$value])) {
|
|
|
|
trigger_error('Value not supported', E_USER_WARNING);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-11-12 02:59:36 +00:00
|
|
|
if ($this->def->isError($value)) {
|
2006-08-27 18:49:16 +00:00
|
|
|
trigger_error('Value is of invalid type', E_USER_WARNING);
|
2006-08-11 20:23:41 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
$this->conf[$namespace][$key] = $value;
|
2007-02-14 01:44:06 +00:00
|
|
|
if ($namespace == 'HTML' || $namespace == 'Attr') {
|
|
|
|
// reset HTML definition if relevant attributes changed
|
|
|
|
$this->html_definition = null;
|
|
|
|
}
|
|
|
|
if ($namespace == 'CSS') {
|
|
|
|
$this->css_definition = null;
|
|
|
|
}
|
2006-08-11 20:23:41 +00:00
|
|
|
}
|
|
|
|
|
2006-08-31 20:33:07 +00:00
|
|
|
/**
|
2007-02-04 23:10:10 +00:00
|
|
|
* Retrieves reference to the HTML definition.
|
|
|
|
* @param $raw Return a copy that has not been setup yet. Must be
|
|
|
|
* called before it's been setup, otherwise won't work.
|
2006-08-31 20:33:07 +00:00
|
|
|
*/
|
2007-02-04 23:10:10 +00:00
|
|
|
function &getHTMLDefinition($raw = false) {
|
2007-02-14 01:44:06 +00:00
|
|
|
if (
|
|
|
|
empty($this->html_definition) || // hasn't ever been setup
|
|
|
|
($raw && $this->html_definition->setup) // requesting new one
|
|
|
|
) {
|
2007-02-04 23:10:10 +00:00
|
|
|
$this->html_definition = new HTMLPurifier_HTMLDefinition($this);
|
2007-02-14 01:44:06 +00:00
|
|
|
if ($raw) return $this->html_definition; // no setup!
|
2007-02-04 23:10:10 +00:00
|
|
|
}
|
2007-02-14 01:44:06 +00:00
|
|
|
if (!$this->html_definition->setup) $this->html_definition->setup();
|
2006-08-31 20:33:07 +00:00
|
|
|
return $this->html_definition;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-02-04 23:10:10 +00:00
|
|
|
* Retrieves reference to the CSS definition
|
2006-08-31 20:33:07 +00:00
|
|
|
*/
|
2007-02-04 23:10:10 +00:00
|
|
|
function &getCSSDefinition() {
|
2006-08-31 20:33:07 +00:00
|
|
|
if ($this->css_definition === null) {
|
|
|
|
$this->css_definition = new HTMLPurifier_CSSDefinition();
|
|
|
|
$this->css_definition->setup($this);
|
|
|
|
}
|
|
|
|
return $this->css_definition;
|
|
|
|
}
|
|
|
|
|
2006-10-21 18:18:36 +00:00
|
|
|
/**
|
|
|
|
* Loads configuration values from an array with the following structure:
|
|
|
|
* Namespace.Directive => Value
|
|
|
|
* @param $config_array Configuration associative array
|
|
|
|
*/
|
|
|
|
function loadArray($config_array) {
|
|
|
|
foreach ($config_array as $key => $value) {
|
2006-11-24 06:26:02 +00:00
|
|
|
$key = str_replace('_', '.', $key);
|
2006-10-21 18:18:36 +00:00
|
|
|
if (strpos($key, '.') !== false) {
|
|
|
|
// condensed form
|
|
|
|
list($namespace, $directive) = explode('.', $key);
|
|
|
|
$this->set($namespace, $directive, $value);
|
|
|
|
} else {
|
|
|
|
$namespace = $key;
|
|
|
|
$namespace_values = $value;
|
|
|
|
foreach ($namespace_values as $directive => $value) {
|
|
|
|
$this->set($namespace, $directive, $value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-21 14:29:46 +00:00
|
|
|
/**
|
|
|
|
* Loads configuration values from an ini file
|
|
|
|
* @param $filename Name of ini file
|
|
|
|
*/
|
|
|
|
function loadIni($filename) {
|
|
|
|
$array = parse_ini_file($filename, true);
|
|
|
|
$this->loadArray($array);
|
|
|
|
}
|
|
|
|
|
2006-08-04 01:47:48 +00:00
|
|
|
}
|
|
|
|
|
2007-01-16 22:22:08 +00:00
|
|
|
?>
|