ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
HTMLPurifier_HTMLModule_Tidy Class Reference

Abstract class for a set of proprietary modules that clean up (tidy) poorly written HTML. More...

+ Inheritance diagram for HTMLPurifier_HTMLModule_Tidy:
+ Collaboration diagram for HTMLPurifier_HTMLModule_Tidy:

Public Member Functions

 setup ($config)
 Lazy load constructs the module by determining the necessary fixes to create and then delegating to the populate() function. More...
 
 getFixesForLevel ($level)
 Retrieves all fixes per a level, returning fixes for that specific level as well as all levels below it. More...
 
 makeFixesForLevel ($fixes)
 Dynamically populates the $fixesForLevel member variable using the fixes array. More...
 
 populate ($fixes)
 Populates the module with transforms and other special-case code based on a list of fixes passed to it. More...
 
 getFixType ($name)
 Parses a fix name and determines what kind of fix it is, as well as other information defined by the fix. More...
 
 makeFixes ()
 Defines all fixes the module will perform in a compact associative array of fix name to fix implementation. More...
 
- Public Member Functions inherited from HTMLPurifier_HTMLModule
 getChildDef ($def)
 Retrieves a proper HTMLPurifier_ChildDef subclass based on content_model and content_model_type member variables of the HTMLPurifier_ElementDef class. More...
 
 addElement ($element, $type, $contents, $attr_includes=array(), $attr=array())
 Convenience function that sets up a new element. More...
 
 addBlankElement ($element)
 Convenience function that creates a totally blank, non-standalone element. More...
 
 addElementToContentSet ($element, $type)
 Convenience function that registers an element to a content set. More...
 
 parseContents ($contents)
 Convenience function that transforms single-string contents into separate content model and content model type. More...
 
 mergeInAttrIncludes (&$attr, $attr_includes)
 Convenience function that merges a list of attribute includes into an attribute array. More...
 
 makeLookup ($list)
 Convenience function that generates a lookup table with boolean true as value. More...
 
 setup ($config)
 Lazy load construction of the module after determining whether or not it's needed, and also when a finalized configuration object is available. More...
 

Data Fields

 $levels = array(0 => 'none', 'light', 'medium', 'heavy')
 List of supported levels. More...
 
 $defaultLevel = null
 Default level to place all fixes in. More...
 
 $fixesForLevel
 Lists of fixes used by getFixesForLevel(). More...
 
- Data Fields inherited from HTMLPurifier_HTMLModule
 $name
 Short unique string identifier of the module. More...
 
 $elements = array()
 Informally, a list of elements this module changes. More...
 
 $info = array()
 Associative array of element names to element definitions. More...
 
 $content_sets = array()
 Associative array of content set names to content set additions. More...
 
 $attr_collections = array()
 Associative array of attribute collection names to attribute collection additions. More...
 
 $info_tag_transform = array()
 Associative array of deprecated tag name to HTMLPurifier_TagTransform. More...
 
 $info_attr_transform_pre = array()
 List of HTMLPurifier_AttrTransform to be performed before validation. More...
 
 $info_attr_transform_post = array()
 List of HTMLPurifier_AttrTransform to be performed after validation. More...
 
 $info_injector = array()
 List of HTMLPurifier_Injector to be performed during well-formedness fixing. More...
 
 $defines_child_def = false
 Boolean flag that indicates whether or not getChildDef is implemented. More...
 
 $safe = true
 Boolean flag whether or not this module is safe. More...
 

Detailed Description

Abstract class for a set of proprietary modules that clean up (tidy) poorly written HTML.

Todo:
Figure out how to protect some of these methods/properties

Definition at line 8 of file Tidy.php.

Member Function Documentation

◆ getFixesForLevel()

HTMLPurifier_HTMLModule_Tidy::getFixesForLevel (   $level)

Retrieves all fixes per a level, returning fixes for that specific level as well as all levels below it.

Parameters
$levelString level identifier, see $levels for valid values
Returns
Lookup up table of fixes

Definition at line 73 of file Tidy.php.

References $ret.

Referenced by setup().

