4 * Performs safe variable parsing based on types which can be used by
5 * users. This may not be able to represent all possible data inputs,
8 class HTMLPurifier_VarParser_Flexible
extends HTMLPurifier_VarParser
13 * @param bool $allow_null
14 * @return array|bool|float|int|mixed|null|string
15 * @throws HTMLPurifier_VarParserException
17 protected function parseImplementation($var, $type, $allow_null)
19 if ($allow_null && $var === null) {
23 // Note: if code "breaks" from the switch, it triggers a generic
24 // exception to be thrown. Specific errors can be specifically
33 if (is_string($var) && ctype_digit($var)) {
38 if ((is_string($var) && is_numeric($var)) ||
is_int($var)) {
43 if (is_int($var) && ($var === 0 ||
$var === 1)) {
45 } elseif (is_string($var)) {
46 if ($var == 'on' ||
$var == 'true' ||
$var == '1') {
48 } elseif ($var == 'off' ||
$var == 'false' ||
$var == '0') {
51 throw new HTMLPurifier_VarParserException("Unrecognized value '$var' for $type");
58 if (is_string($var)) {
59 // special case: technically, this is an array with
60 // a single empty string item, but having an empty
61 // array is more intuitive
65 if (strpos($var, "\n") === false && strpos($var, "\r") === false) {
66 // simplistic string to array method that only works
67 // for simple lists of tag names or alphanumeric characters
68 $var = explode(',', $var);
70 $var = preg_split('/(,|[\n\r]+)/', $var);
73 foreach ($var as $i => $j) {
76 if ($type === self
::HASH
) {
77 // key:value,key2:value2
79 foreach ($var as $keypair) {
80 $c = explode(':', $keypair, 2);
84 $nvar[trim($c[0])] = trim($c[1]);
89 if (!is_array($var)) {
92 $keys = array_keys($var);
93 if ($keys === array_keys($keys)) {
94 if ($type == self
::ALIST
) {
96 } elseif ($type == self
::LOOKUP
) {
98 foreach ($var as $key) {
106 if ($type === self
::ALIST
) {
107 trigger_error("Array list did not have consecutive integer indexes", E_USER_WARNING
);
108 return array_values($var);
110 if ($type === self
::LOOKUP
) {
111 foreach ($var as $key => $value) {
112 if ($value !== true) {
114 "Lookup array has non-true value at key '$key'; " .
115 "maybe your input array was not indexed numerically",
124 $this->errorInconsistent(__CLASS__
, $type);
126 $this->errorGeneric($var, $type);
130 // vim: et sw=4 sts=4