From 904d3827bdc4b1647b3f7f90cfa93c41ad916c42 Mon Sep 17 00:00:00 2001 From: Nathan Gass Date: Wed, 27 Jan 2021 12:22:50 +0100 Subject: add support for type specific escape functions --- it_dbi.class | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/it_dbi.class b/it_dbi.class index 6268105..65c083e 100644 --- a/it_dbi.class +++ b/it_dbi.class @@ -281,7 +281,12 @@ function _expressions($tags, $force = false) else if (substr($field, 0, 1) === '-') # Unquoted value (always added) $result[substr($field, 1)] = $value; else if ($force || (isset($value) && isset($this->_data[$field]) ? strval($value) !== strval($this->_data[$field]) : $value !== $this->_data[$field] || !array_key_exists($field, $this->_data))) - $result[$field] = isset($value) ? $this->escape_string($value) : 'NULL'; + { + if (isset($value)) + $result[$field] = $this->_escapefunc[$field] ? $this->_escapefunc[$field]($value) : $this->escape_string($value); + else + $result[$field] = 'NULL'; + } } if ($alldyns) @@ -923,6 +928,16 @@ function escape_name($str) return $this->_escape_name($str); } +/** + * Escapes a bool value for use in a DB query + * @param The bool to be quoted + * @return The quoted value + */ +static function escape_bool($bool) +{ + return $bool ? 'TRUE' : 'FALSE'; +} + /** * INTERNAL: Store information about a table's fields in $this->_fields, possibly from cache. * @return array(keyfield, autoincrement, randomid) @@ -939,7 +954,12 @@ function _get_field_info() foreach ($this->_get_field_defs() as $name => $field) { $this->_fields[$name] = $field + array('Length' => preg_match('/date|time/', $field['Type']) ? 20 : intval(it::match('\d+', $field['Type']))); - if (preg_match('/^(tiny|small|medium|)int|^float|^double/', $field['Type'])) + if ($field['_convertfunc'] || $field['_escapefunc']) + { + $this->_convertfunc[$name] = $field['_convertfunc']; + $this->_escapefunc[$name] = $field['_escapefunc']; + } + else if (preg_match('/^(tiny|small|medium|)int|^float|^double$/', $field['Type'])) $this->_convertfunc[$name] = it::match('int', $field['Type']) ? "intval" : "floatval"; } $this->_fieldnames = "," . implode(",", array_keys((array)$this->_fields)) . ","; @@ -951,12 +971,14 @@ function _get_field_info() $state = static::_state_get($dbid); # State could have been modified by query above $state['fields'][$this->_p['table']] = $this->_fields; $state['convertfunc'][$this->_p['table']] = $this->_convertfunc; + $state['escapefunc'][$this->_p['table']] = $this->_escapefunc; $state['localizedfields'][$this->_p['table']] = $this->_localizedfields; static::_state_put($dbid, $state); } else # Existing _fields, copy other info too { $this->_convertfunc = $state['convertfunc'][$this->_p['table']]; + $this->_escapefunc = $state['escapefunc'][$this->_p['table']]; $this->_localizedfields = $state['localizedfields'][$this->_p['table']]; } -- cgit v1.2.3