2006-08-11 20:23:41 +00:00
|
|
|
<?php
|
|
|
|
|
2006-08-19 23:06:59 +00:00
|
|
|
/**
|
|
|
|
* Configuration definition, defines directives and their defaults.
|
|
|
|
*/
|
2006-09-16 22:36:58 +00:00
|
|
|
class HTMLPurifier_ConfigSchema {
|
2006-08-11 20:23:41 +00:00
|
|
|
|
2006-08-19 23:06:59 +00:00
|
|
|
/**
|
2006-08-27 18:49:16 +00:00
|
|
|
* Defaults of the directives and namespaces.
|
2006-08-19 23:06:59 +00:00
|
|
|
* @note This shares the exact same structure as HTMLPurifier_Config::$conf
|
|
|
|
*/
|
2007-11-25 02:24:39 +00:00
|
|
|
public $defaults = array();
|
2006-08-27 18:49:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Definition of the directives.
|
|
|
|
*/
|
2007-11-25 02:24:39 +00:00
|
|
|
public $info = array();
|
2006-08-11 20:23:41 +00:00
|
|
|
|
2008-01-27 19:41:40 +00:00
|
|
|
/**
|
|
|
|
* Application-wide singleton
|
|
|
|
*/
|
|
|
|
static protected $singleton;
|
|
|
|
|
2008-03-04 15:06:00 +00:00
|
|
|
/**
|
|
|
|
* Variable parser.
|
|
|
|
*/
|
|
|
|
protected $parser;
|
|
|
|
|
|
|
|
public function __construct() {
|
2008-03-05 03:51:09 +00:00
|
|
|
$this->parser = new HTMLPurifier_VarParser_Flexible();
|
2008-03-04 15:06:00 +00:00
|
|
|
}
|
|
|
|
|
2006-08-19 23:06:59 +00:00
|
|
|
/**
|
2008-02-10 20:34:39 +00:00
|
|
|
* Unserializes the default ConfigSchema.
|
2006-08-19 23:06:59 +00:00
|
|
|
*/
|
2008-02-10 20:34:39 +00:00
|
|
|
public static function makeFromSerial() {
|
|
|
|
return unserialize(file_get_contents(HTMLPURIFIER_PREFIX . '/HTMLPurifier/ConfigSchema/schema.ser'));
|
2006-08-11 20:23:41 +00:00
|
|
|
}
|
|
|
|
|
2006-08-19 23:06:59 +00:00
|
|
|
/**
|
|
|
|
* Retrieves an instance of the application-wide configuration definition.
|
|
|
|
*/
|
2007-11-25 02:24:39 +00:00
|
|
|
public static function &instance($prototype = null) {
|
2006-08-11 20:23:41 +00:00
|
|
|
if ($prototype !== null) {
|
2008-01-27 19:41:40 +00:00
|
|
|
HTMLPurifier_ConfigSchema::$singleton = $prototype;
|
|
|
|
} elseif (HTMLPurifier_ConfigSchema::$singleton === null || $prototype === true) {
|
2008-02-10 20:34:39 +00:00
|
|
|
HTMLPurifier_ConfigSchema::$singleton = HTMLPurifier_ConfigSchema::makeFromSerial();
|
2006-08-11 20:23:41 +00:00
|
|
|
}
|
2008-01-27 19:41:40 +00:00
|
|
|
return HTMLPurifier_ConfigSchema::$singleton;
|
|
|
|
}
|
|
|
|
|
2006-08-19 23:06:59 +00:00
|
|
|
/**
|
|
|
|
* Defines a directive for configuration
|
2008-03-22 03:55:59 +00:00
|
|
|
* @warning Will fail of directive's namespace is defined.
|
|
|
|
* @warning This method's signature is slightly different from the legacy
|
|
|
|
* define() static method! Beware!
|
2006-08-19 23:06:59 +00:00
|
|
|
* @param $namespace Namespace the directive is in
|
|
|
|
* @param $name Key of directive
|
|
|
|
* @param $default Default value of directive
|
2006-08-27 18:49:16 +00:00
|
|
|
* @param $type Allowed type of the directive. See
|
|
|
|
* HTMLPurifier_DirectiveDef::$type for allowed values
|
2008-03-22 03:55:59 +00:00
|
|
|
* @param $allow_null Whether or not to allow null values
|
2006-08-19 23:06:59 +00:00
|
|
|
*/
|
2008-03-22 03:55:59 +00:00
|
|
|
public function add($namespace, $name, $default, $type, $allow_null) {
|
|
|
|
$default = $this->parser->parse($default, $type, $allow_null);
|
|
|
|
$this->info[$namespace][$name] = new HTMLPurifier_ConfigDef_Directive();
|
|
|
|
$this->info[$namespace][$name]->type = $type;
|
|
|
|
$this->info[$namespace][$name]->allow_null = $allow_null;
|
|
|
|
$this->defaults[$namespace][$name] = $default;
|
2006-08-11 20:23:41 +00:00
|
|
|
}
|
|
|
|
|
2006-08-19 23:06:59 +00:00
|
|
|
/**
|
|
|
|
* Defines a namespace for directives to be put into.
|
2008-03-22 03:55:59 +00:00
|
|
|
* @warning This is slightly different from the corresponding static
|
|
|
|
* method.
|
2006-08-19 23:06:59 +00:00
|
|
|
* @param $namespace Namespace's name
|
|
|
|
*/
|
2008-03-22 03:55:59 +00:00
|
|
|
public function addNamespace($namespace) {
|
2008-01-27 19:41:40 +00:00
|
|
|
$this->info[$namespace] = array();
|
|
|
|
$this->defaults[$namespace] = array();
|
|
|
|
}
|
|
|
|
|
2006-08-27 18:49:16 +00:00
|
|
|
/**
|
|
|
|
* Defines a directive value alias.
|
|
|
|
*
|
|
|
|
* Directive value aliases are convenient for developers because it lets
|
|
|
|
* them set a directive to several values and get the same result.
|
|
|
|
* @param $namespace Directive's namespace
|
|
|
|
* @param $name Name of Directive
|
2008-03-22 03:55:59 +00:00
|
|
|
* @param $aliases Hash of aliased values to the real alias
|
2006-08-27 18:49:16 +00:00
|
|
|
*/
|
2008-01-27 19:41:40 +00:00
|
|
|
public function addValueAliases($namespace, $name, $aliases) {
|
2006-08-27 18:49:16 +00:00
|
|
|
foreach ($aliases as $alias => $real) {
|
2008-01-27 19:41:40 +00:00
|
|
|
$this->info[$namespace][$name]->aliases[$alias] = $real;
|
2006-08-27 18:49:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines a set of allowed values for a directive.
|
2008-03-22 03:55:59 +00:00
|
|
|
* @warning This is slightly different from the corresponding static
|
|
|
|
* method definition.
|
2006-08-27 18:49:16 +00:00
|
|
|
* @param $namespace Namespace of directive
|
|
|
|
* @param $name Name of directive
|
2008-03-22 03:55:59 +00:00
|
|
|
* @param $allowed Lookup array of allowed values
|
2006-08-27 18:49:16 +00:00
|
|
|
*/
|
2008-03-22 03:55:59 +00:00
|
|
|
public function addAllowedValues($namespace, $name, $allowed) {
|
2008-01-27 19:41:40 +00:00
|
|
|
$directive =& $this->info[$namespace][$name];
|
2007-01-20 22:59:20 +00:00
|
|
|
$type = $directive->type;
|
2008-03-22 03:55:59 +00:00
|
|
|
$directive->allowed = $allowed;
|
2008-01-27 19:41:40 +00:00
|
|
|
}
|
|
|
|
|
2007-01-20 18:43:58 +00:00
|
|
|
/**
|
|
|
|
* Defines a directive alias for backwards compatibility
|
|
|
|
* @param $namespace
|
|
|
|
* @param $name Directive that will be aliased
|
|
|
|
* @param $new_namespace
|
|
|
|
* @param $new_name Directive that the alias will be to
|
|
|
|
*/
|
2008-01-27 19:41:40 +00:00
|
|
|
public function addAlias($namespace, $name, $new_namespace, $new_name) {
|
2008-03-22 03:55:59 +00:00
|
|
|
$this->info[$namespace][$name] = new HTMLPurifier_ConfigDef_DirectiveAlias($new_namespace, $new_name);
|
2008-01-27 19:41:40 +00:00
|
|
|
$this->info[$new_namespace][$new_name]->directiveAliases[] = "$namespace.$name";
|
2007-01-20 18:43:58 +00:00
|
|
|
}
|
|
|
|
|
2008-03-22 03:55:59 +00:00
|
|
|
// DEPRECATED METHODS
|
|
|
|
|
|
|
|
/** @see HTMLPurifier_ConfigSchema->set() */
|
|
|
|
public static function define($namespace, $name, $default, $type, $description) {
|
|
|
|
HTMLPurifier_ConfigSchema::deprecated(__METHOD__);
|
|
|
|
// process modifiers (OPTIMIZE!)
|
|
|
|
$type_values = explode('/', $type, 2);
|
|
|
|
$type = $type_values[0];
|
|
|
|
$modifier = isset($type_values[1]) ? $type_values[1] : false;
|
|
|
|
$allow_null = ($modifier === 'null');
|
|
|
|
$def =& HTMLPurifier_ConfigSchema::instance();
|
|
|
|
$def->add($namespace, $name, $default, $type, $allow_null);
|
2006-08-27 18:49:16 +00:00
|
|
|
}
|
|
|
|
|
2008-03-22 03:55:59 +00:00
|
|
|
/** @see HTMLPurifier_ConfigSchema->addNamespace() */
|
|
|
|
public static function defineNamespace($namespace, $description) {
|
|
|
|
HTMLPurifier_ConfigSchema::deprecated(__METHOD__);
|
|
|
|
$def =& HTMLPurifier_ConfigSchema::instance();
|
|
|
|
$def->addNamespace($namespace);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @see HTMLPurifier_ConfigSchema->addValueAliases() */
|
|
|
|
public static function defineValueAliases($namespace, $name, $aliases) {
|
|
|
|
HTMLPurifier_ConfigSchema::deprecated(__METHOD__);
|
|
|
|
$def =& HTMLPurifier_ConfigSchema::instance();
|
|
|
|
$def->addValueAliases($namespace, $name, $aliases);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @see HTMLPurifier_ConfigSchema->addAllowedValues() */
|
|
|
|
public static function defineAllowedValues($namespace, $name, $allowed_values) {
|
|
|
|
HTMLPurifier_ConfigSchema::deprecated(__METHOD__);
|
|
|
|
$allowed = array();
|
|
|
|
foreach ($allowed_values as $value) {
|
|
|
|
$allowed[$value] = true;
|
|
|
|
}
|
|
|
|
$def =& HTMLPurifier_ConfigSchema::instance();
|
|
|
|
$def->addAllowedValues($namespace, $name, $allowed);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @see HTMLPurifier_ConfigSchema->addAlias() */
|
|
|
|
public static function defineAlias($namespace, $name, $new_namespace, $new_name) {
|
|
|
|
HTMLPurifier_ConfigSchema::deprecated(__METHOD__);
|
|
|
|
$def =& HTMLPurifier_ConfigSchema::instance();
|
|
|
|
$def->addAlias($namespace, $name, $new_namespace, $new_name);
|
2006-11-12 02:59:36 +00:00
|
|
|
}
|
2008-03-04 15:06:00 +00:00
|
|
|
|
|
|
|
/** @deprecated, use HTMLPurifier_VarParser->parse() */
|
|
|
|
public function validate($a, $b, $c = false) {
|
|
|
|
trigger_error("HTMLPurifier_ConfigSchema->validate deprecated, use HTMLPurifier_VarParser->parse instead", E_USER_NOTICE);
|
|
|
|
return $this->parser->parse($a, $b, $c);
|
|
|
|
}
|
|
|
|
|
2008-03-22 03:55:59 +00:00
|
|
|
/**
|
|
|
|
* Throws an E_USER_NOTICE stating that a method is deprecated.
|
|
|
|
*/
|
|
|
|
private static function deprecated($method) {
|
|
|
|
trigger_error("Static HTMLPurifier_ConfigSchema::$method deprecated, use add*() method instead", E_USER_NOTICE);
|
|
|
|
}
|
|
|
|
|
2006-08-27 18:49:16 +00:00
|
|
|
}
|
|
|
|
|
2007-06-27 13:58:32 +00:00
|
|
|
|