mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-07-30 19:00:10 +02:00
Generic implementation of property-lists.
Signed-off-by: Edward Z. Yang <edwardzyang@thewritingpot.com>
This commit is contained in:
72
library/HTMLPurifier/PropertyList.php
Normal file
72
library/HTMLPurifier/PropertyList.php
Normal file
@@ -0,0 +1,72 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Generic property list implementation
|
||||
*/
|
||||
class HTMLPurifier_PropertyList
|
||||
{
|
||||
/**
|
||||
* Internal data-structure for properties
|
||||
*/
|
||||
protected $data = array();
|
||||
|
||||
/**
|
||||
* Parent plist
|
||||
*/
|
||||
protected $parent;
|
||||
|
||||
/**
|
||||
* Recursively retrieves the value for a key
|
||||
*/
|
||||
public function get($name) {
|
||||
if ($this->has($name)) return $this->data[$name];
|
||||
if ($this->parent) return $this->parent->get($name);
|
||||
throw new HTMLPurifier_Exception("Key '$name' not found");
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of a key, for this plist
|
||||
*/
|
||||
public function set($name, $value) {
|
||||
$this->data[$name] = $value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if a given key exists
|
||||
*/
|
||||
public function has($name) {
|
||||
return array_key_exists($name, $this->data);
|
||||
}
|
||||
|
||||
/**
|
||||
* Resets a value to the value of it's parent, usually the default. If
|
||||
* no value is specified, the entire plist is reset.
|
||||
*/
|
||||
public function reset($name = null) {
|
||||
if ($name == null) $this->data = array();
|
||||
else unset($this->data[$name]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an iterator for traversing this array, optionally filtering
|
||||
* for a certain prefix.
|
||||
*/
|
||||
public function getIterator($filter = null) {
|
||||
$a = new ArrayObject($this->data);
|
||||
return new HTMLPurifier_PropertyListIterator($a->getIterator(), $filter);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the parent plist.
|
||||
*/
|
||||
public function getParent() {
|
||||
return $this->parent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the parent plist.
|
||||
*/
|
||||
public function setParent($plist) {
|
||||
$this->parent = $plist;
|
||||
}
|
||||
}
|
30
library/HTMLPurifier/PropertyListIterator.php
Normal file
30
library/HTMLPurifier/PropertyListIterator.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Property list iterator. Do not instantiate this class directly.
|
||||
*/
|
||||
class HTMLPurifier_PropertyListIterator extends FilterIterator
|
||||
{
|
||||
|
||||
protected $l;
|
||||
protected $filter;
|
||||
|
||||
/**
|
||||
* @param $data Array of data to iterate over
|
||||
* @param $filter Optional prefix to only allow values of
|
||||
*/
|
||||
public function __construct(Iterator $iterator, $filter = null) {
|
||||
parent::__construct($iterator);
|
||||
$this->l = strlen($filter);
|
||||
$this->filter = $filter;
|
||||
}
|
||||
|
||||
public function accept() {
|
||||
$key = $this->getInnerIterator()->key();
|
||||
if( strncmp($key, $this->filter, $this->l) !== 0 ) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user