73  {
74  if ($level == $this->levels[0]) {
75  return array();
76  }
77  $activated_levels = array();
78  for ($i = 1, $c = count($this->levels); $i < $c; $i++) {
79  $activated_levels[] = $this->levels[$i];
80  if ($this->levels[$i] == $level) break;
81  }
82  if ($i == $c) {
83  trigger_error(
84  'Tidy level ' . htmlspecialchars($level) . ' not recognized',
85  E_USER_WARNING
86  );
87  return array();
88  }
89  $ret = array();
90  foreach ($activated_levels as $level) {
91  foreach ($this->fixesForLevel[$level] as $fix) {
92  $ret[$fix] = true;
93  }
94  }
95  return $ret;
96  }
+ Here is the caller graph for this function:

◆ getFixType()

HTMLPurifier_HTMLModule_Tidy::getFixType (   $name)

Parses a fix name and determines what kind of fix it is, as well as other information defined by the fix.

Parameters
$nameString name of fix
Returns
array(string $fix_type, array $fix_parameters)
Note
$fix_parameters is type dependant, see populate() for usage of these parameters

Definition at line 172 of file Tidy.php.

References HTMLPurifier_HTMLModule\$name.

Referenced by populate().

172  {
173  // parse it
174  $property = $attr = null;
175  if (strpos($name, '#') !== false) list($name, $property) = explode('#', $name);
176  if (strpos($name, '@') !== false) list($name, $attr) = explode('@', $name);
177 
178  // figure out the parameters
179  $params = array();
180  if ($name !== '') $params['element'] = $name;
181  if (!is_null($attr)) $params['attr'] = $attr;
182 
183  // special case: attribute transform
184  if (!is_null($attr)) {
185  if (is_null($property)) $property = 'pre';
186  $type = 'attr_transform_' . $property;
187  return array($type, $params);
188  }
189 
190  // special case: tag transform
191  if (is_null($property)) {
192  return array('tag_transform', $params);
193  }
194 
195  return array($property, $params);
196 
197  }
$name
Short unique string identifier of the module.
Definition: HTMLModule.php:26
+ Here is the caller graph for this function:

◆ makeFixes()

HTMLPurifier_HTMLModule_Tidy::makeFixes ( )

Defines all fixes the module will perform in a compact associative array of fix name to fix implementation.

Definition at line 203 of file Tidy.php.

Referenced by setup().

203 {}
+ Here is the caller graph for this function:

◆ makeFixesForLevel()

HTMLPurifier_HTMLModule_Tidy::makeFixesForLevel (   $fixes)

Dynamically populates the $fixesForLevel member variable using the fixes array.

It may be custom overloaded, used in conjunction with $defaultLevel, or not used at all.

Definition at line 103 of file Tidy.php.

References $defaultLevel.

Referenced by setup().

103  {
104  if (!isset($this->defaultLevel)) return;
105  if (!isset($this->fixesForLevel[$this->defaultLevel])) {
106  trigger_error(
107  'Default level ' . $this->defaultLevel . ' does not exist',
108  E_USER_ERROR
109  );
110  return;
111  }
112  $this->fixesForLevel[$this->defaultLevel] = array_keys($fixes);
113  }
$defaultLevel
Default level to place all fixes in.
Definition: Tidy.php:20
+ Here is the caller graph for this function:

◆ populate()

HTMLPurifier_HTMLModule_Tidy::populate (   $fixes)

Populates the module with transforms and other special-case code based on a list of fixes passed to it.

Parameters
$lookupLookup table of fixes to activate

Definition at line 120 of file Tidy.php.

References HTMLPurifier_HTMLModule\$name, HTMLPurifier_HTMLModule\addBlankElement(), and getFixType().

Referenced by setup().

