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 .
2008-12-06 07:28:20 +00:00
*
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 .
2008-12-06 07:28:20 +00:00
*
2007-11-25 02:24:39 +00:00
* @ todo Reconsider some of the public member variables
2006-08-17 20:29:34 +00:00
*/
2006-08-04 01:47:48 +00:00
class HTMLPurifier_Config
{
2008-12-06 07:28:20 +00:00
2007-05-27 13:25:54 +00:00
/**
* HTML Purifier ' s version
*/
2009-02-16 18:31:48 +00:00
public $version = '3.3.0' ;
2008-12-06 07:28:20 +00:00
2006-08-19 23:06:59 +00:00
/**
2008-12-06 07:28:20 +00:00
* Bool indicator whether or not to automatically finalize
2007-11-25 02:24:39 +00:00
* the object if a read operation is done
2006-08-19 23:06:59 +00:00
*/
2007-11-25 02:24:39 +00:00
public $autoFinalize = true ;
2008-12-06 07:28:20 +00:00
2007-11-25 02:24:39 +00:00
// protected member variables
2008-12-06 07:28:20 +00:00
2006-08-27 18:49:16 +00:00
/**
2007-11-25 02:24:39 +00:00
* Namespace indexed array of serials for specific namespaces ( see
* getSerial () for more info ) .
2006-08-27 18:49:16 +00:00
*/
2007-11-25 02:24:39 +00:00
protected $serials = array ();
2008-12-06 07:28:20 +00:00
2006-08-31 20:33:07 +00:00
/**
2007-11-25 02:24:39 +00:00
* Serial for entire configuration object
2006-08-31 20:33:07 +00:00
*/
2007-11-25 02:24:39 +00:00
protected $serial ;
2008-12-06 07:28:20 +00:00
2008-03-04 15:06:00 +00:00
/**
* Parser for variables
*/
protected $parser ;
2008-12-06 07:28:20 +00:00
2007-05-20 18:06:51 +00:00
/**
2007-11-25 02:24:39 +00:00
* Reference HTMLPurifier_ConfigSchema for value checking
* @ note This is public for introspective purposes . Please don ' t
* abuse !
2007-05-20 18:06:51 +00:00
*/
2007-11-25 02:24:39 +00:00
public $def ;
2008-12-06 07:28:20 +00:00
2007-05-29 20:21:33 +00:00
/**
2007-11-25 02:24:39 +00:00
* Indexed array of definitions
2007-05-29 20:21:33 +00:00
*/
2007-11-25 02:24:39 +00:00
protected $definitions ;
2008-12-06 07:28:20 +00:00
2007-06-28 23:01:27 +00:00
/**
2007-11-25 02:24:39 +00:00
* Bool indicator whether or not config is finalized
2007-06-28 23:01:27 +00:00
*/
2007-11-25 02:24:39 +00:00
protected $finalized = false ;
2008-12-06 07:28:20 +00:00
2009-02-02 23:42:23 +00:00
/**
* Property list containing configuration directives .
*/
protected $plist ;
2009-02-20 00:17:49 +00:00
/**
* Whether or not a set is taking place due to an
* alias lookup .
*/
private $aliasMode ;
/**
* Set to false if you do not want line and file numbers in errors
* ( useful when unit testing )
*/
public $chatty = true ;
2009-05-26 03:38:49 +00:00
/**
* Current lock ; only gets to this namespace are allowed .
*/
private $lock ;
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 .
*/
2009-02-20 05:13:09 +00:00
public function __construct ( $definition , $parent = null ) {
$parent = $parent ? $parent : $definition -> defaultPlist ;
$this -> plist = new HTMLPurifier_PropertyList ( $parent );
2009-02-02 23:42:23 +00:00
$this -> def = $definition ; // keep a copy around for checking
2008-03-05 03:51:09 +00:00
$this -> parser = new HTMLPurifier_VarParser_Flexible ();
2006-08-11 20:23:41 +00:00
}
2008-12-06 07:28:20 +00:00
2006-12-15 02:12:03 +00:00
/**
* Convenience constructor that creates a config object based on a mixed var
* @ 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 .
2008-02-16 00:40:30 +00:00
* @ param HTMLPurifier_ConfigSchema Schema object
2006-12-15 02:12:03 +00:00
* @ return Configured HTMLPurifier_Config object
*/
2008-02-16 00:40:30 +00:00
public static function create ( $config , $schema = null ) {
2007-11-25 02:24:39 +00:00
if ( $config instanceof HTMLPurifier_Config ) {
2007-06-19 01:29:50 +00:00
// pass-through
return $config ;
2007-05-21 01:36:15 +00:00
}
2008-02-16 00:40:30 +00:00
if ( ! $schema ) {
$ret = HTMLPurifier_Config :: createDefault ();
} else {
$ret = new HTMLPurifier_Config ( $schema );
}
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 ;
}
2008-12-06 07:28:20 +00:00
2009-02-20 05:13:09 +00:00
/**
* Creates a new config object that inherits from a previous one .
* @ param HTMLPurifier_Config $config Configuration object to inherit
* from .
* @ return HTMLPurifier_Config object with $config as its parent .
*/
public static function inherit ( HTMLPurifier_Config $config ) {
return new HTMLPurifier_Config ( $config -> def , $config -> plist );
}
2006-08-19 23:06:59 +00:00
/**
* Convenience constructor that creates a default configuration object .
* @ return Default HTMLPurifier_Config object .
*/
2007-11-25 02:24:39 +00:00
public static function createDefault () {
2008-04-23 02:40:17 +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 ;
}
2008-12-06 07:28:20 +00:00
2006-08-19 23:06:59 +00:00
/**
* Retreives a value from the configuration .
* @ param $key String key
*/
2009-02-20 00:17:49 +00:00
public function get ( $key , $a = null ) {
if ( $a !== null ) {
$this -> triggerError ( " Using deprecated API: use \$ config->get(' $key . $a ') instead " , E_USER_WARNING );
$key = " $key . $a " ;
}
2009-02-20 05:13:09 +00:00
if ( ! $this -> finalized ) $this -> autoFinalize ();
2009-02-07 07:53:20 +00:00
if ( ! isset ( $this -> def -> info [ $key ])) {
2007-06-16 20:21:00 +00:00
// can't add % due to SimpleTest bug
2009-02-20 00:17:49 +00:00
$this -> triggerError ( 'Cannot retrieve value of undefined directive ' . htmlspecialchars ( $key ),
2006-08-27 18:49:16 +00:00
E_USER_WARNING );
2006-08-11 20:23:41 +00:00
return ;
}
2009-02-07 07:53:20 +00:00
if ( isset ( $this -> def -> info [ $key ] -> isAlias )) {
$d = $this -> def -> info [ $key ];
2009-02-20 00:17:49 +00:00
$this -> triggerError ( 'Cannot get value from aliased directive, use real name ' . $d -> key ,
2007-01-20 18:43:58 +00:00
E_USER_ERROR );
return ;
}
2009-05-26 03:38:49 +00:00
if ( $this -> lock ) {
list ( $ns ) = explode ( '.' , $key );
if ( $ns !== $this -> lock ) {
$this -> triggerError ( 'Cannot get value of namespace ' . $ns . ' when lock for ' . $this -> lock . ' is active, this probably indicates a Definition setup method is accessing directives that are not within its namespace' , E_USER_ERROR );
return ;
}
}
2009-02-07 07:53:20 +00:00
return $this -> plist -> get ( $key );
2006-08-11 20:23:41 +00:00
}
2008-12-06 07:28:20 +00:00
2006-11-24 06:26:02 +00:00
/**
* Retreives an array of directives to values from a given namespace
* @ param $namespace String namespace
*/
2007-11-25 02:24:39 +00:00
public function getBatch ( $namespace ) {
2009-02-20 05:13:09 +00:00
if ( ! $this -> finalized ) $this -> autoFinalize ();
2009-02-07 07:53:20 +00:00
$full = $this -> getAll ();
if ( ! isset ( $full [ $namespace ])) {
2009-02-20 00:17:49 +00:00
$this -> triggerError ( 'Cannot retrieve undefined namespace ' . htmlspecialchars ( $namespace ),
2006-11-24 06:26:02 +00:00
E_USER_WARNING );
return ;
}
2009-02-02 23:42:23 +00:00
return $full [ $namespace ];
2006-11-24 06:26:02 +00:00
}
2008-12-06 07:28:20 +00:00
2007-05-29 20:21:33 +00:00
/**
* Returns a md5 signature of a segment of the configuration object
* that uniquely identifies that particular configuration
2007-06-23 14:05:09 +00:00
* @ note Revision is handled specially and is removed from the batch
* before processing !
2007-05-29 20:21:33 +00:00
* @ param $namespace Namespace to get serial for
*/
2007-11-25 02:24:39 +00:00
public function getBatchSerial ( $namespace ) {
2007-05-29 20:21:33 +00:00
if ( empty ( $this -> serials [ $namespace ])) {
2007-06-23 14:05:09 +00:00
$batch = $this -> getBatch ( $namespace );
unset ( $batch [ 'DefinitionRev' ]);
$this -> serials [ $namespace ] = md5 ( serialize ( $batch ));
2007-05-29 20:21:33 +00:00
}
return $this -> serials [ $namespace ];
}
2008-12-06 07:28:20 +00:00
2007-06-28 23:01:27 +00:00
/**
* Returns a md5 signature for the entire configuration object
* that uniquely identifies that particular configuration
*/
2007-11-25 02:24:39 +00:00
public function getSerial () {
2007-06-28 23:01:27 +00:00
if ( empty ( $this -> serial )) {
$this -> serial = md5 ( serialize ( $this -> getAll ()));
}
return $this -> serial ;
}
2008-12-06 07:28:20 +00:00
2007-05-28 02:20:55 +00:00
/**
* Retrieves all directives , organized by namespace
2009-05-30 02:10:47 +00:00
* @ warning This is a pretty inefficient function , avoid if you can
2007-05-28 02:20:55 +00:00
*/
2007-11-25 02:24:39 +00:00
public function getAll () {
2009-02-20 05:13:09 +00:00
if ( ! $this -> finalized ) $this -> autoFinalize ();
2009-02-02 23:42:23 +00:00
$ret = array ();
foreach ( $this -> plist -> squash () as $name => $value ) {
list ( $ns , $key ) = explode ( '.' , $name , 2 );
$ret [ $ns ][ $key ] = $value ;
}
return $ret ;
2007-05-28 02:20:55 +00:00
}
2008-12-06 07:28:20 +00:00
2006-08-19 23:06:59 +00:00
/**
* Sets a value to configuration .
* @ param $key String key
* @ param $value Mixed value
*/
2009-02-20 00:17:49 +00:00
public function set ( $key , $value , $a = null ) {
if ( strpos ( $key , '.' ) === false ) {
$namespace = $key ;
$directive = $value ;
$value = $a ;
$key = " $key . $directive " ;
$this -> triggerError ( " Using deprecated API: use \$ config->set(' $key ', ...) instead " , E_USER_NOTICE );
} else {
list ( $namespace ) = explode ( '.' , $key );
}
2007-05-20 18:06:51 +00:00
if ( $this -> isFinalized ( 'Cannot set directive after finalization' )) return ;
2009-02-07 07:53:20 +00:00
if ( ! isset ( $this -> def -> info [ $key ])) {
2009-02-20 00:17:49 +00:00
$this -> triggerError ( 'Cannot set undefined directive ' . htmlspecialchars ( $key ) . ' to value' ,
2006-08-27 18:49:16 +00:00
E_USER_WARNING );
return ;
}
2009-02-07 07:53:20 +00:00
$def = $this -> def -> info [ $key ];
2008-12-06 07:28:20 +00:00
2008-05-26 04:35:12 +00:00
if ( isset ( $def -> isAlias )) {
2009-02-20 00:17:49 +00:00
if ( $this -> aliasMode ) {
$this -> triggerError ( 'Double-aliases not allowed, please fix ' .
2009-02-07 07:53:20 +00:00
'ConfigSchema bug with' . $key , E_USER_ERROR );
2008-04-03 21:53:06 +00:00
return ;
2007-01-20 18:43:58 +00:00
}
2009-02-20 00:17:49 +00:00
$this -> aliasMode = true ;
$this -> set ( $def -> key , $value );
$this -> aliasMode = false ;
$this -> triggerError ( " $key is an alias, preferred directive name is { $def -> key } " , E_USER_NOTICE );
2007-01-20 18:43:58 +00:00
return ;
}
2008-12-06 07:28:20 +00:00
2008-05-23 17:10:26 +00:00
// Raw type might be negative when using the fully optimized form
// of stdclass, which indicates allow_null == true
2008-05-26 04:35:12 +00:00
$rtype = is_int ( $def ) ? $def : $def -> type ;
2008-05-23 17:10:26 +00:00
if ( $rtype < 0 ) {
$type = - $rtype ;
$allow_null = true ;
} else {
$type = $rtype ;
2008-05-26 04:35:12 +00:00
$allow_null = isset ( $def -> allow_null );
2008-05-23 17:10:26 +00:00
}
2008-12-06 07:28:20 +00:00
2008-03-04 15:06:00 +00:00
try {
2008-05-23 17:10:26 +00:00
$value = $this -> parser -> parse ( $value , $type , $allow_null );
2008-03-04 15:06:00 +00:00
} catch ( HTMLPurifier_VarParserException $e ) {
2009-02-20 00:17:49 +00:00
$this -> triggerError ( 'Value for ' . $key . ' is of invalid type, should be ' . HTMLPurifier_VarParser :: getTypeName ( $type ), E_USER_WARNING );
2008-03-04 15:06:00 +00:00
return ;
}
2008-05-26 04:35:12 +00:00
if ( is_string ( $value ) && is_object ( $def )) {
2006-08-27 18:49:16 +00:00
// resolve value alias if defined
2008-05-26 04:35:12 +00:00
if ( isset ( $def -> aliases [ $value ])) {
$value = $def -> aliases [ $value ];
2006-08-27 18:49:16 +00:00
}
2008-05-26 04:35:12 +00:00
// check to see if the value is allowed
if ( isset ( $def -> allowed ) && ! isset ( $def -> allowed [ $value ])) {
2009-02-20 00:17:49 +00:00
$this -> triggerError ( 'Value not supported, valid values are: ' .
2008-05-26 04:35:12 +00:00
$this -> _listify ( $def -> allowed ), E_USER_WARNING );
return ;
2006-08-27 18:49:16 +00:00
}
}
2009-02-07 07:53:20 +00:00
$this -> plist -> set ( $key , $value );
2008-12-06 07:28:20 +00:00
2007-05-20 19:29:05 +00:00
// reset definitions if the directives they depend on changed
2008-12-06 07:28:20 +00:00
// this is a very costly process, so it's discouraged
2007-05-20 19:29:05 +00:00
// with finalization
2009-05-26 03:38:49 +00:00
if ( $namespace == 'HTML' || $namespace == 'CSS' || $namespace == 'URI' ) {
2007-05-29 18:19:42 +00:00
$this -> definitions [ $namespace ] = null ;
2007-02-14 01:44:06 +00:00
}
2008-12-06 07:28:20 +00:00
2007-05-29 20:21:33 +00:00
$this -> serials [ $namespace ] = false ;
2006-08-11 20:23:41 +00:00
}
2008-12-06 07:28:20 +00:00
2007-06-16 20:21:00 +00:00
/**
* Convenience function for error reporting
*/
2007-11-25 02:24:39 +00:00
private function _listify ( $lookup ) {
2007-06-16 20:21:00 +00:00
$list = array ();
foreach ( $lookup as $name => $b ) $list [] = $name ;
return implode ( ', ' , $list );
}
2008-12-06 07:28:20 +00:00
2006-08-31 20:33:07 +00:00
/**
2008-04-23 02:40:17 +00:00
* Retrieves object reference to the HTML definition .
2007-02-04 23:10:10 +00:00
* @ 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
*/
2008-04-23 02:40:17 +00:00
public function getHTMLDefinition ( $raw = false ) {
return $this -> getDefinition ( 'HTML' , $raw );
2006-08-31 20:33:07 +00:00
}
2008-12-06 07:28:20 +00:00
2006-08-31 20:33:07 +00:00
/**
2008-04-23 02:40:17 +00:00
* Retrieves object reference to the CSS 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
*/
2008-04-23 02:40:17 +00:00
public function getCSSDefinition ( $raw = false ) {
return $this -> getDefinition ( 'CSS' , $raw );
2007-05-25 01:32:29 +00:00
}
2008-12-06 07:28:20 +00:00
2007-05-25 01:32:29 +00:00
/**
2007-05-29 18:19:42 +00:00
* Retrieves a definition
* @ param $type Type of definition : HTML , CSS , etc
* @ param $raw Whether or not definition should be returned raw
2007-05-25 01:32:29 +00:00
*/
2008-04-23 02:40:17 +00:00
public function getDefinition ( $type , $raw = false ) {
2009-02-20 05:13:09 +00:00
if ( ! $this -> finalized ) $this -> autoFinalize ();
2009-05-26 03:38:49 +00:00
// temporarily suspend locks, so we can handle recursive definition calls
$lock = $this -> lock ;
$this -> lock = null ;
2007-05-29 20:21:33 +00:00
$factory = HTMLPurifier_DefinitionCacheFactory :: instance ();
$cache = $factory -> create ( $type , $this );
2009-05-26 03:38:49 +00:00
$this -> lock = $lock ;
2007-05-29 18:19:42 +00:00
if ( ! $raw ) {
// see if we can quickly supply a definition
if ( ! empty ( $this -> definitions [ $type ])) {
if ( ! $this -> definitions [ $type ] -> setup ) {
$this -> definitions [ $type ] -> setup ( $this );
2007-06-23 14:05:09 +00:00
$cache -> set ( $this -> definitions [ $type ], $this );
2007-05-29 18:19:42 +00:00
}
return $this -> definitions [ $type ];
}
// memory check missed, try cache
$this -> definitions [ $type ] = $cache -> get ( $this );
if ( $this -> definitions [ $type ]) {
// definition in cache, return it
return $this -> definitions [ $type ];
}
} elseif (
! empty ( $this -> definitions [ $type ]) &&
! $this -> definitions [ $type ] -> setup
) {
// raw requested, raw in memory, quick return
return $this -> definitions [ $type ];
2007-05-25 01:32:29 +00:00
}
2007-05-29 18:19:42 +00:00
// quick checks failed, let's create the object
if ( $type == 'HTML' ) {
$this -> definitions [ $type ] = new HTMLPurifier_HTMLDefinition ();
} elseif ( $type == 'CSS' ) {
$this -> definitions [ $type ] = new HTMLPurifier_CSSDefinition ();
2007-08-02 01:12:27 +00:00
} elseif ( $type == 'URI' ) {
$this -> definitions [ $type ] = new HTMLPurifier_URIDefinition ();
2007-05-29 18:19:42 +00:00
} else {
2008-04-23 02:40:17 +00:00
throw new HTMLPurifier_Exception ( " Definition of $type type not supported " );
2007-05-29 18:19:42 +00:00
}
// quick abort if raw
2007-06-16 20:21:00 +00:00
if ( $raw ) {
2009-02-20 00:17:49 +00:00
if ( is_null ( $this -> get ( $type . '.DefinitionID' ))) {
2007-06-16 20:21:00 +00:00
// fatally error out if definition ID not set
2008-04-23 02:40:17 +00:00
throw new HTMLPurifier_Exception ( " Cannot retrieve raw version without specifying % $type .DefinitionID " );
2007-06-16 20:21:00 +00:00
}
return $this -> definitions [ $type ];
}
2007-05-29 18:19:42 +00:00
// set it up
2009-05-26 03:38:49 +00:00
$this -> lock = $type ;
2007-05-29 18:19:42 +00:00
$this -> definitions [ $type ] -> setup ( $this );
2009-05-26 03:38:49 +00:00
$this -> lock = null ;
2007-05-29 18:19:42 +00:00
// save in cache
$cache -> set ( $this -> definitions [ $type ], $this );
return $this -> definitions [ $type ];
2006-08-31 20:33:07 +00:00
}
2008-12-06 07:28:20 +00:00
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
*/
2007-11-25 02:24:39 +00:00
public function loadArray ( $config_array ) {
2007-05-20 18:06:51 +00:00
if ( $this -> isFinalized ( 'Cannot load directives after finalization' )) return ;
2006-10-21 18:18:36 +00:00
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 ) {
2009-02-20 00:17:49 +00:00
$this -> set ( $key , $value );
2006-10-21 18:18:36 +00:00
} else {
$namespace = $key ;
$namespace_values = $value ;
foreach ( $namespace_values as $directive => $value ) {
2009-02-20 00:17:49 +00:00
$this -> set ( $namespace . '.' . $directive , $value );
2006-10-21 18:18:36 +00:00
}
}
}
}
2008-12-06 07:28:20 +00:00
2007-06-25 18:38:39 +00:00
/**
* Returns a list of array ( namespace , directive ) for all directives
* that are allowed in a web - form context as per an allowed
* namespaces / directives list .
* @ param $allowed List of allowed namespaces / directives
*/
2008-02-16 00:40:30 +00:00
public static function getAllowedDirectivesForForm ( $allowed , $schema = null ) {
if ( ! $schema ) {
$schema = HTMLPurifier_ConfigSchema :: instance ();
}
2007-06-25 18:38:39 +00:00
if ( $allowed !== true ) {
if ( is_string ( $allowed )) $allowed = array ( $allowed );
$allowed_ns = array ();
$allowed_directives = array ();
$blacklisted_directives = array ();
foreach ( $allowed as $ns_or_directive ) {
if ( strpos ( $ns_or_directive , '.' ) !== false ) {
// directive
if ( $ns_or_directive [ 0 ] == '-' ) {
$blacklisted_directives [ substr ( $ns_or_directive , 1 )] = true ;
} else {
$allowed_directives [ $ns_or_directive ] = true ;
}
} else {
// namespace
$allowed_ns [ $ns_or_directive ] = true ;
}
}
}
$ret = array ();
2009-02-07 07:53:20 +00:00
foreach ( $schema -> info as $key => $def ) {
list ( $ns , $directive ) = explode ( '.' , $key , 2 );
if ( $allowed !== true ) {
if ( isset ( $blacklisted_directives [ " $ns . $directive " ])) continue ;
if ( ! isset ( $allowed_directives [ " $ns . $directive " ]) && ! isset ( $allowed_ns [ $ns ])) continue ;
2007-06-25 18:38:39 +00:00
}
2009-02-07 07:53:20 +00:00
if ( isset ( $def -> isAlias )) continue ;
if ( $directive == 'DefinitionID' || $directive == 'DefinitionRev' ) continue ;
$ret [] = array ( $ns , $directive );
2007-06-25 18:38:39 +00:00
}
return $ret ;
}
2008-12-06 07:28:20 +00:00
2007-05-28 03:33:12 +00:00
/**
* Loads configuration values from $_GET / $_POST that were posted
* via ConfigForm
2007-05-28 03:55:36 +00:00
* @ param $array $_GET or $_POST array to import
2007-05-28 13:15:06 +00:00
* @ param $index Index / name that the config variables are in
2008-12-06 07:28:20 +00:00
* @ param $allowed List of allowed namespaces / directives
2007-05-28 03:55:36 +00:00
* @ param $mq_fix Boolean whether or not to enable magic quotes fix
2008-02-16 00:40:30 +00:00
* @ param $schema Instance of HTMLPurifier_ConfigSchema to use , if not global copy
2007-05-28 03:33:12 +00:00
*/
2008-04-25 02:43:31 +00:00
public static function loadArrayFromForm ( $array , $index = false , $allowed = true , $mq_fix = true , $schema = null ) {
2008-02-16 00:40:30 +00:00
$ret = HTMLPurifier_Config :: prepareArrayFromForm ( $array , $index , $allowed , $mq_fix , $schema );
$config = HTMLPurifier_Config :: create ( $ret , $schema );
2007-06-28 23:01:27 +00:00
return $config ;
}
2008-12-06 07:28:20 +00:00
2007-06-28 23:01:27 +00:00
/**
* Merges in configuration values from $_GET / $_POST to object . NOT STATIC .
* @ note Same parameters as loadArrayFromForm
*/
2008-04-25 02:43:31 +00:00
public function mergeArrayFromForm ( $array , $index = false , $allowed = true , $mq_fix = true ) {
2008-02-16 00:40:30 +00:00
$ret = HTMLPurifier_Config :: prepareArrayFromForm ( $array , $index , $allowed , $mq_fix , $this -> def );
2007-06-28 23:01:27 +00:00
$this -> loadArray ( $ret );
}
2008-12-06 07:28:20 +00:00
2007-06-28 23:01:27 +00:00
/**
* Prepares an array from a form into something usable for the more
* strict parts of HTMLPurifier_Config
*/
2008-04-25 02:43:31 +00:00
public static function prepareArrayFromForm ( $array , $index = false , $allowed = true , $mq_fix = true , $schema = null ) {
if ( $index !== false ) $array = ( isset ( $array [ $index ]) && is_array ( $array [ $index ])) ? $array [ $index ] : array ();
2008-03-01 18:09:52 +00:00
$mq = $mq_fix && function_exists ( 'get_magic_quotes_gpc' ) && get_magic_quotes_gpc ();
2008-12-06 07:28:20 +00:00
2008-02-16 00:40:30 +00:00
$allowed = HTMLPurifier_Config :: getAllowedDirectivesForForm ( $allowed , $schema );
2007-06-25 18:38:39 +00:00
$ret = array ();
foreach ( $allowed as $key ) {
list ( $ns , $directive ) = $key ;
$skey = " $ns . $directive " ;
if ( ! empty ( $array [ " Null_ $skey " ])) {
$ret [ $ns ][ $directive ] = null ;
continue ;
2007-05-28 03:33:12 +00:00
}
2007-06-25 18:38:39 +00:00
if ( ! isset ( $array [ $skey ])) continue ;
$value = $mq ? stripslashes ( $array [ $skey ]) : $array [ $skey ];
$ret [ $ns ][ $directive ] = $value ;
2007-05-28 03:33:12 +00:00
}
2007-06-28 23:01:27 +00:00
return $ret ;
2007-05-28 03:33:12 +00:00
}
2008-12-06 07:28:20 +00:00
2007-01-21 14:29:46 +00:00
/**
* Loads configuration values from an ini file
* @ param $filename Name of ini file
*/
2007-11-25 02:24:39 +00:00
public function loadIni ( $filename ) {
2007-05-20 18:06:51 +00:00
if ( $this -> isFinalized ( 'Cannot load directives after finalization' )) return ;
2007-01-21 14:29:46 +00:00
$array = parse_ini_file ( $filename , true );
$this -> loadArray ( $array );
}
2008-12-06 07:28:20 +00:00
2007-05-20 18:06:51 +00:00
/**
* Checks whether or not the configuration object is finalized .
* @ param $error String error message , or false for no error
*/
2007-11-25 02:24:39 +00:00
public function isFinalized ( $error = false ) {
2007-05-20 18:06:51 +00:00
if ( $this -> finalized && $error ) {
2009-02-20 00:17:49 +00:00
$this -> triggerError ( $error , E_USER_ERROR );
2007-05-20 18:06:51 +00:00
}
return $this -> finalized ;
}
2008-12-06 07:28:20 +00:00
2007-05-25 01:32:29 +00:00
/**
* Finalizes configuration only if auto finalize is on and not
* already finalized
*/
2007-11-25 02:24:39 +00:00
public function autoFinalize () {
2009-02-20 05:13:09 +00:00
if ( $this -> autoFinalize ) {
$this -> finalize ();
} else {
$this -> plist -> squash ( true );
}
2007-05-25 01:32:29 +00:00
}
2008-12-06 07:28:20 +00:00
2007-05-20 18:06:51 +00:00
/**
* Finalizes a configuration object , prohibiting further change
*/
2007-11-25 02:24:39 +00:00
public function finalize () {
2007-05-20 18:06:51 +00:00
$this -> finalized = true ;
2009-05-29 22:03:57 +00:00
unset ( $this -> parser );
2007-05-20 18:06:51 +00:00
}
2008-12-06 07:28:20 +00:00
2009-02-20 00:17:49 +00:00
/**
* Produces a nicely formatted error message by supplying the
* stack frame information from two levels up and OUTSIDE of
* HTMLPurifier_Config .
*/
protected function triggerError ( $msg , $no ) {
// determine previous stack frame
$backtrace = debug_backtrace ();
if ( $this -> chatty && isset ( $backtrace [ 1 ])) {
$frame = $backtrace [ 1 ];
$extra = " on line { $frame [ 'line' ] } in file { $frame [ 'file' ] } " ;
} else {
$extra = '' ;
}
trigger_error ( $msg . $extra , $no );
}
2006-08-04 01:47:48 +00:00
}
2008-12-06 09:24:59 +00:00
// vim: et sw=4 sts=4