@@ -6,22 +6,22 @@ |
||
6 | 6 | class HTMLPurifier_AttrDef_HTML_Bool extends HTMLPurifier_AttrDef |
7 | 7 | { |
8 | 8 | |
9 | - protected $name; |
|
10 | - public $minimized = true; |
|
9 | + protected $name; |
|
10 | + public $minimized = true; |
|
11 | 11 | |
12 | - public function __construct($name = false) {$this->name = $name;} |
|
12 | + public function __construct($name = false) {$this->name = $name;} |
|
13 | 13 | |
14 | - public function validate($string, $config, $context) { |
|
15 | - if (empty($string)) return false; |
|
16 | - return $this->name; |
|
17 | - } |
|
14 | + public function validate($string, $config, $context) { |
|
15 | + if (empty($string)) return false; |
|
16 | + return $this->name; |
|
17 | + } |
|
18 | 18 | |
19 | - /** |
|
20 | - * @param $string Name of attribute |
|
21 | - */ |
|
22 | - public function make($string) { |
|
23 | - return new HTMLPurifier_AttrDef_HTML_Bool($string); |
|
24 | - } |
|
19 | + /** |
|
20 | + * @param $string Name of attribute |
|
21 | + */ |
|
22 | + public function make($string) { |
|
23 | + return new HTMLPurifier_AttrDef_HTML_Bool($string); |
|
24 | + } |
|
25 | 25 | |
26 | 26 | } |
27 | 27 |
@@ -9,7 +9,7 @@ |
||
9 | 9 | protected $name; |
10 | 10 | public $minimized = true; |
11 | 11 | |
12 | - public function __construct($name = false) {$this->name = $name;} |
|
12 | + public function __construct($name = false) {$this->name = $name; } |
|
13 | 13 | |
14 | 14 | public function validate($string, $config, $context) { |
15 | 15 | if (empty($string)) return false; |
@@ -12,7 +12,9 @@ |
||
12 | 12 | public function __construct($name = false) {$this->name = $name;} |
13 | 13 | |
14 | 14 | public function validate($string, $config, $context) { |
15 | - if (empty($string)) return false; |
|
15 | + if (empty($string)) { |
|
16 | + return false; |
|
17 | + } |
|
16 | 18 | return $this->name; |
17 | 19 | } |
18 | 20 |
@@ -5,30 +5,30 @@ |
||
5 | 5 | */ |
6 | 6 | class HTMLPurifier_AttrDef_HTML_Class extends HTMLPurifier_AttrDef_HTML_Nmtokens |
7 | 7 | { |
8 | - protected function split($string, $config, $context) { |
|
9 | - // really, this twiddle should be lazy loaded |
|
10 | - $name = $config->getDefinition('HTML')->doctype->name; |
|
11 | - if ($name == "XHTML 1.1" || $name == "XHTML 2.0") { |
|
12 | - return parent::split($string, $config, $context); |
|
13 | - } else { |
|
14 | - return preg_split('/\s+/', $string); |
|
15 | - } |
|
16 | - } |
|
17 | - protected function filter($tokens, $config, $context) { |
|
18 | - $allowed = $config->get('Attr.AllowedClasses'); |
|
19 | - $forbidden = $config->get('Attr.ForbiddenClasses'); |
|
20 | - $ret = array(); |
|
21 | - foreach ($tokens as $token) { |
|
22 | - if ( |
|
23 | - ($allowed === null || isset($allowed[$token])) && |
|
24 | - !isset($forbidden[$token]) && |
|
25 | - // We need this O(n) check because of PHP's array |
|
26 | - // implementation that casts -0 to 0. |
|
27 | - !in_array($token, $ret, true) |
|
28 | - ) { |
|
29 | - $ret[] = $token; |
|
30 | - } |
|
31 | - } |
|
32 | - return $ret; |
|
33 | - } |
|
8 | + protected function split($string, $config, $context) { |
|
9 | + // really, this twiddle should be lazy loaded |
|
10 | + $name = $config->getDefinition('HTML')->doctype->name; |
|
11 | + if ($name == "XHTML 1.1" || $name == "XHTML 2.0") { |
|
12 | + return parent::split($string, $config, $context); |
|
13 | + } else { |
|
14 | + return preg_split('/\s+/', $string); |
|
15 | + } |
|
16 | + } |
|
17 | + protected function filter($tokens, $config, $context) { |
|
18 | + $allowed = $config->get('Attr.AllowedClasses'); |
|
19 | + $forbidden = $config->get('Attr.ForbiddenClasses'); |
|
20 | + $ret = array(); |
|
21 | + foreach ($tokens as $token) { |
|
22 | + if ( |
|
23 | + ($allowed === null || isset($allowed[$token])) && |
|
24 | + !isset($forbidden[$token]) && |
|
25 | + // We need this O(n) check because of PHP's array |
|
26 | + // implementation that casts -0 to 0. |
|
27 | + !in_array($token, $ret, true) |
|
28 | + ) { |
|
29 | + $ret[] = $token; |
|
30 | + } |
|
31 | + } |
|
32 | + return $ret; |
|
33 | + } |
|
34 | 34 | } |
@@ -6,26 +6,26 @@ |
||
6 | 6 | class HTMLPurifier_AttrDef_HTML_Color extends HTMLPurifier_AttrDef |
7 | 7 | { |
8 | 8 | |
9 | - public function validate($string, $config, $context) { |
|
9 | + public function validate($string, $config, $context) { |
|
10 | 10 | |
11 | - static $colors = null; |
|
12 | - if ($colors === null) $colors = $config->get('Core.ColorKeywords'); |
|
11 | + static $colors = null; |
|
12 | + if ($colors === null) $colors = $config->get('Core.ColorKeywords'); |
|
13 | 13 | |
14 | - $string = trim($string); |
|
14 | + $string = trim($string); |
|
15 | 15 | |
16 | - if (empty($string)) return false; |
|
17 | - if (isset($colors[strtolower($string)])) return $colors[$string]; |
|
18 | - if ($string[0] === '#') $hex = substr($string, 1); |
|
19 | - else $hex = $string; |
|
16 | + if (empty($string)) return false; |
|
17 | + if (isset($colors[strtolower($string)])) return $colors[$string]; |
|
18 | + if ($string[0] === '#') $hex = substr($string, 1); |
|
19 | + else $hex = $string; |
|
20 | 20 | |
21 | - $length = strlen($hex); |
|
22 | - if ($length !== 3 && $length !== 6) return false; |
|
23 | - if (!ctype_xdigit($hex)) return false; |
|
24 | - if ($length === 3) $hex = $hex[0].$hex[0].$hex[1].$hex[1].$hex[2].$hex[2]; |
|
21 | + $length = strlen($hex); |
|
22 | + if ($length !== 3 && $length !== 6) return false; |
|
23 | + if (!ctype_xdigit($hex)) return false; |
|
24 | + if ($length === 3) $hex = $hex[0].$hex[0].$hex[1].$hex[1].$hex[2].$hex[2]; |
|
25 | 25 | |
26 | - return "#$hex"; |
|
26 | + return "#$hex"; |
|
27 | 27 | |
28 | - } |
|
28 | + } |
|
29 | 29 | |
30 | 30 | } |
31 | 31 |
@@ -21,7 +21,7 @@ |
||
21 | 21 | $length = strlen($hex); |
22 | 22 | if ($length !== 3 && $length !== 6) return false; |
23 | 23 | if (!ctype_xdigit($hex)) return false; |
24 | - if ($length === 3) $hex = $hex[0].$hex[0].$hex[1].$hex[1].$hex[2].$hex[2]; |
|
24 | + if ($length === 3) $hex = $hex[0] . $hex[0] . $hex[1] . $hex[1] . $hex[2] . $hex[2]; |
|
25 | 25 | |
26 | 26 | return "#$hex"; |
27 | 27 |
@@ -9,19 +9,34 @@ |
||
9 | 9 | public function validate($string, $config, $context) { |
10 | 10 | |
11 | 11 | static $colors = null; |
12 | - if ($colors === null) $colors = $config->get('Core.ColorKeywords'); |
|
12 | + if ($colors === null) { |
|
13 | + $colors = $config->get('Core.ColorKeywords'); |
|
14 | + } |
|
13 | 15 | |
14 | 16 | $string = trim($string); |
15 | 17 | |
16 | - if (empty($string)) return false; |
|
17 | - if (isset($colors[strtolower($string)])) return $colors[$string]; |
|
18 | - if ($string[0] === '#') $hex = substr($string, 1); |
|
19 | - else $hex = $string; |
|
18 | + if (empty($string)) { |
|
19 | + return false; |
|
20 | + } |
|
21 | + if (isset($colors[strtolower($string)])) { |
|
22 | + return $colors[$string]; |
|
23 | + } |
|
24 | + if ($string[0] === '#') { |
|
25 | + $hex = substr($string, 1); |
|
26 | + } else { |
|
27 | + $hex = $string; |
|
28 | + } |
|
20 | 29 | |
21 | 30 | $length = strlen($hex); |
22 | - if ($length !== 3 && $length !== 6) return false; |
|
23 | - if (!ctype_xdigit($hex)) return false; |
|
24 | - if ($length === 3) $hex = $hex[0].$hex[0].$hex[1].$hex[1].$hex[2].$hex[2]; |
|
31 | + if ($length !== 3 && $length !== 6) { |
|
32 | + return false; |
|
33 | + } |
|
34 | + if (!ctype_xdigit($hex)) { |
|
35 | + return false; |
|
36 | + } |
|
37 | + if ($length === 3) { |
|
38 | + $hex = $hex[0].$hex[0].$hex[1].$hex[1].$hex[2].$hex[2]; |
|
39 | + } |
|
25 | 40 | |
26 | 41 | return "#$hex"; |
27 | 42 |
@@ -6,15 +6,15 @@ |
||
6 | 6 | class HTMLPurifier_AttrDef_HTML_FrameTarget extends HTMLPurifier_AttrDef_Enum |
7 | 7 | { |
8 | 8 | |
9 | - public $valid_values = false; // uninitialized value |
|
10 | - protected $case_sensitive = false; |
|
9 | + public $valid_values = false; // uninitialized value |
|
10 | + protected $case_sensitive = false; |
|
11 | 11 | |
12 | - public function __construct() {} |
|
12 | + public function __construct() {} |
|
13 | 13 | |
14 | - public function validate($string, $config, $context) { |
|
15 | - if ($this->valid_values === false) $this->valid_values = $config->get('Attr.AllowedFrameTargets'); |
|
16 | - return parent::validate($string, $config, $context); |
|
17 | - } |
|
14 | + public function validate($string, $config, $context) { |
|
15 | + if ($this->valid_values === false) $this->valid_values = $config->get('Attr.AllowedFrameTargets'); |
|
16 | + return parent::validate($string, $config, $context); |
|
17 | + } |
|
18 | 18 | |
19 | 19 | } |
20 | 20 |
@@ -12,7 +12,9 @@ |
||
12 | 12 | public function __construct() {} |
13 | 13 | |
14 | 14 | public function validate($string, $config, $context) { |
15 | - if ($this->valid_values === false) $this->valid_values = $config->get('Attr.AllowedFrameTargets'); |
|
15 | + if ($this->valid_values === false) { |
|
16 | + $this->valid_values = $config->get('Attr.AllowedFrameTargets'); |
|
17 | + } |
|
16 | 18 | return parent::validate($string, $config, $context); |
17 | 19 | } |
18 | 20 |
@@ -12,68 +12,68 @@ |
||
12 | 12 | class HTMLPurifier_AttrDef_HTML_ID extends HTMLPurifier_AttrDef |
13 | 13 | { |
14 | 14 | |
15 | - // selector is NOT a valid thing to use for IDREFs, because IDREFs |
|
16 | - // *must* target IDs that exist, whereas selector #ids do not. |
|
17 | - |
|
18 | - /** |
|
19 | - * Determines whether or not we're validating an ID in a CSS |
|
20 | - * selector context. |
|
21 | - */ |
|
22 | - protected $selector; |
|
23 | - |
|
24 | - public function __construct($selector = false) { |
|
25 | - $this->selector = $selector; |
|
26 | - } |
|
27 | - |
|
28 | - public function validate($id, $config, $context) { |
|
29 | - |
|
30 | - if (!$this->selector && !$config->get('Attr.EnableID')) return false; |
|
31 | - |
|
32 | - $id = trim($id); // trim it first |
|
33 | - |
|
34 | - if ($id === '') return false; |
|
35 | - |
|
36 | - $prefix = $config->get('Attr.IDPrefix'); |
|
37 | - if ($prefix !== '') { |
|
38 | - $prefix .= $config->get('Attr.IDPrefixLocal'); |
|
39 | - // prevent re-appending the prefix |
|
40 | - if (strpos($id, $prefix) !== 0) $id = $prefix . $id; |
|
41 | - } elseif ($config->get('Attr.IDPrefixLocal') !== '') { |
|
42 | - trigger_error('%Attr.IDPrefixLocal cannot be used unless '. |
|
43 | - '%Attr.IDPrefix is set', E_USER_WARNING); |
|
44 | - } |
|
45 | - |
|
46 | - if (!$this->selector) { |
|
47 | - $id_accumulator =& $context->get('IDAccumulator'); |
|
48 | - if (isset($id_accumulator->ids[$id])) return false; |
|
49 | - } |
|
50 | - |
|
51 | - // we purposely avoid using regex, hopefully this is faster |
|
52 | - |
|
53 | - if (ctype_alpha($id)) { |
|
54 | - $result = true; |
|
55 | - } else { |
|
56 | - if (!ctype_alpha(@$id[0])) return false; |
|
57 | - $trim = trim( // primitive style of regexps, I suppose |
|
58 | - $id, |
|
59 | - 'A..Za..z0..9:-._' |
|
60 | - ); |
|
61 | - $result = ($trim === ''); |
|
62 | - } |
|
63 | - |
|
64 | - $regexp = $config->get('Attr.IDBlacklistRegexp'); |
|
65 | - if ($regexp && preg_match($regexp, $id)) { |
|
66 | - return false; |
|
67 | - } |
|
68 | - |
|
69 | - if (!$this->selector && $result) $id_accumulator->add($id); |
|
70 | - |
|
71 | - // if no change was made to the ID, return the result |
|
72 | - // else, return the new id if stripping whitespace made it |
|
73 | - // valid, or return false. |
|
74 | - return $result ? $id : false; |
|
75 | - |
|
76 | - } |
|
15 | + // selector is NOT a valid thing to use for IDREFs, because IDREFs |
|
16 | + // *must* target IDs that exist, whereas selector #ids do not. |
|
17 | + |
|
18 | + /** |
|
19 | + * Determines whether or not we're validating an ID in a CSS |
|
20 | + * selector context. |
|
21 | + */ |
|
22 | + protected $selector; |
|
23 | + |
|
24 | + public function __construct($selector = false) { |
|
25 | + $this->selector = $selector; |
|
26 | + } |
|
27 | + |
|
28 | + public function validate($id, $config, $context) { |
|
29 | + |
|
30 | + if (!$this->selector && !$config->get('Attr.EnableID')) return false; |
|
31 | + |
|
32 | + $id = trim($id); // trim it first |
|
33 | + |
|
34 | + if ($id === '') return false; |
|
35 | + |
|
36 | + $prefix = $config->get('Attr.IDPrefix'); |
|
37 | + if ($prefix !== '') { |
|
38 | + $prefix .= $config->get('Attr.IDPrefixLocal'); |
|
39 | + // prevent re-appending the prefix |
|
40 | + if (strpos($id, $prefix) !== 0) $id = $prefix . $id; |
|
41 | + } elseif ($config->get('Attr.IDPrefixLocal') !== '') { |
|
42 | + trigger_error('%Attr.IDPrefixLocal cannot be used unless '. |
|
43 | + '%Attr.IDPrefix is set', E_USER_WARNING); |
|
44 | + } |
|
45 | + |
|
46 | + if (!$this->selector) { |
|
47 | + $id_accumulator =& $context->get('IDAccumulator'); |
|
48 | + if (isset($id_accumulator->ids[$id])) return false; |
|
49 | + } |
|
50 | + |
|
51 | + // we purposely avoid using regex, hopefully this is faster |
|
52 | + |
|
53 | + if (ctype_alpha($id)) { |
|
54 | + $result = true; |
|
55 | + } else { |
|
56 | + if (!ctype_alpha(@$id[0])) return false; |
|
57 | + $trim = trim( // primitive style of regexps, I suppose |
|
58 | + $id, |
|
59 | + 'A..Za..z0..9:-._' |
|
60 | + ); |
|
61 | + $result = ($trim === ''); |
|
62 | + } |
|
63 | + |
|
64 | + $regexp = $config->get('Attr.IDBlacklistRegexp'); |
|
65 | + if ($regexp && preg_match($regexp, $id)) { |
|
66 | + return false; |
|
67 | + } |
|
68 | + |
|
69 | + if (!$this->selector && $result) $id_accumulator->add($id); |
|
70 | + |
|
71 | + // if no change was made to the ID, return the result |
|
72 | + // else, return the new id if stripping whitespace made it |
|
73 | + // valid, or return false. |
|
74 | + return $result ? $id : false; |
|
75 | + |
|
76 | + } |
|
77 | 77 | |
78 | 78 | } |
79 | 79 |
@@ -39,12 +39,12 @@ |
||
39 | 39 | // prevent re-appending the prefix |
40 | 40 | if (strpos($id, $prefix) !== 0) $id = $prefix . $id; |
41 | 41 | } elseif ($config->get('Attr.IDPrefixLocal') !== '') { |
42 | - trigger_error('%Attr.IDPrefixLocal cannot be used unless '. |
|
42 | + trigger_error('%Attr.IDPrefixLocal cannot be used unless ' . |
|
43 | 43 | '%Attr.IDPrefix is set', E_USER_WARNING); |
44 | 44 | } |
45 | 45 | |
46 | 46 | if (!$this->selector) { |
47 | - $id_accumulator =& $context->get('IDAccumulator'); |
|
47 | + $id_accumulator = & $context->get('IDAccumulator'); |
|
48 | 48 | if (isset($id_accumulator->ids[$id])) return false; |
49 | 49 | } |
50 | 50 |
@@ -27,17 +27,23 @@ discard block |
||
27 | 27 | |
28 | 28 | public function validate($id, $config, $context) { |
29 | 29 | |
30 | - if (!$this->selector && !$config->get('Attr.EnableID')) return false; |
|
30 | + if (!$this->selector && !$config->get('Attr.EnableID')) { |
|
31 | + return false; |
|
32 | + } |
|
31 | 33 | |
32 | 34 | $id = trim($id); // trim it first |
33 | 35 | |
34 | - if ($id === '') return false; |
|
36 | + if ($id === '') { |
|
37 | + return false; |
|
38 | + } |
|
35 | 39 | |
36 | 40 | $prefix = $config->get('Attr.IDPrefix'); |
37 | 41 | if ($prefix !== '') { |
38 | 42 | $prefix .= $config->get('Attr.IDPrefixLocal'); |
39 | 43 | // prevent re-appending the prefix |
40 | - if (strpos($id, $prefix) !== 0) $id = $prefix . $id; |
|
44 | + if (strpos($id, $prefix) !== 0) { |
|
45 | + $id = $prefix . $id; |
|
46 | + } |
|
41 | 47 | } elseif ($config->get('Attr.IDPrefixLocal') !== '') { |
42 | 48 | trigger_error('%Attr.IDPrefixLocal cannot be used unless '. |
43 | 49 | '%Attr.IDPrefix is set', E_USER_WARNING); |
@@ -45,7 +51,9 @@ discard block |
||
45 | 51 | |
46 | 52 | if (!$this->selector) { |
47 | 53 | $id_accumulator =& $context->get('IDAccumulator'); |
48 | - if (isset($id_accumulator->ids[$id])) return false; |
|
54 | + if (isset($id_accumulator->ids[$id])) { |
|
55 | + return false; |
|
56 | + } |
|
49 | 57 | } |
50 | 58 | |
51 | 59 | // we purposely avoid using regex, hopefully this is faster |
@@ -53,7 +61,9 @@ discard block |
||
53 | 61 | if (ctype_alpha($id)) { |
54 | 62 | $result = true; |
55 | 63 | } else { |
56 | - if (!ctype_alpha(@$id[0])) return false; |
|
64 | + if (!ctype_alpha(@$id[0])) { |
|
65 | + return false; |
|
66 | + } |
|
57 | 67 | $trim = trim( // primitive style of regexps, I suppose |
58 | 68 | $id, |
59 | 69 | 'A..Za..z0..9:-._' |
@@ -66,7 +76,9 @@ discard block |
||
66 | 76 | return false; |
67 | 77 | } |
68 | 78 | |
69 | - if (!$this->selector && $result) $id_accumulator->add($id); |
|
79 | + if (!$this->selector && $result) { |
|
80 | + $id_accumulator->add($id); |
|
81 | + } |
|
70 | 82 | |
71 | 83 | // if no change was made to the ID, return the result |
72 | 84 | // else, return the new id if stripping whitespace made it |
@@ -10,31 +10,31 @@ |
||
10 | 10 | class HTMLPurifier_AttrDef_HTML_Length extends HTMLPurifier_AttrDef_HTML_Pixels |
11 | 11 | { |
12 | 12 | |
13 | - public function validate($string, $config, $context) { |
|
13 | + public function validate($string, $config, $context) { |
|
14 | 14 | |
15 | - $string = trim($string); |
|
16 | - if ($string === '') return false; |
|
15 | + $string = trim($string); |
|
16 | + if ($string === '') return false; |
|
17 | 17 | |
18 | - $parent_result = parent::validate($string, $config, $context); |
|
19 | - if ($parent_result !== false) return $parent_result; |
|
18 | + $parent_result = parent::validate($string, $config, $context); |
|
19 | + if ($parent_result !== false) return $parent_result; |
|
20 | 20 | |
21 | - $length = strlen($string); |
|
22 | - $last_char = $string[$length - 1]; |
|
21 | + $length = strlen($string); |
|
22 | + $last_char = $string[$length - 1]; |
|
23 | 23 | |
24 | - if ($last_char !== '%') return false; |
|
24 | + if ($last_char !== '%') return false; |
|
25 | 25 | |
26 | - $points = substr($string, 0, $length - 1); |
|
26 | + $points = substr($string, 0, $length - 1); |
|
27 | 27 | |
28 | - if (!is_numeric($points)) return false; |
|
28 | + if (!is_numeric($points)) return false; |
|
29 | 29 | |
30 | - $points = (int) $points; |
|
30 | + $points = (int) $points; |
|
31 | 31 | |
32 | - if ($points < 0) return '0%'; |
|
33 | - if ($points > 100) return '100%'; |
|
32 | + if ($points < 0) return '0%'; |
|
33 | + if ($points > 100) return '100%'; |
|
34 | 34 | |
35 | - return ((string) $points) . '%'; |
|
35 | + return ((string) $points) . '%'; |
|
36 | 36 | |
37 | - } |
|
37 | + } |
|
38 | 38 | |
39 | 39 | } |
40 | 40 |
@@ -13,24 +13,36 @@ |
||
13 | 13 | public function validate($string, $config, $context) { |
14 | 14 | |
15 | 15 | $string = trim($string); |
16 | - if ($string === '') return false; |
|
16 | + if ($string === '') { |
|
17 | + return false; |
|
18 | + } |
|
17 | 19 | |
18 | 20 | $parent_result = parent::validate($string, $config, $context); |
19 | - if ($parent_result !== false) return $parent_result; |
|
21 | + if ($parent_result !== false) { |
|
22 | + return $parent_result; |
|
23 | + } |
|
20 | 24 | |
21 | 25 | $length = strlen($string); |
22 | 26 | $last_char = $string[$length - 1]; |
23 | 27 | |
24 | - if ($last_char !== '%') return false; |
|
28 | + if ($last_char !== '%') { |
|
29 | + return false; |
|
30 | + } |
|
25 | 31 | |
26 | 32 | $points = substr($string, 0, $length - 1); |
27 | 33 | |
28 | - if (!is_numeric($points)) return false; |
|
34 | + if (!is_numeric($points)) { |
|
35 | + return false; |
|
36 | + } |
|
29 | 37 | |
30 | 38 | $points = (int) $points; |
31 | 39 | |
32 | - if ($points < 0) return '0%'; |
|
33 | - if ($points > 100) return '100%'; |
|
40 | + if ($points < 0) { |
|
41 | + return '0%'; |
|
42 | + } |
|
43 | + if ($points > 100) { |
|
44 | + return '100%'; |
|
45 | + } |
|
34 | 46 | |
35 | 47 | return ((string) $points) . '%'; |
36 | 48 |
@@ -9,44 +9,44 @@ |
||
9 | 9 | class HTMLPurifier_AttrDef_HTML_LinkTypes extends HTMLPurifier_AttrDef |
10 | 10 | { |
11 | 11 | |
12 | - /** Name config attribute to pull. */ |
|
13 | - protected $name; |
|
14 | - |
|
15 | - public function __construct($name) { |
|
16 | - $configLookup = array( |
|
17 | - 'rel' => 'AllowedRel', |
|
18 | - 'rev' => 'AllowedRev' |
|
19 | - ); |
|
20 | - if (!isset($configLookup[$name])) { |
|
21 | - trigger_error('Unrecognized attribute name for link '. |
|
22 | - 'relationship.', E_USER_ERROR); |
|
23 | - return; |
|
24 | - } |
|
25 | - $this->name = $configLookup[$name]; |
|
26 | - } |
|
27 | - |
|
28 | - public function validate($string, $config, $context) { |
|
29 | - |
|
30 | - $allowed = $config->get('Attr.' . $this->name); |
|
31 | - if (empty($allowed)) return false; |
|
32 | - |
|
33 | - $string = $this->parseCDATA($string); |
|
34 | - $parts = explode(' ', $string); |
|
35 | - |
|
36 | - // lookup to prevent duplicates |
|
37 | - $ret_lookup = array(); |
|
38 | - foreach ($parts as $part) { |
|
39 | - $part = strtolower(trim($part)); |
|
40 | - if (!isset($allowed[$part])) continue; |
|
41 | - $ret_lookup[$part] = true; |
|
42 | - } |
|
43 | - |
|
44 | - if (empty($ret_lookup)) return false; |
|
45 | - $string = implode(' ', array_keys($ret_lookup)); |
|
46 | - |
|
47 | - return $string; |
|
48 | - |
|
49 | - } |
|
12 | + /** Name config attribute to pull. */ |
|
13 | + protected $name; |
|
14 | + |
|
15 | + public function __construct($name) { |
|
16 | + $configLookup = array( |
|
17 | + 'rel' => 'AllowedRel', |
|
18 | + 'rev' => 'AllowedRev' |
|
19 | + ); |
|
20 | + if (!isset($configLookup[$name])) { |
|
21 | + trigger_error('Unrecognized attribute name for link '. |
|
22 | + 'relationship.', E_USER_ERROR); |
|
23 | + return; |
|
24 | + } |
|
25 | + $this->name = $configLookup[$name]; |
|
26 | + } |
|
27 | + |
|
28 | + public function validate($string, $config, $context) { |
|
29 | + |
|
30 | + $allowed = $config->get('Attr.' . $this->name); |
|
31 | + if (empty($allowed)) return false; |
|
32 | + |
|
33 | + $string = $this->parseCDATA($string); |
|
34 | + $parts = explode(' ', $string); |
|
35 | + |
|
36 | + // lookup to prevent duplicates |
|
37 | + $ret_lookup = array(); |
|
38 | + foreach ($parts as $part) { |
|
39 | + $part = strtolower(trim($part)); |
|
40 | + if (!isset($allowed[$part])) continue; |
|
41 | + $ret_lookup[$part] = true; |
|
42 | + } |
|
43 | + |
|
44 | + if (empty($ret_lookup)) return false; |
|
45 | + $string = implode(' ', array_keys($ret_lookup)); |
|
46 | + |
|
47 | + return $string; |
|
48 | + |
|
49 | + } |
|
50 | 50 | |
51 | 51 | } |
52 | 52 |
@@ -18,7 +18,7 @@ |
||
18 | 18 | 'rev' => 'AllowedRev' |
19 | 19 | ); |
20 | 20 | if (!isset($configLookup[$name])) { |
21 | - trigger_error('Unrecognized attribute name for link '. |
|
21 | + trigger_error('Unrecognized attribute name for link ' . |
|
22 | 22 | 'relationship.', E_USER_ERROR); |
23 | 23 | return; |
24 | 24 | } |
@@ -28,7 +28,9 @@ discard block |
||
28 | 28 | public function validate($string, $config, $context) { |
29 | 29 | |
30 | 30 | $allowed = $config->get('Attr.' . $this->name); |
31 | - if (empty($allowed)) return false; |
|
31 | + if (empty($allowed)) { |
|
32 | + return false; |
|
33 | + } |
|
32 | 34 | |
33 | 35 | $string = $this->parseCDATA($string); |
34 | 36 | $parts = explode(' ', $string); |
@@ -37,11 +39,15 @@ discard block |
||
37 | 39 | $ret_lookup = array(); |
38 | 40 | foreach ($parts as $part) { |
39 | 41 | $part = strtolower(trim($part)); |
40 | - if (!isset($allowed[$part])) continue; |
|
42 | + if (!isset($allowed[$part])) { |
|
43 | + continue; |
|
44 | + } |
|
41 | 45 | $ret_lookup[$part] = true; |
42 | 46 | } |
43 | 47 | |
44 | - if (empty($ret_lookup)) return false; |
|
48 | + if (empty($ret_lookup)) { |
|
49 | + return false; |
|
50 | + } |
|
45 | 51 | $string = implode(' ', array_keys($ret_lookup)); |
46 | 52 | |
47 | 53 | return $string; |
@@ -9,32 +9,32 @@ |
||
9 | 9 | class HTMLPurifier_AttrDef_HTML_MultiLength extends HTMLPurifier_AttrDef_HTML_Length |
10 | 10 | { |
11 | 11 | |
12 | - public function validate($string, $config, $context) { |
|
12 | + public function validate($string, $config, $context) { |
|
13 | 13 | |
14 | - $string = trim($string); |
|
15 | - if ($string === '') return false; |
|
14 | + $string = trim($string); |
|
15 | + if ($string === '') return false; |
|
16 | 16 | |
17 | - $parent_result = parent::validate($string, $config, $context); |
|
18 | - if ($parent_result !== false) return $parent_result; |
|
17 | + $parent_result = parent::validate($string, $config, $context); |
|
18 | + if ($parent_result !== false) return $parent_result; |
|
19 | 19 | |
20 | - $length = strlen($string); |
|
21 | - $last_char = $string[$length - 1]; |
|
20 | + $length = strlen($string); |
|
21 | + $last_char = $string[$length - 1]; |
|
22 | 22 | |
23 | - if ($last_char !== '*') return false; |
|
23 | + if ($last_char !== '*') return false; |
|
24 | 24 | |
25 | - $int = substr($string, 0, $length - 1); |
|
25 | + $int = substr($string, 0, $length - 1); |
|
26 | 26 | |
27 | - if ($int == '') return '*'; |
|
28 | - if (!is_numeric($int)) return false; |
|
27 | + if ($int == '') return '*'; |
|
28 | + if (!is_numeric($int)) return false; |
|
29 | 29 | |
30 | - $int = (int) $int; |
|
30 | + $int = (int) $int; |
|
31 | 31 | |
32 | - if ($int < 0) return false; |
|
33 | - if ($int == 0) return '0'; |
|
34 | - if ($int == 1) return '*'; |
|
35 | - return ((string) $int) . '*'; |
|
32 | + if ($int < 0) return false; |
|
33 | + if ($int == 0) return '0'; |
|
34 | + if ($int == 1) return '*'; |
|
35 | + return ((string) $int) . '*'; |
|
36 | 36 | |
37 | - } |
|
37 | + } |
|
38 | 38 | |
39 | 39 | } |
40 | 40 |
@@ -12,26 +12,42 @@ |
||
12 | 12 | public function validate($string, $config, $context) { |
13 | 13 | |
14 | 14 | $string = trim($string); |
15 | - if ($string === '') return false; |
|
15 | + if ($string === '') { |
|
16 | + return false; |
|
17 | + } |
|
16 | 18 | |
17 | 19 | $parent_result = parent::validate($string, $config, $context); |
18 | - if ($parent_result !== false) return $parent_result; |
|
20 | + if ($parent_result !== false) { |
|
21 | + return $parent_result; |
|
22 | + } |
|
19 | 23 | |
20 | 24 | $length = strlen($string); |
21 | 25 | $last_char = $string[$length - 1]; |
22 | 26 | |
23 | - if ($last_char !== '*') return false; |
|
27 | + if ($last_char !== '*') { |
|
28 | + return false; |
|
29 | + } |
|
24 | 30 | |
25 | 31 | $int = substr($string, 0, $length - 1); |
26 | 32 | |
27 | - if ($int == '') return '*'; |
|
28 | - if (!is_numeric($int)) return false; |
|
33 | + if ($int == '') { |
|
34 | + return '*'; |
|
35 | + } |
|
36 | + if (!is_numeric($int)) { |
|
37 | + return false; |
|
38 | + } |
|
29 | 39 | |
30 | 40 | $int = (int) $int; |
31 | 41 | |
32 | - if ($int < 0) return false; |
|
33 | - if ($int == 0) return '0'; |
|
34 | - if ($int == 1) return '*'; |
|
42 | + if ($int < 0) { |
|
43 | + return false; |
|
44 | + } |
|
45 | + if ($int == 0) { |
|
46 | + return '0'; |
|
47 | + } |
|
48 | + if ($int == 1) { |
|
49 | + return '*'; |
|
50 | + } |
|
35 | 51 | return ((string) $int) . '*'; |
36 | 52 | |
37 | 53 | } |
@@ -6,46 +6,46 @@ |
||
6 | 6 | class HTMLPurifier_AttrDef_HTML_Nmtokens extends HTMLPurifier_AttrDef |
7 | 7 | { |
8 | 8 | |
9 | - public function validate($string, $config, $context) { |
|
10 | - |
|
11 | - $string = trim($string); |
|
12 | - |
|
13 | - // early abort: '' and '0' (strings that convert to false) are invalid |
|
14 | - if (!$string) return false; |
|
15 | - |
|
16 | - $tokens = $this->split($string, $config, $context); |
|
17 | - $tokens = $this->filter($tokens, $config, $context); |
|
18 | - if (empty($tokens)) return false; |
|
19 | - return implode(' ', $tokens); |
|
20 | - |
|
21 | - } |
|
22 | - |
|
23 | - /** |
|
24 | - * Splits a space separated list of tokens into its constituent parts. |
|
25 | - */ |
|
26 | - protected function split($string, $config, $context) { |
|
27 | - // OPTIMIZABLE! |
|
28 | - // do the preg_match, capture all subpatterns for reformulation |
|
29 | - |
|
30 | - // we don't support U+00A1 and up codepoints or |
|
31 | - // escaping because I don't know how to do that with regexps |
|
32 | - // and plus it would complicate optimization efforts (you never |
|
33 | - // see that anyway). |
|
34 | - $pattern = '/(?:(?<=\s)|\A)'. // look behind for space or string start |
|
35 | - '((?:--|-?[A-Za-z_])[A-Za-z_\-0-9]*)'. |
|
36 | - '(?:(?=\s)|\z)/'; // look ahead for space or string end |
|
37 | - preg_match_all($pattern, $string, $matches); |
|
38 | - return $matches[1]; |
|
39 | - } |
|
40 | - |
|
41 | - /** |
|
42 | - * Template method for removing certain tokens based on arbitrary criteria. |
|
43 | - * @note If we wanted to be really functional, we'd do an array_filter |
|
44 | - * with a callback. But... we're not. |
|
45 | - */ |
|
46 | - protected function filter($tokens, $config, $context) { |
|
47 | - return $tokens; |
|
48 | - } |
|
9 | + public function validate($string, $config, $context) { |
|
10 | + |
|
11 | + $string = trim($string); |
|
12 | + |
|
13 | + // early abort: '' and '0' (strings that convert to false) are invalid |
|
14 | + if (!$string) return false; |
|
15 | + |
|
16 | + $tokens = $this->split($string, $config, $context); |
|
17 | + $tokens = $this->filter($tokens, $config, $context); |
|
18 | + if (empty($tokens)) return false; |
|
19 | + return implode(' ', $tokens); |
|
20 | + |
|
21 | + } |
|
22 | + |
|
23 | + /** |
|
24 | + * Splits a space separated list of tokens into its constituent parts. |
|
25 | + */ |
|
26 | + protected function split($string, $config, $context) { |
|
27 | + // OPTIMIZABLE! |
|
28 | + // do the preg_match, capture all subpatterns for reformulation |
|
29 | + |
|
30 | + // we don't support U+00A1 and up codepoints or |
|
31 | + // escaping because I don't know how to do that with regexps |
|
32 | + // and plus it would complicate optimization efforts (you never |
|
33 | + // see that anyway). |
|
34 | + $pattern = '/(?:(?<=\s)|\A)'. // look behind for space or string start |
|
35 | + '((?:--|-?[A-Za-z_])[A-Za-z_\-0-9]*)'. |
|
36 | + '(?:(?=\s)|\z)/'; // look ahead for space or string end |
|
37 | + preg_match_all($pattern, $string, $matches); |
|
38 | + return $matches[1]; |
|
39 | + } |
|
40 | + |
|
41 | + /** |
|
42 | + * Template method for removing certain tokens based on arbitrary criteria. |
|
43 | + * @note If we wanted to be really functional, we'd do an array_filter |
|
44 | + * with a callback. But... we're not. |
|
45 | + */ |
|
46 | + protected function filter($tokens, $config, $context) { |
|
47 | + return $tokens; |
|
48 | + } |
|
49 | 49 | |
50 | 50 | } |
51 | 51 |
@@ -31,8 +31,8 @@ |
||
31 | 31 | // escaping because I don't know how to do that with regexps |
32 | 32 | // and plus it would complicate optimization efforts (you never |
33 | 33 | // see that anyway). |
34 | - $pattern = '/(?:(?<=\s)|\A)'. // look behind for space or string start |
|
35 | - '((?:--|-?[A-Za-z_])[A-Za-z_\-0-9]*)'. |
|
34 | + $pattern = '/(?:(?<=\s)|\A)' . // look behind for space or string start |
|
35 | + '((?:--|-?[A-Za-z_])[A-Za-z_\-0-9]*)' . |
|
36 | 36 | '(?:(?=\s)|\z)/'; // look ahead for space or string end |
37 | 37 | preg_match_all($pattern, $string, $matches); |
38 | 38 | return $matches[1]; |
@@ -11,11 +11,15 @@ |
||
11 | 11 | $string = trim($string); |
12 | 12 | |
13 | 13 | // early abort: '' and '0' (strings that convert to false) are invalid |
14 | - if (!$string) return false; |
|
14 | + if (!$string) { |
|
15 | + return false; |
|
16 | + } |
|
15 | 17 | |
16 | 18 | $tokens = $this->split($string, $config, $context); |
17 | 19 | $tokens = $this->filter($tokens, $config, $context); |
18 | - if (empty($tokens)) return false; |
|
20 | + if (empty($tokens)) { |
|
21 | + return false; |
|
22 | + } |
|
19 | 23 | return implode(' ', $tokens); |
20 | 24 | |
21 | 25 | } |