120  {
121  foreach ($fixes as $name => $fix) {
122  // determine what the fix is for
123  list($type, $params) = $this->getFixType($name);
124  switch ($type) {
125  case 'attr_transform_pre':
126  case 'attr_transform_post':
127  $attr = $params['attr'];
128  if (isset($params['element'])) {
129  $element = $params['element'];
130  if (empty($this->info[$element])) {
131  $e = $this->addBlankElement($element);
132  } else {
133  $e = $this->info[$element];
134  }
135  } else {
136  $type = "info_$type";
137  $e = $this;
138  }
139  // PHP does some weird parsing when I do
140  // $e->$type[$attr], so I have to assign a ref.
141  $f =& $e->$type;
142  $f[$attr] = $fix;
143  break;
144  case 'tag_transform':
145  $this->info_tag_transform[$params['element']] = $fix;
146  break;
147  case 'child':
148  case 'content_model_type':
149  $element = $params['element'];
150  if (empty($this->info[$element])) {
151  $e = $this->addBlankElement($element);
152  } else {
153  $e = $this->info[$element];
154  }
155  $e->$type = $fix;
156  break;
157  default:
158  trigger_error("Fix type $type not supported", E_USER_ERROR);
159  break;
160  }
161  }
162  }
getFixType($name)
Parses a fix name and determines what kind of fix it is, as well as other information defined by the ...
Definition: Tidy.php:172
addBlankElement($element)
Convenience function that creates a totally blank, non-standalone element.
Definition: HTMLModule.php:153
$name
Short unique string identifier of the module.
Definition: HTMLModule.php:26
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ setup()

HTMLPurifier_HTMLModule_Tidy::setup (   $config)

Lazy load constructs the module by determining the necessary fixes to create and then delegating to the populate() function.

Todo:
Wildcard matching and error reporting when an added or subtracted fix has no effect.

Definition at line 38 of file Tidy.php.

References HTMLPurifier_HTMLModule\$name, getFixesForLevel(), makeFixes(), makeFixesForLevel(), and populate().

38  {
39 
40  // create fixes, initialize fixesForLevel
41  $fixes = $this->makeFixes();
42  $this->makeFixesForLevel($fixes);
43 
44  // figure out which fixes to use
45  $level = $config->get('HTML.TidyLevel');
46  $fixes_lookup = $this->getFixesForLevel($level);
47 
48  // get custom fix declarations: these need namespace processing
49  $add_fixes = $config->get('HTML.TidyAdd');
50  $remove_fixes = $config->get('HTML.TidyRemove');
51 
52  foreach ($fixes as $name => $fix) {
53  // needs to be refactored a little to implement globbing
54  if (
55  isset($remove_fixes[$name]) ||
56  (!isset($add_fixes[$name]) && !isset($fixes_lookup[$name]))
57  ) {
58  unset($fixes[$name]);
59  }
60  }
61 
62  // populate this module with necessary fixes
63  $this->populate($fixes);
64 
65  }
populate($fixes)
Populates the module with transforms and other special-case code based on a list of fixes passed to i...
Definition: Tidy.php:120
makeFixesForLevel($fixes)
Dynamically populates the $fixesForLevel member variable using the fixes array.
Definition: Tidy.php:103
getFixesForLevel($level)
Retrieves all fixes per a level, returning fixes for that specific level as well as all levels below ...
Definition: Tidy.php:73
$name
Short unique string identifier of the module.
Definition: HTMLModule.php:26
makeFixes()
Defines all fixes the module will perform in a compact associative array of fix name to fix implement...
Definition: Tidy.php:203
+ Here is the call graph for this function:

Field Documentation

◆ $defaultLevel

HTMLPurifier_HTMLModule_Tidy::$defaultLevel = null

Default level to place all fixes in.

Disabled by default

Definition at line 20 of file Tidy.php.

Referenced by makeFixesForLevel().

◆ $fixesForLevel

HTMLPurifier_HTMLModule_Tidy::$fixesForLevel
Initial value:
= array(
'light' => array(),
'medium' => array(),
'heavy' => array()
)

Lists of fixes used by getFixesForLevel().

Format is: HTMLModule_Tidy->fixesForLevel[$level] = array('fix-1', 'fix-2');

Definition at line 26 of file Tidy.php.

◆ $levels

HTMLPurifier_HTMLModule_Tidy::$levels = array(0 => 'none', 'light', 'medium', 'heavy')

List of supported levels.

Index zero is a special case "no fixes" level.

Definition at line 15 of file Tidy.php.


The documentation for this class was generated from the following file: