| 1: | <?php |
| 2: | |
| 3: | |
| 4: | |
| 5: | |
| 6: | |
| 7: | |
| 8: | class HTMLPurifier_HTMLModule_Tidy extends HTMLPurifier_HTMLModule |
| 9: | { |
| 10: | |
| 11: | |
| 12: | |
| 13: | |
| 14: | |
| 15: | public $levels = array(0 => 'none', 'light', 'medium', 'heavy'); |
| 16: | |
| 17: | |
| 18: | |
| 19: | |
| 20: | |
| 21: | |
| 22: | public $defaultLevel = null; |
| 23: | |
| 24: | |
| 25: | |
| 26: | |
| 27: | |
| 28: | |
| 29: | |
| 30: | public $fixesForLevel = array( |
| 31: | 'light' => array(), |
| 32: | 'medium' => array(), |
| 33: | 'heavy' => array() |
| 34: | ); |
| 35: | |
| 36: | |
| 37: | |
| 38: | |
| 39: | |
| 40: | |
| 41: | |
| 42: | |
| 43: | public function setup($config) |
| 44: | { |
| 45: | |
| 46: | $fixes = $this->makeFixes(); |
| 47: | $this->makeFixesForLevel($fixes); |
| 48: | |
| 49: | |
| 50: | $level = $config->get('HTML.TidyLevel'); |
| 51: | $fixes_lookup = $this->getFixesForLevel($level); |
| 52: | |
| 53: | |
| 54: | $add_fixes = $config->get('HTML.TidyAdd'); |
| 55: | $remove_fixes = $config->get('HTML.TidyRemove'); |
| 56: | |
| 57: | foreach ($fixes as $name => $fix) { |
| 58: | |
| 59: | if (isset($remove_fixes[$name]) || |
| 60: | (!isset($add_fixes[$name]) && !isset($fixes_lookup[$name]))) { |
| 61: | unset($fixes[$name]); |
| 62: | } |
| 63: | } |
| 64: | |
| 65: | |
| 66: | $this->populate($fixes); |
| 67: | } |
| 68: | |
| 69: | |
| 70: | |
| 71: | |
| 72: | |
| 73: | |
| 74: | |
| 75: | public function getFixesForLevel($level) |
| 76: | { |
| 77: | if ($level == $this->levels[0]) { |
| 78: | return array(); |
| 79: | } |
| 80: | $activated_levels = array(); |
| 81: | for ($i = 1, $c = count($this->levels); $i < $c; $i++) { |
| 82: | $activated_levels[] = $this->levels[$i]; |
| 83: | if ($this->levels[$i] == $level) { |
| 84: | break; |
| 85: | } |
| 86: | } |
| 87: | if ($i == $c) { |
| 88: | trigger_error( |
| 89: | 'Tidy level ' . htmlspecialchars($level) . ' not recognized', |
| 90: | E_USER_WARNING |
| 91: | ); |
| 92: | return array(); |
| 93: | } |
| 94: | $ret = array(); |
| 95: | foreach ($activated_levels as $level) { |
| 96: | foreach ($this->fixesForLevel[$level] as $fix) { |
| 97: | $ret[$fix] = true; |
| 98: | } |
| 99: | } |
| 100: | return $ret; |
| 101: | } |
| 102: | |
| 103: | |
| 104: | |
| 105: | |
| 106: | |
| 107: | |
| 108: | |
| 109: | public function makeFixesForLevel($fixes) |
| 110: | { |
| 111: | if (!isset($this->defaultLevel)) { |
| 112: | return; |
| 113: | } |
| 114: | if (!isset($this->fixesForLevel[$this->defaultLevel])) { |
| 115: | trigger_error( |
| 116: | 'Default level ' . $this->defaultLevel . ' does not exist', |
| 117: | E_USER_ERROR |
| 118: | ); |
| 119: | return; |
| 120: | } |
| 121: | $this->fixesForLevel[$this->defaultLevel] = array_keys($fixes); |
| 122: | } |
| 123: | |
| 124: | |
| 125: | |
| 126: | |
| 127: | |
| 128: | |
| 129: | public function populate($fixes) |
| 130: | { |
| 131: | foreach ($fixes as $name => $fix) { |
| 132: | |
| 133: | list($type, $params) = $this->getFixType($name); |
| 134: | switch ($type) { |
| 135: | case 'attr_transform_pre': |
| 136: | case 'attr_transform_post': |
| 137: | $attr = $params['attr']; |
| 138: | if (isset($params['element'])) { |
| 139: | $element = $params['element']; |
| 140: | if (empty($this->info[$element])) { |
| 141: | $e = $this->addBlankElement($element); |
| 142: | } else { |
| 143: | $e = $this->info[$element]; |
| 144: | } |
| 145: | } else { |
| 146: | $type = "info_$type"; |
| 147: | $e = $this; |
| 148: | } |
| 149: | $e->{$type}[$attr] = $fix; |
| 150: | break; |
| 151: | case 'tag_transform': |
| 152: | $this->info_tag_transform[$params['element']] = $fix; |
| 153: | break; |
| 154: | case 'child': |
| 155: | case 'content_model_type': |
| 156: | $element = $params['element']; |
| 157: | if (empty($this->info[$element])) { |
| 158: | $e = $this->addBlankElement($element); |
| 159: | } else { |
| 160: | $e = $this->info[$element]; |
| 161: | } |
| 162: | $e->$type = $fix; |
| 163: | break; |
| 164: | default: |
| 165: | trigger_error("Fix type $type not supported", E_USER_ERROR); |
| 166: | break; |
| 167: | } |
| 168: | } |
| 169: | } |
| 170: | |
| 171: | |
| 172: | |
| 173: | |
| 174: | |
| 175: | |
| 176: | |
| 177: | |
| 178: | |
| 179: | public function getFixType($name) |
| 180: | { |
| 181: | |
| 182: | $property = $attr = null; |
| 183: | if (strpos($name, '#') !== false) { |
| 184: | list($name, $property) = explode('#', $name); |
| 185: | } |
| 186: | if (strpos($name, '@') !== false) { |
| 187: | list($name, $attr) = explode('@', $name); |
| 188: | } |
| 189: | |
| 190: | |
| 191: | $params = array(); |
| 192: | if ($name !== '') { |
| 193: | $params['element'] = $name; |
| 194: | } |
| 195: | if (!is_null($attr)) { |
| 196: | $params['attr'] = $attr; |
| 197: | } |
| 198: | |
| 199: | |
| 200: | if (!is_null($attr)) { |
| 201: | if (is_null($property)) { |
| 202: | $property = 'pre'; |
| 203: | } |
| 204: | $type = 'attr_transform_' . $property; |
| 205: | return array($type, $params); |
| 206: | } |
| 207: | |
| 208: | |
| 209: | if (is_null($property)) { |
| 210: | return array('tag_transform', $params); |
| 211: | } |
| 212: | |
| 213: | return array($property, $params); |
| 214: | |
| 215: | } |
| 216: | |
| 217: | |
| 218: | |
| 219: | |
| 220: | |
| 221: | |
| 222: | public function makeFixes() |
| 223: | { |
| 224: | } |
| 225: | } |
| 226: | |
| 227: | |
| 228: | |